@avakhula/ui 0.1.13 → 0.1.15
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/.prettierrc.json +0 -0
- package/.storybook/intelliboardTheme.js +0 -0
- package/.storybook/manager.js +0 -0
- package/.storybook/scss-loader.scss +0 -0
- package/.storybook/withSource.js +0 -0
- package/README.md +0 -0
- package/dist/index.js +9028 -7513
- package/dist/index.umd.cjs +76 -73
- package/dist/style.css +1 -1
- package/index.html +0 -0
- package/package.json +4 -3
- package/src/App.vue +5 -128
- package/src/EventEmmiter.js +0 -0
- package/src/assets/scss/mixins/dropdown-list-item.scss +13 -1
- package/src/assets/scss/mixins.scss +0 -0
- package/src/assets/scss/reset.scss +0 -0
- package/src/assets/scss/style.scss +0 -0
- package/src/assets/scss/typography.scss +0 -0
- package/src/components/Alert/Alert.vue +5 -0
- package/src/components/Alert/alert.scss +6 -1
- package/src/components/Avatar/Avatar.stories.js +5 -1
- package/src/components/Avatar/Avatar.vue +25 -2
- package/src/components/Avatar/constants.js +6 -0
- package/src/components/Badge/Badge.stories.js +0 -0
- package/src/components/Breadcrumbs/Breadcrumbs.vue +17 -7
- package/src/components/Button/Button.stories.js +0 -0
- package/src/components/Button/Button.vue +19 -3
- package/src/components/Button/button.scss +5 -0
- package/src/components/Button/constants.js +0 -0
- package/src/components/ButtonGroup/ButtonGroup.vue +0 -0
- package/src/components/Chips/Chips.stories.js +30 -0
- package/src/components/Chips/Chips.vue +125 -0
- package/src/components/Dropdown/Dropdown.spec.js +0 -0
- package/src/components/Dropdown/DropdownDivider.vue +0 -0
- package/src/components/Dropdown/DropdownItem.vue +26 -4
- package/src/components/Dropdown/DropdownList.vue +0 -0
- package/src/components/Dropdown/constants.js +0 -0
- package/src/components/Form/CharactersCount.vue +10 -7
- package/src/components/Form/Checkbox/Checkbox.vue +25 -11
- package/src/components/Form/CheckboxGroup/CheckboxGroup.vue +15 -0
- package/src/components/Form/CheckboxGroup/readme.mdx +2 -0
- package/src/components/Form/DatePicker/DatePicker.scss +352 -261
- package/src/components/Form/DatePicker/DatePicker.vue +72 -17
- package/src/components/Form/DatePicker/Icons/chevron-back.js +0 -0
- package/src/components/Form/DatePicker/Icons/chevron-forward.js +0 -0
- package/src/components/Form/FormGroup/FormGroup.stories.js +0 -0
- package/src/components/Form/FormGroup/FormGroup.vue +3 -3
- package/src/components/Form/FormGroup/FormGroupSet.stories.js +0 -0
- package/src/components/Form/FormGroup/FormGroupSet.vue +0 -0
- package/src/components/Form/Input/Input.vue +116 -13
- package/src/components/Form/Input/input.scss +61 -2
- package/src/components/Form/Label/Label.vue +22 -10
- package/src/components/Form/PhoneInput/PhoneInput.vue +26 -12
- package/src/components/Form/PhoneInput/phoneInput.scss +38 -6
- package/src/components/Form/Radio/Radio.vue +16 -44
- package/src/components/Form/Radio/radio.scss +5 -2
- package/src/components/Form/TextEditor/TextEditor.vue +117 -22
- package/src/components/Form/TextEditor/icons/svg/chevron-down.svg +0 -0
- package/src/components/Form/TextEditor/icons/toolbarIcons.js +0 -0
- package/src/components/Form/TextEditor/plugins/alphabetList.js +0 -0
- package/src/components/Form/TextEditor/textEditor.scss +56 -32
- package/src/components/Form/Textarea/Textarea.spec.js +0 -0
- package/src/components/Form/Textarea/Textarea.vue +19 -6
- package/src/components/Form/Textarea/textarea.scss +30 -2
- package/src/components/Icon.vue +0 -0
- package/src/components/IconButton/IconButton.scss +11 -0
- package/src/components/IconButton/IconButton.stories.js +0 -0
- package/src/components/IconButton/IconButton.vue +6 -9
- package/src/components/IconButton/constants.js +0 -0
- package/src/components/Modal/Modal.vue +42 -9
- package/src/components/Pagination/LimitSelector.vue +5 -0
- package/src/components/Pagination/Pagination.stories.js +0 -0
- package/src/components/Pagination/Pagination.vue +9 -2
- package/src/components/Panel/Panel.vue +87 -6
- package/src/components/Popover/Popover.stories.js +0 -0
- package/src/components/Popover/Popover.vue +47 -19
- package/src/components/Popover/popover.scss +27 -7
- package/src/components/ProgressBar/ProgressBar.stories.js +0 -0
- package/src/components/Sorting/Sorting.vue +24 -26
- package/src/components/Sorting/constants.js +0 -0
- package/src/components/SplitButton/SplitButton.vue +51 -8
- package/src/components/SplitButton/SplitButtonItem.vue +13 -1
- package/src/components/SplitButton/constants.js +0 -0
- package/src/components/Table/Cells/Cell.vue +0 -0
- package/src/components/Table/Cells/CheckboxCell.vue +0 -0
- package/src/components/Table/Row.vue +0 -0
- package/src/components/Table/Table.stories.js +0 -0
- package/src/components/Table/Table.vue +0 -0
- package/src/components/Tabs/Tab.vue +4 -0
- package/src/components/Tabs/Tabs.vue +5 -0
- package/src/components/Tabs/tabs.scss +8 -2
- package/src/components/TagPill/TagPill.vue +6 -0
- package/src/components/TagPill/constants.js +0 -0
- package/src/components/ToggleTip/ToggleTip.stories.js +0 -0
- package/src/components/ToggleTip/ToggleTip.vue +0 -0
- package/src/components/Tooltip/Tooltip.stories.js +0 -0
- package/src/components/Tooltip/Tooltip.vue +1 -1
- package/src/components/TreeSelect/Option.vue +48 -16
- package/src/components/TreeSelect/Select.vue +101 -39
- package/src/components/TreeSelect/mixins/InfinityLoaderMixin.js +40 -0
- package/src/components/TreeSelect/scss/option.scss +31 -0
- package/src/components/TreeSelect/scss/select.scss +48 -2
- package/src/constants/events.js +0 -0
- package/src/constants/keyCodes.js +1 -0
- package/src/directives/outside/outside.js +0 -0
- package/src/directives/tooltip/TooltipController.js +2 -0
- package/src/directives/tooltip/textOverflowTooltip.js +3 -1
- package/src/directives/tooltip/tooltip.js +15 -0
- package/src/helpers/generateUID.js +0 -0
- package/src/helpers/getHrefFromID.js +0 -0
- package/src/helpers/multiLineOverflows.js +0 -0
- package/src/helpers/stripHtml.js +4 -0
- package/src/index.js +2 -0
- package/src/stories/link.stories.js +0 -0
- package/static/Logo.svg +0 -0
- package/vite.config.js +0 -0
package/dist/index.umd.cjs
CHANGED
|
@@ -1,29 +1,32 @@
|
|
|
1
|
-
(function(pe,i){typeof exports=="object"&&typeof module<"u"?i(exports,require("vue")):typeof define=="function"&&define.amd?define(["exports","vue"],i):(pe=typeof globalThis<"u"?globalThis:pe||self,i(pe.MyLib={},pe.Vue))})(this,function(pe,i){"use strict";const Zh="",_e=(t,n)=>{const e=t.__vccOpts||t;for(const[o,a]of n)e[o]=a;return e},Ko={name:"IbIcon",props:{name:{type:String,required:!0},classes:{type:String,default:""},styles:{type:[String,Object],default:""}},mounted(){const t=setInterval(()=>{var n,e;(e=(n=this.$refs.icon)==null?void 0:n.shadowRoot)!=null&&e.querySelector("title")&&(this.$refs.icon.shadowRoot.querySelector("title").innerHTML="",clearInterval(t))},1e3)}},Go=["name"];function Yo(t,n,e,o,a,r){return i.openBlock(),i.createElementBlock("ion-icon",{style:i.normalizeStyle(e.styles),name:e.name,class:i.normalizeClass(e.classes+" ib-icon icon-"+e.name),ref:"icon"},null,14,Go)}const Le=_e(Ko,[["render",Yo]]);function ht(){return"_"+Math.random().toString(36).substr(2,9)}const vi={methods:{enter(t){const n=getComputedStyle(t).width;t.style.width=n,t.style.position="absolute",t.style.visibility="hidden",t.style.height="auto";const e=getComputedStyle(t).height;t.style.width=null,t.style.position=null,t.style.visibility=null,t.style.height=0,getComputedStyle(t).height,requestAnimationFrame(()=>{t.style.height=e})},afterEnter(t){t.style.height="auto"},leave(t){const n=getComputedStyle(t).height;t.style.height=n,getComputedStyle(t).height,requestAnimationFrame(()=>{t.style.height=0})}}},Jh="",Wo={name:"IbAccordion",mixins:[vi],props:{isOpen:{type:Boolean,default:!1}},watch:{isOpen(t){this.isActive=t}},data(){return{isActive:this.isOpen,uuid:ht()}},methods:{onClick(){this.isActive=!this.isActive,this.isActive?this.$emit("open",this.isActive):this.$emit("close",this.isActive)}},components:{IbIcon:Le}},Zo=["id","aria-controls","aria-expanded"],Jo=["id","aria-labelledby"],Xo={class:"accordion-content-wrapper"};function Qo(t,n,e,o,a,r){const s=i.resolveComponent("ib-icon");return i.openBlock(),i.createElementBlock("div",{class:i.normalizeClass(["ib-accordion",{active:a.isActive}])},[i.createElementVNode("button",{class:"accordion-title",id:"accordion"+a.uuid,"aria-controls":"accordion-section-"+a.uuid,"aria-expanded":a.isActive,type:"button",onClick:n[0]||(n[0]=i.withModifiers((...d)=>r.onClick&&r.onClick(...d),["prevent"]))},[i.renderSlot(t.$slots,"title",{},void 0,!0),i.createVNode(s,{class:"chevron-icon",name:"chevron-down-outline"})],8,Zo),i.createVNode(i.Transition,{name:"expand",onEnter:t.enter,onAfterEnter:t.afterEnter,onLeave:t.leave},{default:i.withCtx(()=>[i.withDirectives(i.createElementVNode("div",{role:"region",class:"accordion-content",id:"accordion-section-"+a.uuid,"aria-labelledby":"accordion"+a.uuid},[i.createElementVNode("div",Xo,[i.renderSlot(t.$slots,"default",{},void 0,!0)])],8,Jo),[[i.vShow,a.isActive]])]),_:3},8,["onEnter","onAfterEnter","onLeave"])],2)}const ea=_e(Wo,[["render",Qo],["__scopeId","data-v-8ece19c1"]]),Rt={primary:"primary",secondary:"secondary",tertiary:"tertiary",ghost:"ghost",danger:"danger",ghostDanger:"ghostDanger"};function Dn(t,n=[]){for(let e in t)e.startsWith("on")&&(n.length===0||n.includes(e))&&delete t[e];return t}const Xh="",ta={name:"IbButton",props:{kind:{type:String,default:Rt.primary},disabled:{type:Boolean,required:!1,default:!1},preventDefault:{type:Boolean,default:null},confirmMessage:{type:String,default:""},block:{type:Boolean,default:!1},href:{type:String,default:""},linkMethod:{type:String,default:"get"},disableAfterClick:{type:Boolean,default:!1},postOptions:{type:Object,default:()=>({})}},data(){return{isDisabled:this.disabled}},watch:{disabled(t){this.isDisabled=t}},methods:{onMouseenter(t){this.$emit("mouseenter",t)},onMouseleave(t){this.$emit("mouseleave",t)},onClick(t){if((this.preventDefault||this.isDisabled)&&t.preventDefault(),this.confirmMessage.length>0&&!confirm(this.confirmMessage)){t.preventDefault();return}!this.isDisabled&&this.href.length&&!this.preventDefault&&this.linkMethod.toUpperCase()!=="GET"&&(t.preventDefault(),this.$refs.form.submit()),this.isDisabled||this.$emit("click",t),this.disableAfterClick&&!this.disabled&&(this.isDisabled=!0)}},computed:{classes(){const t=["ib-button"];return t.push(`ib-btn-${this.kind}`),this.isDisabled&&t.push("ib-btn-disabled"),this.block&&t.push("ib-btn-block"),this.href.length&&t.push("ib-btn-link"),this.hasIcon&&t.push("ib-btn-has-icon"),t},attrs(){const t=Dn({...this.$attrs},["onClick"]);return t.class=[...this.classes,t.class],t.disabled=this.isDisabled,this.href.length&&(t.href=this.href),t},hasIcon(){return!!this.$slots.icon},formMethod(){return this.linkMethod==="GET"?"GET":"POST"},token(){var t;return(t=document.head.querySelector('meta[name="csrf-token"]'))==null?void 0:t.content}},inheritAttrs:!1},na=["method","action"],ra=["value"],ia=["value"],oa=["name","value"];function aa(t,n,e,o,a,r){return i.openBlock(),i.createBlock(i.resolveDynamicComponent(e.href.length?"a":"button"),i.mergeProps({onClick:n[0]||(n[0]=s=>r.onClick(s)),onMouseenter:r.onMouseenter,onMouseleave:r.onMouseleave},r.attrs),{default:i.withCtx(()=>[i.renderSlot(t.$slots,"icon"),i.renderSlot(t.$slots,"default"),e.href.length&&e.linkMethod.toUpperCase()!=="GET"?i.withDirectives((i.openBlock(),i.createElementBlock("form",{key:0,ref:"form",method:r.formMethod,action:e.href},[i.createElementVNode("input",{type:"hidden",name:"_method",value:e.linkMethod},null,8,ra),i.createElementVNode("input",{type:"hidden",name:"_token",value:r.token},null,8,ia),(i.openBlock(!0),i.createElementBlock(i.Fragment,null,i.renderList(Object.keys(e.postOptions),(s,d)=>(i.openBlock(),i.createElementBlock("input",{key:d,type:"hidden",name:s,value:e.postOptions[s]},null,8,oa))),128))],8,na)),[[i.vShow,!1]]):i.createCommentVNode("",!0)]),_:3},16,["onMouseenter","onMouseleave"])}const bi=_e(ta,[["render",aa]]),hr={topLeft:"top-left",topCenter:"top-center",topRight:"top-right",rightTop:"right-top",rightCenter:"right-center",rightBottom:"right-bottom",bottomLeft:"bottom-left",bottomCenter:"bottom-center",bottomRight:"bottom-right",leftTop:"left-top",leftCenter:"left-center",leftBottom:"left-bottom"},Qh="",la={name:"IbPopover",props:{position:{type:String,default:hr.topCenter},alwaysVisible:{type:Boolean,default:!1}},data(){return{parentNode:null,isVisible:!!this.alwaysVisible}},mounted(){this.$nextTick(()=>{this.parentNode=this.$el.parentNode,this.parentNode&&(getComputedStyle(this.parentNode).position!=="absolute"&&(this.parentNode.style.position="relative"),this.alwaysVisible||(this.parentNode.addEventListener("focus",this.showPopover,!0),this.parentNode.addEventListener("blur",this.hidePopover,!0),this.parentNode.addEventListener("mouseover",this.showPopover,!0),this.parentNode.addEventListener("mouseleave",this.hidePopover,!0)))})},methods:{showPopover(){this.isVisible=!0},hidePopover(){this.isVisible=!1}},computed:{classes(){const t=["ib-popover"];return t.push(`ib-${this.position}`),this.isVisible&&t.push("active"),t}},beforeUnmount(){!this.alwaysVisible&&this.parentNode&&(this.parentNode.removeEventListener("focus",this.showPopover,!0),this.parentNode.removeEventListener("blur",this.hidePopover,!0),this.parentNode.removeEventListener("mouseover",this.showPopover,!0),this.parentNode.removeEventListener("mouseleave",this.hidePopover,!0))}};function sa(t,n,e,o,a,r){return i.openBlock(),i.createBlock(i.Transition,null,{default:i.withCtx(()=>[i.withDirectives(i.createElementVNode("div",{class:i.normalizeClass(r.classes)},[i.renderSlot(t.$slots,"default",{},void 0,!0)],2),[[i.vShow,a.isVisible]])]),_:3})}const _i=_e(la,[["render",sa],["__scopeId","data-v-4e7c6f62"]]),e1="",da={name:"IbTooltip",props:{position:{type:String},title:{type:String},text:{type:String},alwaysVisible:{type:Boolean,default:!1}},computed:{classList(){const t=["ib-tooltip"];return this.title&&t.push("ib-tooltip-large"),t}},components:{IbPopover:_i}},ca={key:0};function ua(t,n,e,o,a,r){const s=i.resolveComponent("ib-popover");return i.openBlock(),i.createBlock(s,{position:e.position,"always-visible":e.alwaysVisible,class:i.normalizeClass(r.classList)},{default:i.withCtx(()=>[e.title?(i.openBlock(),i.createElementBlock("b",ca,i.toDisplayString(e.title),1)):i.createCommentVNode("",!0),i.createElementVNode("p",null,i.toDisplayString(e.text),1)]),_:1},8,["position","always-visible","class"])}const jt=_e(da,[["render",ua],["__scopeId","data-v-796ac7bb"]]),$i={[Rt.primary]:Rt.primary,[Rt.tertiary]:Rt.tertiary,[Rt.ghost]:Rt.ghost,white:"white"},wi={xs:"xs",s:"s",m:"m"},t1="",fa={name:"IbIconButton",props:{kind:{type:String,default:$i.primary,validator:t=>Object.keys($i).includes(t)},size:{type:String,default:wi.s,validator:t=>Object.keys(wi).includes(t)},rounded:{type:Boolean,required:!1,default:!1},disabled:{type:Boolean,required:!1,default:!1},href:{type:String,default:""},helpText:{type:String,default:""},disabledFocus:{type:Boolean,default:!1},preventDefault:{type:Boolean,default:!1}},data(){return{tooltipVisible:!1}},methods:{onClick(t){this.$emit("click",t)}},computed:{classes(){const t=["ib-icon-button"];return t.push(`ib-icon-btn-${this.kind}`),t.push(`ib-icon-btn-${this.size}`),this.rounded&&t.push("ib-icon-btn-rounded"),this.disabled&&t.push("ib-icon-btn-disabled"),t},attrs(){const t=Dn({...this.$attrs},["onClick"]);return t.class=[...this.classes,t.class],this.disabledFocus&&(t.tabindex="-1"),t}},components:{IbButton:bi,IbTooltip:jt},inheritAttrs:!1};function ha(t,n,e,o,a,r){const s=i.resolveComponent("ib-tooltip"),d=i.resolveComponent("ib-button");return i.openBlock(),i.createBlock(d,i.mergeProps({onClick:r.onClick},r.attrs,{href:e.href,kind:e.kind,disabled:e.disabled,"prevent-default":e.preventDefault}),{default:i.withCtx(()=>[i.renderSlot(t.$slots,"default"),e.helpText.length?(i.openBlock(),i.createBlock(s,{key:0,text:e.helpText},null,8,["text"])):i.createCommentVNode("",!0)]),_:3},16,["onClick","href","kind","disabled","prevent-default"])}const ut=_e(fa,[["render",ha]]),In={alert:"alert",error:"error",warning:"warning",info:"info",success:"success"},n1="",pa={name:"IbAlert",props:{type:{type:String,default:In.alert,validator:t=>Object.keys(In).includes(t)},showIcon:{type:Boolean,default:!1},showCloseButton:{type:Boolean,default:!1},title:{type:String,default:""}},mounted(){this.checkHeight(),this.$refs.content&&(this.contentObserver=new ResizeObserver(()=>{this.checkHeight()}),this.contentObserver.observe(this.$refs.content)),window.addEventListener("resize",()=>this.checkHeight())},data(){return{contentObserver:null}},methods:{close(){this.$emit("close")},checkHeight(){var e;if(!this.$refs.content)return;const t=getComputedStyle(this.$refs.content),n=(e=this.$refs.content)==null?void 0:e.parentElement.offsetWidth;!n||!t||(parseInt(t.width)<=n&&this.$refs.content.classList.remove("large"),parseInt(t.height)>37&&this.showIcon&&(this.title.length?this.$refs.content.classList.add("large"):this.$refs.content.classList.add("medium")))}},computed:{classes(){const t=["ib-alert"];return t.push(`ib-alert-${this.type}`),this.title.length&&t.push("has-title"),this.showIcon&&t.push("has-icon"),this.showCloseButton&&t.push("has-close-button"),this.$slots.link&&t.push("has-link"),t},iconName(){return this.type===In.info?"information-circle-outline":this.type===In.success?"checkmark-circle-outline":"alert-circle-outline"}},beforeUnmount(){var t;(t=this.contentObserver)==null||t.disconnect(),window.removeEventListener("resize",()=>this.checkHeight())},components:{IbIcon:Le,IbIconButton:ut}},ma={ref:"content",class:"content"},ga={class:"content-head"},ya={key:1,class:"ib-alert-title"},va={class:"text-content"},ba={class:"link"};function _a(t,n,e,o,a,r){var u;const s=i.resolveComponent("ib-icon"),d=i.resolveComponent("ib-icon-button");return i.openBlock(),i.createElementBlock("div",{role:"alert",class:i.normalizeClass(r.classes)},[i.createElementVNode("div",ma,[i.createElementVNode("span",ga,[e.showIcon?(i.openBlock(),i.createBlock(s,{key:0,class:"ib-alert-icon",name:r.iconName},null,8,["name"])):i.createCommentVNode("",!0),(u=e.title)!=null&&u.length?(i.openBlock(),i.createElementBlock("b",ya,i.toDisplayString(e.title),1)):i.createCommentVNode("",!0)]),i.createElementVNode("span",va,[i.renderSlot(t.$slots,"default",{},void 0,!0)]),i.createElementVNode("div",ba,[i.renderSlot(t.$slots,"link",{},void 0,!0)])],512),e.showCloseButton?(i.openBlock(),i.createBlock(d,{key:0,class:"close-button",kind:"ghost","prevent-default":!0,onClick:r.close},{default:i.withCtx(()=>[i.createVNode(s,{class:"close-button-icon",name:"close-outline"})]),_:1},8,["onClick"])):i.createCommentVNode("",!0)],2)}const Pt=_e(pa,[["render",_a],["__scopeId","data-v-dec06c47"]]),$a={M:"m",L:"l"},r1="",wa={name:"IbAvatar",props:{firstName:{type:String,default:""},lastName:{type:String,default:""},src:{type:String,default:""},userAvatar:{type:Boolean,default:!1},size:{type:String,default:$a.M}},computed:{classList(){return["avatar",`avatar-size-${this.size}`]},validateName(){var t,n;return((t=this.firstName)==null?void 0:t.trim().length)!==0&&((n=this.lastName)==null?void 0:n.trim().length)!==0},initials(){return this.firstName[0].toUpperCase()+this.lastName[0].toUpperCase()}},components:{IbIcon:Le}},ka=["src","alt"];function Ca(t,n,e,o,a,r){const s=i.resolveComponent("ib-icon");return e.src&&!e.userAvatar?(i.openBlock(),i.createElementBlock("img",{key:0,class:i.normalizeClass(r.classList),src:e.src,alt:e.firstName+""+e.lastName},null,10,ka)):e.src&&e.userAvatar?(i.openBlock(),i.createElementBlock("div",{key:1,class:i.normalizeClass(["user-avatar",r.classList]),style:i.normalizeStyle({backgroundImage:"url("+e.src+")"})},null,6)):r.validateName?(i.openBlock(),i.createElementBlock("div",{key:3,class:i.normalizeClass([r.classList,"default-avatar"])},i.toDisplayString(r.initials),3)):(i.openBlock(),i.createElementBlock("div",{key:2,class:i.normalizeClass(["empty-avatar",r.classList])},[i.createVNode(s,{name:"camera-outline"})],2))}const Oa=_e(wa,[["render",Ca],["__scopeId","data-v-8ba12d0f"]]),i1="",Ea={name:"IbBadge",props:{content:{type:[String,Number],default:""}},computed:{classes(){const t=["ib-badge"];return this.content.toString().length&&t.push("ib-badge-large"),t},normalizeContent(){return this.content>99?"99+":this.content}}};function Sa(t,n,e,o,a,r){return i.openBlock(),i.createElementBlock("span",{class:i.normalizeClass(r.classes)},i.toDisplayString(r.normalizeContent),3)}const Ta=_e(Ea,[["render",Sa],["__scopeId","data-v-328df75a"]]),o1="",Na={name:"IbButtonGroup"},xa={class:"ib-button-group"};function Aa(t,n,e,o,a,r){return i.openBlock(),i.createElementBlock("div",xa,[i.renderSlot(t.$slots,"default")])}const Da=_e(Na,[["render",Aa]]),Zt={success:"success",neutral:"neutral",info:"info",error:"error",new:"new",favorite:"favorite",pending:"pending"},a1="",Ia={props:{status:{type:String,default:Zt.neutral,validator:t=>Object.keys(Zt).includes(t)},showIcon:{type:Boolean,default:!1}},computed:{classes(){const t=["ib-tag-pill"];return t.push(`ib-tag-pill-${this.status}`),t},iconName(){switch(this.status){case Zt.success:return"checkmark-outline";case Zt.neutral:return"time-outline";case Zt.info:return"information-circle-outline";case Zt.error:return"close-outline";default:return""}}},components:{IbIcon:Le}};function Ma(t,n,e,o,a,r){const s=i.resolveComponent("ib-icon");return i.openBlock(),i.createElementBlock("div",{class:i.normalizeClass(r.classes)},[e.showIcon&&r.iconName.length?(i.openBlock(),i.createBlock(s,{key:0,name:r.iconName},null,8,["name"])):i.createCommentVNode("",!0),i.createElementVNode("span",null,[i.renderSlot(t.$slots,"default",{},void 0,!0)])],2)}const Pa=_e(Ia,[["render",Ma],["__scopeId","data-v-3604890c"]]),Ba={topLeft:"top-left",topCenter:"top-center",topRight:"top-right",rightTop:"right-top",rightCenter:"right-center",rightBottom:"right-bottom",bottomLeft:"bottom-left",bottomCenter:"bottom-center",bottomRight:"bottom-right",leftTop:"left-top",leftCenter:"left-center",leftBottom:"left-bottom"},l1="",s1="",La={name:"IbTooltip",props:{position:{type:String,default:Ba.topCenter},title:{type:String},isOpen:{type:Boolean,default:!1}},mounted(){this.$nextTick(()=>{this.parentNode=this.$el.parentNode,getComputedStyle(this.parentNode).position!=="absolute"&&(this.parentNode.style.position="relative")})},data(){return{isOpenedState:this.isOpen}},methods:{open(){this.isOpenedState=!0,this.$emit("open")},close(){this.isOpenedState=!1,this.$emit("close")}},computed:{classes(){const t=["ib-toggle-tip"];return t.push(`ib-${this.position}`),t}},watch:{isOpen(t){t?this.open():this.close()}},components:{IbIconButton:ut,IbIcon:Le}},Ra={class:"ib-toggle-tip-head"},ja={class:"ib-toggle-tip-content"},Va={class:"ib-toggle-tip-button-set"};function qa(t,n,e,o,a,r){const s=i.resolveComponent("ib-icon"),d=i.resolveComponent("ib-icon-button");return i.openBlock(),i.createBlock(i.Transition,null,{default:i.withCtx(()=>[i.withDirectives(i.createElementVNode("div",{class:i.normalizeClass(r.classes)},[i.createElementVNode("div",Ra,[i.createElementVNode("p",null,i.toDisplayString(e.title),1),i.createVNode(d,{class:"close-button",kind:"ghost",onClick:i.withModifiers(r.close,["prevent"])},{default:i.withCtx(()=>[i.createVNode(s,{name:"close-outline"})]),_:1},8,["onClick"])]),i.createElementVNode("div",ja,[i.renderSlot(t.$slots,"default",{},void 0,!0)]),i.createElementVNode("div",Va,[i.renderSlot(t.$slots,"buttons",{},void 0,!0)])],2),[[i.vShow,a.isOpenedState]])]),_:3})}const ki=_e(La,[["render",qa],["__scopeId","data-v-9e7c679e"]]),pr=27,Ci=32,Fa=13,Oi=9,Ha=38,za=37,Ua=39,Ei=40,Ka="click",{performance:Mn}=window,Ga=typeof(Mn==null?void 0:Mn.now)=="function"&&Date.now()>document.createEvent("Event").timeStamp?()=>Mn.now():()=>Date.now(),an=new Map;let ln=!1;const Si=t=>{an.forEach(({bindTimeStamp:n,callback:e},o)=>{if(!(o.contains(t.target)||t.timeStamp<=n))try{e(t)}catch(a){console.error(a)}})},Ya=()=>{ln||(document.addEventListener("click",Si,{capture:!0}),ln=!0)},Wa=()=>{ln&&(document.removeEventListener("click",Si),ln=!1)},Pn={created:(t,{value:n,arg:e="click"})=>{if(typeof n!="function")throw new Error(`[OutsideDirective] Value must be a function; got ${typeof n}!`);if(e!=="click")throw new Error(`[OutsideDirective] Cannot bind ${e} events; only click events are currently supported!`);an.has(t)||(ln||Ya(),an.set(t,{bindTimeStamp:Ga(),callback:n}))},beforeUnmount:t=>{an.delete(t),an.size===0&&Wa()}},sn={left:"left",right:"right",center:"center"},Bn={top:"top",bottom:"bottom"},u1="",f1="",Za={name:"IbDropdown",directives:{Outside:Pn},props:{vertical:{type:String,default:Bn.bottom},horizontal:{type:String,default:sn.left},triggerClass:{default:""},isOpened:{type:Boolean,default:!1},showCloseIcon:{type:Boolean,default:!1},closeOnClick:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1},triggerType:{type:String,default:Ka},destroyOnHide:{type:Boolean,default:!1}},watch:{isOpened(t){t?this.open():this.close()}},mounted(){this.$globalEvents.$on("dropdown:open",t=>{this.$el.contains(t.$el)||this.close()}),document.addEventListener("focus",this.closeOnEventOutside,!0),document.addEventListener("keyup",this.onKeyupDocument)},data(){return{isOpenedState:this.isOpened,timeout:null}},methods:{onKeydown(t){(t.keyCode===Fa||t.keyCode===Ci)&&(t.preventDefault(),this.toggle()),t.keyCode===Ei&&(t.preventDefault(),this.open())},onKeyupDocument(t){t.keyCode===pr&&(t.preventDefault(),this.close())},toggle(){this.isOpenedState?this.close():this.open()},open(){this.disabled||(this.isOpenedState=!0,this.$emit("open"),this.$globalEvents.$emit("dropdown:open",this))},close(){if(this.isOpenedState){if(this.disabled)return;this.isOpenedState=!1,this.$emit("close")}},debouncedOpen(){this.timeout=setTimeout(()=>{this.open()},300)},debouncedClose(){this.close(),clearTimeout(this.timeout)},closeOnClickIfRequired(){this.closeOnClick&&this.close()},closeOnEventOutside(t){this.$el.contains(t.target)||this.close()}},computed:{classes(){const t=this.vertical===Bn.bottom?" dropdown-bottom":" dropdown-top",n=this.horizontal===sn.left?" dropdown-left":this.horizontal===sn.right?" dropdown-right":" dropdown-center",e=this.isOpenedState?" active":"";return t+n+e},triggerClasses(){let t=this.isOpenedState?"active":"";return this.disabled&&(t+=" dropdown-trigger-disabled"),this.triggerClass+t},hasTrigger(){return!!this.$slots.trigger}},beforeUnmount(){document.removeEventListener("focus",this.closeOnEventOutside,!0),document.removeEventListener("keypress",this.onKeydownDocument)}},Ja={class:"ib-dropdown"},Xa={class:"footer-slot"};function Qa(t,n,e,o,a,r){const s=i.resolveDirective("outside");return i.withDirectives((i.openBlock(),i.createElementBlock("div",Ja,[r.hasTrigger&&e.triggerType==="click"?(i.openBlock(),i.createElementBlock("span",{key:0,class:i.normalizeClass(["dropdown-trigger",r.triggerClasses]),ref:"dropdown",onKeydown:n[0]||(n[0]=(...d)=>r.onKeydown&&r.onKeydown(...d)),onClick:n[1]||(n[1]=i.withModifiers((...d)=>r.toggle&&r.toggle(...d),["prevent","stop"]))},[i.renderSlot(t.$slots,"trigger",{isOpened:a.isOpenedState},void 0,!0)],34)):i.createCommentVNode("",!0),r.hasTrigger&&e.triggerType==="hover"?(i.openBlock(),i.createElementBlock("span",{key:1,class:i.normalizeClass(["dropdown-trigger",r.triggerClasses]),onMouseenter:n[2]||(n[2]=(...d)=>r.debouncedOpen&&r.debouncedOpen(...d)),onMouseleave:n[3]||(n[3]=(...d)=>r.debouncedClose&&r.debouncedClose(...d))},[i.renderSlot(t.$slots,"trigger",{isOpened:a.isOpenedState},void 0,!0)],34)):i.createCommentVNode("",!0),!e.destroyOnHide||a.isOpenedState?i.withDirectives((i.openBlock(),i.createElementBlock("div",{key:2,ref:"body",class:i.normalizeClass("ib-dropdown-menu "+r.classes)},[i.createElementVNode("div",{class:"dropdown-body",onClick:n[5]||(n[5]=(...d)=>r.closeOnClickIfRequired&&r.closeOnClickIfRequired(...d))},[i.renderSlot(t.$slots,"body",{isOpenedState:a.isOpenedState},void 0,!0),e.showCloseIcon?(i.openBlock(),i.createElementBlock("span",{key:0,class:"close",onClick:n[4]||(n[4]=(...d)=>r.close&&r.close(...d))},[i.renderSlot(t.$slots,"close",{},void 0,!0)])):i.createCommentVNode("",!0)]),i.createElementVNode("div",Xa,[i.renderSlot(t.$slots,"footer",{},void 0,!0)])],2)),[[i.vShow,a.isOpenedState]]):i.createCommentVNode("",!0),i.createElementVNode("div",{class:"before",onClick:n[6]||(n[6]=(...d)=>r.close&&r.close(...d))},[i.renderSlot(t.$slots,"before",{},void 0,!0)])])),[[s,r.close]])}const Ln=_e(Za,[["render",Qa],["__scopeId","data-v-dfb4a39a"]]),h1="",el={name:"IbList",data(){return{rootClass:"ib-list"}},methods:{onKeydown(t){var n,e,o,a,r;if(t.keyCode===Ei){if(this.$el.parentNode.closest(`.${this.rootClass}`))return;t.preventDefault();const s=document.activeElement,d=s.querySelector(`.${this.rootClass}`);let u=s.nextElementSibling?s.nextElementSibling:(n=s.parentNode.nextElementSibling)==null?void 0:n.childNodes[0];if(d&&window.getComputedStyle(d).display!=="none"){d.querySelector('a, button, input, [tabindex="0"]').focus();return}if(u){u.focus();return}const p=(o=(e=s.closest(`.${this.rootClass}`).parentNode)==null?void 0:e.parentNode)==null?void 0:o.nextElementSibling.childNodes[0];p&&p.nodeName!=="#text"&&p.focus()}if(t.keyCode===Ha){if(this.$el.parentNode.closest(`.${this.rootClass}`))return;t.preventDefault();const s=document.activeElement,d=s.previousElementSibling?s.previousElementSibling:(a=s.parentNode.previousElementSibling)==null?void 0:a.childNodes[0];if(!d){s.closest(`.${this.rootClass}`).parentNode.focus();return}if(d&&d.nodeName!=="#text"){const u=d==null?void 0:d.querySelector(`.${this.rootClass}`);if(u&&window.getComputedStyle(u).display!=="none"){const p=Array.from(u.childNodes).filter(h=>h.nodeName!=="#text");(r=p[p.length-1])==null||r.childNodes[0].focus();return}d.focus()}}}}};function tl(t,n,e,o,a,r){return i.openBlock(),i.createElementBlock("ul",{class:i.normalizeClass(a.rootClass),onKeydown:n[0]||(n[0]=(...s)=>r.onKeydown&&r.onKeydown(...s))},[i.renderSlot(t.$slots,"default")],34)}const mr=_e(el,[["render",tl]]),p1="",nl={props:{vertical:{type:String,default:Bn.bottom},horizontal:{type:String,default:sn.left},isOpened:{type:Boolean,default:!1},closeOnClick:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1}},methods:{proxyEvents(t){this.$emit(t.event,...t.args)}},data(){return{list:this.$refs.list}},computed:{hasTrigger(){return!!this.$slots.trigger}},components:{IbDropdown:Ln,IbList:mr}},rl={class:"dropdown-list-wrapper"};function il(t,n,e,o,a,r){const s=i.resolveComponent("ib-list"),d=i.resolveComponent("ib-dropdown");return i.openBlock(),i.createElementBlock("div",rl,[i.createVNode(d,i.mergeProps({horizontal:e.horizontal,vertical:e.vertical,isOpened:e.isOpened,closeOnClick:e.closeOnClick,disabled:e.disabled},t.$attrs,{ref:"dropdown",onAll:r.proxyEvents}),i.createSlots({body:i.withCtx(({isOpened:u})=>[i.createVNode(s,{ref:"list",class:"list"},{default:i.withCtx(()=>[i.renderSlot(t.$slots,"body",{isOpenedState:u})]),_:2},1536)]),_:2},[r.hasTrigger?{name:"trigger",fn:i.withCtx(({isOpened:u})=>[i.renderSlot(t.$slots,"trigger",{isOpened:u})]),key:"0"}:void 0]),1040,["horizontal","vertical","isOpened","closeOnClick","disabled","onAll"])])}const Rn=_e(nl,[["render",il]]),m1="",ol={props:{checked:{type:Boolean,default:!1},href:{type:String}},computed:{attrs(){const t={class:"ib-dropdown-item"};return this.href&&(t.href=this.href),t}}},al={class:"dropdown-item-wrapper"};function ll(t,n,e,o,a,r){return i.openBlock(),i.createElementBlock("li",al,[(i.openBlock(),i.createBlock(i.resolveDynamicComponent(e.href?"a":"div"),i.mergeProps({class:e.checked?"active":""},r.attrs,{tabindex:"0"}),{default:i.withCtx(()=>[i.renderSlot(t.$slots,"default",{ref:"slot"})]),_:3},16,["class"]))])}const gr=_e(ol,[["render",ll]]),sl={common:"common",danger:"danger"},g1="",dl={name:"IbSplitButton",props:{id:{type:String,default:()=>ht()},kind:{type:String,default:sl.common},disabled:{type:Boolean,default:!1},saveSelected:{type:Boolean,default:!1}},mounted(){var t;if(this.childList=Array.from(this.$refs.list.children),(t=this.childList)==null||t.forEach((n,e)=>{n.addEventListener("click",()=>{this.childList[this.activeElemIdx].classList.remove("active"),this.saveSelected&&(this.activeElemIdx=e,localStorage.setItem(`split-button-${this.id}`,e))})}),this.saveSelected){const n=localStorage.getItem(`split-button-${this.id}`);n&&(this.activeElemIdx=n)}this.setActiveItem()},data(){return{activeElemIdx:0,content:"",mainButtonAttrs:{},isLink:!1,childList:[]}},components:{IbIcon:Le,IbDropdownList:Rn},methods:{setActiveItem(){this.mainButtonAttrs=this.$slots.default()[this.activeElemIdx].props,this.mainButtonAttrs&&"href"in this.mainButtonAttrs?this.isLink=!0:this.isLink=!1,this.childList[this.activeElemIdx].classList.add("active"),this.content=this.childList[this.activeElemIdx].textContent},onClickLink(t){if(this.disabled){t.preventDefault();return}}},computed:{classes(){const t=["split-button"];return t.push(`split-button-${this.kind}`),t}},watch:{activeElemIdx(){this.setActiveItem()}}},cl=["disabled"],ul=["disabled"],fl=["disabled"],hl={ref:"list"};function pl(t,n,e,o,a,r){const s=i.resolveComponent("ib-icon"),d=i.resolveComponent("ib-dropdown-list");return i.openBlock(),i.createElementBlock("div",{class:i.normalizeClass(r.classes)},[a.isLink?(i.openBlock(),i.createElementBlock("a",i.mergeProps({key:1,class:["split-button-main",{disabled:e.disabled}],disabled:e.disabled},a.mainButtonAttrs,{onClick:n[0]||(n[0]=(...u)=>r.onClickLink&&r.onClickLink(...u))}),i.toDisplayString(a.content),17,ul)):(i.openBlock(),i.createElementBlock("button",i.mergeProps({key:0,disabled:e.disabled,class:"split-button-main"},a.mainButtonAttrs),i.toDisplayString(a.content),17,cl)),i.createVNode(d,{disabled:e.disabled,closeOnClick:!0},{trigger:i.withCtx(()=>[i.createElementVNode("button",{disabled:e.disabled,class:"split-button-menu-trigger"},[i.createVNode(s,{name:"chevron-down-outline"})],8,fl)]),body:i.withCtx(()=>[i.createElementVNode("div",hl,[i.renderSlot(t.$slots,"default")],512)]),_:3},8,["disabled"])],2)}const ml=_e(dl,[["render",pl]]),y1="",gl={props:{href:{type:String,default:""}},computed:{attrs(){const t={};return this.href.length&&(t.href=this.href),t}}};function yl(t,n,e,o,a,r){return i.openBlock(),i.createBlock(i.resolveDynamicComponent(e.href.length?"a":"button"),i.mergeProps(r.attrs,{class:"ib-dropdown-item"}),{default:i.withCtx(()=>[i.renderSlot(t.$slots,"default",{},void 0,!0)]),_:3},16)}const vl=_e(gl,[["render",yl],["__scopeId","data-v-4cf00feb"]]),Et={S:"s",M:"m",L:"l",XL:"xl"},v1="",bl={name:"IbModal",directives:{Outside:Pn},emits:{open:null,close:null},props:{active:{type:Boolean,default:!1},classList:{type:String,default:""},stopPropagation:{type:Boolean,default:!1},showCloseButton:{type:Boolean,default:!0},size:{type:String,default:Et.S}},watch:{active(t){this.isActive=t}},mounted(){var n,e,o,a;const t=(e=(n=this.$refs)==null?void 0:n.modal)==null?void 0:e.querySelectorAll("[tabindex], a, button, input, select, textarea");(o=t[0])==null||o.addEventListener("keydown",r=>{r.keyCode===Oi&&r.shiftKey&&(r.preventDefault(),t[t.length-1].focus())}),(a=t[t.length-1])==null||a.addEventListener("keydown",r=>{r.keyCode===Oi&&!r.shiftKey&&(r.preventDefault(),t[0].focus())}),document.addEventListener("keydown",this.onKeydown),document.addEventListener("blur",this.setFocusOnModal,!0)},data(){return{isActive:this.active}},methods:{showModal(t){t?this.open():this.close()},onTriggerBlur(){var t,n;(n=(t=this.$refs.modal)==null?void 0:t.querySelector("a, button, [tabindex]"))==null||n.focus()},open(){this.isActive=!0,document.body.classList.add("modal-open"),this.$emit("open")},close(){var t,n;this.isActive=!1,(n=(t=this.$refs.trigger)==null?void 0:t.querySelector("a, button, [tabindex]"))==null||n.focus(),document.body.classList.remove("modal-open"),this.$emit("close")},setFocusOnModal(t){var n;!((n=this.$refs.modal)!=null&&n.contains(t.target))&&this.isActive&&this.$refs.modal.querySelector("[tabindex], a, button, input, select, textarea").focus()},clickOutside(t){var n;this.stopPropagation||!((n=this.$refs.trigger)!=null&&n.contains(t.target))&&this.isActive&&this.close()},onKeydown(t){t.keyCode===pr&&!this.stopPropagation&&this.isActive&&this.close()}},computed:{bodyStyles(){const t={};return this.size===Et.S&&(t.width="380px",t.minHeight="160px",t.maxHeight="680px"),this.size===Et.M&&(t.width="600px",t.minHeight="260px",t.maxHeight="680px"),this.size===Et.L&&(t.width="850px",t.minHeight="400px",t.maxHeight="680px"),this.size===Et.XL&&(t.width="80vw",t.maxWidth="1400px"),t},bodyClassList(){const t=["modal-body"];return this.size===Et.S&&t.push("modal-body-s"),this.size===Et.M&&t.push("modal-body-m"),this.size===Et.L&&t.push("modal-body-l"),this.size===Et.XL&&t.push("modal-body-xl"),t},hasTrigger(){return!!this.$slots.trigger},hasHeader(){return!!this.$slots.header},hasFooter(){return!!this.$slots.footer}},components:{IbIconButton:ut,IbIcon:Le},beforeUnmount(){this.isActive&&this.close(),document.removeEventListener("keydown",this.onKeydown),document.removeEventListener("blur",this.setFocusOnModal,!0)}},_l={key:1,class:"modal-header"},$l={key:2,class:"modal-footer"};function wl(t,n,e,o,a,r){const s=i.resolveComponent("ib-icon"),d=i.resolveComponent("ib-icon-button"),u=i.resolveDirective("outside");return i.openBlock(),i.createElementBlock(i.Fragment,null,[r.hasTrigger?(i.openBlock(),i.createElementBlock("div",{key:0,class:"modal-trigger",ref:"trigger",onBlurCapture:n[0]||(n[0]=(...p)=>r.onTriggerBlur&&r.onTriggerBlur(...p)),onClick:n[1]||(n[1]=(...p)=>r.open&&r.open(...p))},[i.renderSlot(t.$slots,"trigger",{},void 0,!0)],544)):i.createCommentVNode("",!0),(i.openBlock(),i.createBlock(i.Teleport,{to:"body"},[i.withDirectives(i.createElementVNode("div",{class:i.normalizeClass(["modal",e.classList]),ref:"modal"},[i.withDirectives((i.openBlock(),i.createElementBlock("div",{class:i.normalizeClass(r.bodyClassList),style:i.normalizeStyle(r.bodyStyles)},[e.showCloseButton?(i.openBlock(),i.createBlock(d,{key:0,class:"modal-close-icon",kind:"ghost",onClick:r.close},{default:i.withCtx(()=>[i.createVNode(s,{name:"close-outline"})]),_:1},8,["onClick"])):i.createCommentVNode("",!0),r.hasHeader?(i.openBlock(),i.createElementBlock("p",_l,[i.renderSlot(t.$slots,"header",{showModal:r.showModal},void 0,!0)])):i.createCommentVNode("",!0),i.createElementVNode("div",{class:i.normalizeClass(["modal-content",{"without-title":!r.hasHeader}])},[i.renderSlot(t.$slots,"body",{showModal:r.showModal},void 0,!0)],2),r.hasFooter?(i.openBlock(),i.createElementBlock("div",$l,[i.renderSlot(t.$slots,"footer",{showModal:r.showModal},void 0,!0)])):i.createCommentVNode("",!0)],6)),[[u,r.clickOutside]])],2),[[i.vShow,a.isActive]])]))],64)}const kl=_e(bl,[["render",wl],["__scopeId","data-v-e1683e53"]]);function Ti(t){return"#"+t.toLowerCase().replace(/ /g,"-")}const b1="",Cl={name:"IbTabDropdown",props:{tabs:{rype:Object,default:{}},selectedTab:{type:String,default:""}},data(){return{selectedTabByDropdown:"",isDisabledDropdown:this.setDisabledTab()}},methods:{createHref(t){return Ti(t)},selectTab(t){this.selectedTabByDropdown=t,this.$emit("select-tab",t)},setDisabledTab(){return this.tabs.tabs.every(t=>t.disabled)}},computed:{isActive(){for(let t of this.tabs.tabs)if(t.id===this.selectedTab)return!0;return!1}},components:{IbDropdownList:Rn,IbDropdownItem:gr,IbIcon:Le}},Ol={class:"wrapper-tab-link dropdown-tab"},El=["tabindex"];function Sl(t,n,e,o,a,r){const s=i.resolveComponent("ib-icon"),d=i.resolveComponent("ib-dropdown-item"),u=i.resolveComponent("ib-dropdown-list");return i.openBlock(),i.createElementBlock("div",Ol,[i.createVNode(u,{disabled:a.isDisabledDropdown,"close-on-click":!0},{trigger:i.withCtx(()=>[i.createElementVNode("span",{class:i.normalizeClass(["tab-link",{active:a.selectedTabByDropdown===e.selectedTab||r.isActive,disabled:a.isDisabledDropdown}]),tabindex:a.isDisabledDropdown?-1:0},[i.createTextVNode(i.toDisplayString(e.tabs.name)+" ",1),i.createVNode(s,{name:"chevron-down"})],10,El)]),body:i.withCtx(()=>[(i.openBlock(!0),i.createElementBlock(i.Fragment,null,i.renderList(e.tabs.tabs,(p,h)=>(i.openBlock(),i.createBlock(d,{key:h,checked:p.id===e.selectedTab,href:r.createHref(p.id),tabindex:p.disabled?-1:0,class:i.normalizeClass([{disabled:p.disabled},"dropdown-tab-item"]),target:"_self",onClick:f=>r.selectTab(p.id)},{default:i.withCtx(()=>[i.createTextVNode(i.toDisplayString(p.title),1)]),_:2},1032,["checked","href","tabindex","class","onClick"]))),128))]),_:1},8,["disabled"])])}const Ni=_e(Cl,[["render",Sl]]),_1="",Tl={name:"IbTabs",props:{selectedTabId:{type:String,default:""}},data(){return{tabs:[],selectedTab:this.selectTabId}},watch:{selectedTabId(t){this.selectTab(t)}},created(){const t=[];this.$slots.default().forEach(n=>n.type===Symbol.for("v-fgt")?t.push(...n.children):t.push(n)),t.forEach(n=>{if(!n.props.name)this.tabs.push(n.props);else{const e=this.tabs.findIndex(o=>o.name===n.props.name);if(e!==-1)this.tabs[e].tabs.push(n.props);else{const o={name:n.props.name,tabs:[n.props]};this.tabs.push(o)}}});for(let n of this.tabs)if(!n.disabled)if(n.tabs){for(let e of n.tabs)if(!e.disabled){this.selectTab(e.id);return}}else{this.selectTab(n.id);return}},methods:{createHref(t){return Ti(t)},selectTab(t){this.$emit("changeTab",t),this.selectedTab=t}},components:{IbTabDropdown:Ni},emits:["changeTab"]},Nl={class:"tabs"},xl={class:"tabs-list"},Al={key:0,class:"wrapper-tab-link"},Dl=["href","tabindex","onClick"],Il={class:"tabs-content",ref:"tabHandler"};function Ml(t,n,e,o,a,r){const s=i.resolveComponent("ib-tab-dropdown");return i.openBlock(),i.createElementBlock("div",Nl,[i.createElementVNode("ul",xl,[(i.openBlock(!0),i.createElementBlock(i.Fragment,null,i.renderList(a.tabs,(d,u)=>(i.openBlock(),i.createElementBlock("li",{class:"tab-item",key:u},[d.name?(i.openBlock(),i.createBlock(s,{key:1,"selected-tab":a.selectedTab,tabs:d,onSelectTab:r.selectTab},null,8,["selected-tab","tabs","onSelectTab"])):(i.openBlock(),i.createElementBlock("div",Al,[i.createElementVNode("a",{class:i.normalizeClass(["tab-link",{active:a.selectedTab===d.id,disabled:d.disabled}]),href:r.createHref(d.id),tabindex:d.disabled?-1:0,onClick:p=>r.selectTab(d.id),target:"_self"},i.toDisplayString(d.title),11,Dl)]))]))),128))]),i.createElementVNode("div",Il,[i.renderSlot(t.$slots,"default",{},void 0,!0)],512)])}const Pl=_e(Tl,[["render",Ml],["__scopeId","data-v-47d103be"]]),Bl={name:"IbTab",props:{title:{type:String,required:!0},id:{type:String,required:!0},disabled:{type:Boolean,default:!1},initialized:{type:Boolean,default:!1},name:{type:String,default:null}},computed:{isTabActive(){return this.$parent.selectedTab===this.id}}};function Ll(t,n,e,o,a,r){return i.withDirectives((i.openBlock(),i.createElementBlock("div",null,[i.renderSlot(t.$slots,"default")],512)),[[i.vShow,r.isTabActive]])}const Rl=_e(Bl,[["render",Ll]]),jl={LIST_VIEW:"list-sorting",GRID_VIEW:"grid-sorting",TABLE_VIEW:"table-sorting"},Vl={TYPE_ASC:"asc",TYPE_DESC:"desc"};class xi{constructor(){this.tooltipInstance=null,this.tooltipContainer=null,this.uuid=null}getTooltipInstance(){return this.getTooltipInstance}getTooltipContainer(){return this.tooltipContainer}getId(){return this.uuid}generateUID(){this.uuid="tooltip_"+ht()}createTooltip(n,e,o){var r;if(!((r=e.text)!=null&&r.length))return;this.generateUID();const a=`
|
|
1
|
+
(function(pe,i){typeof exports=="object"&&typeof module<"u"?i(exports,require("vue")):typeof define=="function"&&define.amd?define(["exports","vue"],i):(pe=typeof globalThis<"u"?globalThis:pe||self,i(pe.MyLib={},pe.Vue))})(this,function(pe,i){"use strict";const z0="",_e=(t,n)=>{const e=t.__vccOpts||t;for(const[o,a]of n)e[o]=a;return e},Va={name:"IbIcon",props:{name:{type:String,required:!0},classes:{type:String,default:""},styles:{type:[String,Object],default:""}},mounted(){const t=setInterval(()=>{var n,e;(e=(n=this.$refs.icon)==null?void 0:n.shadowRoot)!=null&&e.querySelector("title")&&(this.$refs.icon.shadowRoot.querySelector("title").innerHTML="",clearInterval(t))},1e3)}},qa=["name"];function Fa(t,n,e,o,a,r){return i.openBlock(),i.createElementBlock("ion-icon",{style:i.normalizeStyle(e.styles),name:e.name,class:i.normalizeClass(e.classes+" ib-icon icon-"+e.name),ref:"icon"},null,14,qa)}const Le=_e(Va,[["render",Fa]]);function pt(){return"_"+Math.random().toString(36).substr(2,9)}const Fi={methods:{enter(t){const n=getComputedStyle(t).width;t.style.width=n,t.style.position="absolute",t.style.visibility="hidden",t.style.height="auto";const e=getComputedStyle(t).height;t.style.width=null,t.style.position=null,t.style.visibility=null,t.style.height=0,getComputedStyle(t).height,requestAnimationFrame(()=>{t.style.height=e})},afterEnter(t){t.style.height="auto"},leave(t){const n=getComputedStyle(t).height;t.style.height=n,getComputedStyle(t).height,requestAnimationFrame(()=>{t.style.height=0})}}},U0="",Ha={name:"IbAccordion",mixins:[Fi],props:{isOpen:{type:Boolean,default:!1}},watch:{isOpen(t){this.isActive=t}},data(){return{isActive:this.isOpen,uuid:pt()}},methods:{onClick(){this.isActive=!this.isActive,this.isActive?this.$emit("open",this.isActive):this.$emit("close",this.isActive)}},components:{IbIcon:Le}},za=["id","aria-controls","aria-expanded"],Ua=["id","aria-labelledby"],Ka={class:"accordion-content-wrapper"};function Ga(t,n,e,o,a,r){const s=i.resolveComponent("ib-icon");return i.openBlock(),i.createElementBlock("div",{class:i.normalizeClass(["ib-accordion",{active:a.isActive}])},[i.createElementVNode("button",{class:"accordion-title",id:"accordion"+a.uuid,"aria-controls":"accordion-section-"+a.uuid,"aria-expanded":a.isActive,type:"button",onClick:n[0]||(n[0]=i.withModifiers((...l)=>r.onClick&&r.onClick(...l),["prevent"]))},[i.renderSlot(t.$slots,"title",{},void 0,!0),i.createVNode(s,{class:"chevron-icon",name:"chevron-down-outline"})],8,za),i.createVNode(i.Transition,{name:"expand",onEnter:t.enter,onAfterEnter:t.afterEnter,onLeave:t.leave},{default:i.withCtx(()=>[i.withDirectives(i.createElementVNode("div",{role:"region",class:"accordion-content",id:"accordion-section-"+a.uuid,"aria-labelledby":"accordion"+a.uuid},[i.createElementVNode("div",Ka,[i.renderSlot(t.$slots,"default",{},void 0,!0)])],8,Ua),[[i.vShow,a.isActive]])]),_:3},8,["onEnter","onAfterEnter","onLeave"])],2)}const Wa=_e(Ha,[["render",Ga],["__scopeId","data-v-8ece19c1"]]),Kt={primary:"primary",secondary:"secondary",tertiary:"tertiary",ghost:"ghost",danger:"danger",ghostDanger:"ghostDanger"};function Pr(t,n=[]){for(let e in t)e.startsWith("on")&&(n.length===0||n.includes(e))&&delete t[e];return t}const K0="",Ya={name:"IbButton",props:{kind:{type:String,default:Kt.primary},disabled:{type:Boolean,required:!1,default:!1},preventDefault:{type:Boolean,default:null},confirmMessage:{type:String,default:""},block:{type:Boolean,default:!1},href:{type:String,default:""},to:{type:[String,Object]},linkMethod:{type:String,default:"get"},disableAfterClick:{type:Boolean,default:!1},postOptions:{type:Object,default:()=>({})}},data(){return{isDisabled:this.disabled}},watch:{disabled(t){this.isDisabled=t}},methods:{onMouseenter(t){this.$emit("mouseenter",t)},onMouseleave(t){this.$emit("mouseleave",t)},onClick(t){if((this.preventDefault||this.isDisabled)&&t.preventDefault(),this.confirmMessage.length>0&&!confirm(this.confirmMessage)){t.preventDefault();return}!this.isDisabled&&this.href.length&&!this.preventDefault&&this.linkMethod.toUpperCase()!=="GET"&&(t.preventDefault(),this.$refs.form.submit()),this.isDisabled||this.$emit("click",t),this.disableAfterClick&&!this.disabled&&(this.isDisabled=!0)}},computed:{component(){return this.href.length?"a":this.to?"router-link":"button"},classes(){const t=["ib-button"];return t.push(`ib-btn-${this.kind}`),this.isDisabled&&t.push("ib-btn-disabled"),this.block&&t.push("ib-btn-block"),(this.href.length||this.to)&&t.push("ib-btn-link"),this.hasIcon&&t.push("ib-btn-has-icon"),t},attrs(){const t=Pr({...this.$attrs},["onClick"]);return t.class=[...this.classes,t.class],t.disabled=this.isDisabled,this.href.length&&(t.href=this.href),this.to&&(t.to=this.to),t},hasIcon(){return!!this.$slots.icon},formMethod(){return this.linkMethod==="GET"?"GET":"POST"},token(){var t;return(t=document.head.querySelector('meta[name="csrf-token"]'))==null?void 0:t.content}},inheritAttrs:!1},Za=["method","action"],Ja=["value"],Xa=["value"],Qa=["name","value"];function el(t,n,e,o,a,r){return i.openBlock(),i.createBlock(i.resolveDynamicComponent(r.component),i.mergeProps(r.attrs,{onClick:n[0]||(n[0]=s=>r.onClick(s)),onMouseenter:r.onMouseenter,onMouseleave:r.onMouseleave}),{default:i.withCtx(()=>[i.renderSlot(t.$slots,"icon"),i.renderSlot(t.$slots,"default"),e.href.length&&e.linkMethod.toUpperCase()!=="GET"?i.withDirectives((i.openBlock(),i.createElementBlock("form",{key:0,ref:"form",method:r.formMethod,action:e.href},[i.createElementVNode("input",{type:"hidden",name:"_method",value:e.linkMethod},null,8,Ja),i.createElementVNode("input",{type:"hidden",name:"_token",value:r.token},null,8,Xa),(i.openBlock(!0),i.createElementBlock(i.Fragment,null,i.renderList(Object.keys(e.postOptions),(s,l)=>(i.openBlock(),i.createElementBlock("input",{key:l,type:"hidden",name:s,value:e.postOptions[s]},null,8,Qa))),128))],8,Za)),[[i.vShow,!1]]):i.createCommentVNode("",!0)]),_:3},16,["onMouseenter","onMouseleave"])}const Hi=_e(Ya,[["render",el]]),tl=["top","right","bottom","left"],zi=["start","end"],Ui=tl.reduce((t,n)=>t.concat(n,n+"-"+zi[0],n+"-"+zi[1]),[]),Ki=Math.min,yn=Math.max,Yn=Math.round,jt=t=>({x:t,y:t}),nl={left:"right",right:"left",bottom:"top",top:"bottom"},rl={start:"end",end:"start"};function Gi(t,n){return typeof t=="function"?t(n):t}function Zn(t){return t.split("-")[0]}function Gt(t){return t.split("-")[1]}function il(t){return t==="x"?"y":"x"}function Wi(t){return t==="y"?"height":"width"}function Yi(t){return["top","bottom"].includes(Zn(t))?"y":"x"}function Zi(t){return il(Yi(t))}function ol(t,n,e){e===void 0&&(e=!1);const o=Gt(t),a=Zi(t),r=Wi(a);let s=a==="x"?o===(e?"end":"start")?"right":"left":o==="start"?"bottom":"top";return n.reference[r]>n.floating[r]&&(s=Ji(s)),[s,Ji(s)]}function al(t){return t.replace(/start|end/g,n=>rl[n])}function Ji(t){return t.replace(/left|right|bottom|top/g,n=>nl[n])}function ll(t){return{top:0,right:0,bottom:0,left:0,...t}}function sl(t){return typeof t!="number"?ll(t):{top:t,right:t,bottom:t,left:t}}function Jn(t){return{...t,top:t.y,left:t.x,right:t.x+t.width,bottom:t.y+t.height}}function Xi(t,n,e){let{reference:o,floating:a}=t;const r=Yi(n),s=Zi(n),l=Wi(s),u=Zn(n),d=r==="y",p=o.x+o.width/2-a.width/2,f=o.y+o.height/2-a.height/2,c=o[l]/2-a[l]/2;let h;switch(u){case"top":h={x:p,y:o.y-a.height};break;case"bottom":h={x:p,y:o.y+o.height};break;case"right":h={x:o.x+o.width,y:f};break;case"left":h={x:o.x-a.width,y:f};break;default:h={x:o.x,y:o.y}}switch(Gt(n)){case"start":h[s]-=c*(e&&d?-1:1);break;case"end":h[s]+=c*(e&&d?-1:1);break}return h}const cl=async(t,n,e)=>{const{placement:o="bottom",strategy:a="absolute",middleware:r=[],platform:s}=e,l=r.filter(Boolean),u=await(s.isRTL==null?void 0:s.isRTL(n));let d=await s.getElementRects({reference:t,floating:n,strategy:a}),{x:p,y:f}=Xi(d,o,u),c=o,h={},v=0;for(let m=0;m<l.length;m++){const{name:_,fn:y}=l[m],{x:g,y:w,data:b,reset:k}=await y({x:p,y:f,initialPlacement:o,placement:c,strategy:a,middlewareData:h,rects:d,platform:s,elements:{reference:t,floating:n}});p=g??p,f=w??f,h={...h,[_]:{...h[_],...b}},k&&v<=50&&(v++,typeof k=="object"&&(k.placement&&(c=k.placement),k.rects&&(d=k.rects===!0?await s.getElementRects({reference:t,floating:n,strategy:a}):k.rects),{x:p,y:f}=Xi(d,c,u)),m=-1)}return{x:p,y:f,placement:c,strategy:a,middlewareData:h}};async function dl(t,n){var e;n===void 0&&(n={});const{x:o,y:a,platform:r,rects:s,elements:l,strategy:u}=t,{boundary:d="clippingAncestors",rootBoundary:p="viewport",elementContext:f="floating",altBoundary:c=!1,padding:h=0}=Gi(n,t),v=sl(h),_=l[c?f==="floating"?"reference":"floating":f],y=Jn(await r.getClippingRect({element:(e=await(r.isElement==null?void 0:r.isElement(_)))==null||e?_:_.contextElement||await(r.getDocumentElement==null?void 0:r.getDocumentElement(l.floating)),boundary:d,rootBoundary:p,strategy:u})),g=f==="floating"?{...s.floating,x:o,y:a}:s.reference,w=await(r.getOffsetParent==null?void 0:r.getOffsetParent(l.floating)),b=await(r.isElement==null?void 0:r.isElement(w))?await(r.getScale==null?void 0:r.getScale(w))||{x:1,y:1}:{x:1,y:1},k=Jn(r.convertOffsetParentRelativeRectToViewportRelativeRect?await r.convertOffsetParentRelativeRectToViewportRelativeRect({elements:l,rect:g,offsetParent:w,strategy:u}):g);return{top:(y.top-k.top+v.top)/b.y,bottom:(k.bottom-y.bottom+v.bottom)/b.y,left:(y.left-k.left+v.left)/b.x,right:(k.right-y.right+v.right)/b.x}}function ul(t,n,e){return(t?[...e.filter(a=>Gt(a)===t),...e.filter(a=>Gt(a)!==t)]:e.filter(a=>Zn(a)===a)).filter(a=>t?Gt(a)===t||(n?al(a)!==a:!1):!0)}const fl=function(t){return t===void 0&&(t={}),{name:"autoPlacement",options:t,async fn(n){var e,o,a;const{rects:r,middlewareData:s,placement:l,platform:u,elements:d}=n,{crossAxis:p=!1,alignment:f,allowedPlacements:c=Ui,autoAlignment:h=!0,...v}=Gi(t,n),m=f!==void 0||c===Ui?ul(f||null,h,c):c,_=await dl(n,v),y=((e=s.autoPlacement)==null?void 0:e.index)||0,g=m[y];if(g==null)return{};const w=ol(g,r,await(u.isRTL==null?void 0:u.isRTL(d.floating)));if(l!==g)return{reset:{placement:m[0]}};const b=[_[Zn(g)],_[w[0]],_[w[1]]],k=[...((o=s.autoPlacement)==null?void 0:o.overflows)||[],{placement:g,overflows:b}],T=m[y+1];if(T)return{data:{index:y+1,overflows:k},reset:{placement:T}};const S=k.map(E=>{const C=Gt(E.placement);return[E.placement,C&&p?E.overflows.slice(0,2).reduce((O,N)=>O+N,0):E.overflows[0],E.overflows]}).sort((E,C)=>E[1]-C[1]),B=((a=S.filter(E=>E[2].slice(0,Gt(E[0])?2:3).every(C=>C<=0))[0])==null?void 0:a[0])||S[0][0];return B!==l?{data:{index:y+1,overflows:k},reset:{placement:B}}:{}}}};function Vt(t){return Qi(t)?(t.nodeName||"").toLowerCase():"#document"}function dt(t){var n;return(t==null||(n=t.ownerDocument)==null?void 0:n.defaultView)||window}function qt(t){var n;return(n=(Qi(t)?t.ownerDocument:t.document)||window.document)==null?void 0:n.documentElement}function Qi(t){return t instanceof Node||t instanceof dt(t).Node}function Tt(t){return t instanceof Element||t instanceof dt(t).Element}function _t(t){return t instanceof HTMLElement||t instanceof dt(t).HTMLElement}function eo(t){return typeof ShadowRoot>"u"?!1:t instanceof ShadowRoot||t instanceof dt(t).ShadowRoot}function bn(t){const{overflow:n,overflowX:e,overflowY:o,display:a}=mt(t);return/auto|scroll|overlay|hidden|clip/.test(n+o+e)&&!["inline","contents"].includes(a)}function hl(t){return["table","td","th"].includes(Vt(t))}function Ir(t){const n=Mr(),e=mt(t);return e.transform!=="none"||e.perspective!=="none"||(e.containerType?e.containerType!=="normal":!1)||!n&&(e.backdropFilter?e.backdropFilter!=="none":!1)||!n&&(e.filter?e.filter!=="none":!1)||["transform","perspective","filter"].some(o=>(e.willChange||"").includes(o))||["paint","layout","strict","content"].some(o=>(e.contain||"").includes(o))}function pl(t){let n=on(t);for(;_t(n)&&!Xn(n);){if(Ir(n))return n;n=on(n)}return null}function Mr(){return typeof CSS>"u"||!CSS.supports?!1:CSS.supports("-webkit-backdrop-filter","none")}function Xn(t){return["html","body","#document"].includes(Vt(t))}function mt(t){return dt(t).getComputedStyle(t)}function Qn(t){return Tt(t)?{scrollLeft:t.scrollLeft,scrollTop:t.scrollTop}:{scrollLeft:t.pageXOffset,scrollTop:t.pageYOffset}}function on(t){if(Vt(t)==="html")return t;const n=t.assignedSlot||t.parentNode||eo(t)&&t.host||qt(t);return eo(n)?n.host:n}function to(t){const n=on(t);return Xn(n)?t.ownerDocument?t.ownerDocument.body:t.body:_t(n)&&bn(n)?n:to(n)}function Br(t,n,e){var o;n===void 0&&(n=[]),e===void 0&&(e=!0);const a=to(t),r=a===((o=t.ownerDocument)==null?void 0:o.body),s=dt(a);return r?n.concat(s,s.visualViewport||[],bn(a)?a:[],s.frameElement&&e?Br(s.frameElement):[]):n.concat(a,Br(a,[],e))}function no(t){const n=mt(t);let e=parseFloat(n.width)||0,o=parseFloat(n.height)||0;const a=_t(t),r=a?t.offsetWidth:e,s=a?t.offsetHeight:o,l=Yn(e)!==r||Yn(o)!==s;return l&&(e=r,o=s),{width:e,height:o,$:l}}function ro(t){return Tt(t)?t:t.contextElement}function an(t){const n=ro(t);if(!_t(n))return jt(1);const e=n.getBoundingClientRect(),{width:o,height:a,$:r}=no(n);let s=(r?Yn(e.width):e.width)/o,l=(r?Yn(e.height):e.height)/a;return(!s||!Number.isFinite(s))&&(s=1),(!l||!Number.isFinite(l))&&(l=1),{x:s,y:l}}const ml=jt(0);function io(t){const n=dt(t);return!Mr()||!n.visualViewport?ml:{x:n.visualViewport.offsetLeft,y:n.visualViewport.offsetTop}}function gl(t,n,e){return n===void 0&&(n=!1),!e||n&&e!==dt(t)?!1:n}function vn(t,n,e,o){n===void 0&&(n=!1),e===void 0&&(e=!1);const a=t.getBoundingClientRect(),r=ro(t);let s=jt(1);n&&(o?Tt(o)&&(s=an(o)):s=an(t));const l=gl(r,e,o)?io(r):jt(0);let u=(a.left+l.x)/s.x,d=(a.top+l.y)/s.y,p=a.width/s.x,f=a.height/s.y;if(r){const c=dt(r),h=o&&Tt(o)?dt(o):o;let v=c,m=v.frameElement;for(;m&&o&&h!==v;){const _=an(m),y=m.getBoundingClientRect(),g=mt(m),w=y.left+(m.clientLeft+parseFloat(g.paddingLeft))*_.x,b=y.top+(m.clientTop+parseFloat(g.paddingTop))*_.y;u*=_.x,d*=_.y,p*=_.x,f*=_.y,u+=w,d+=b,v=dt(m),m=v.frameElement}}return Jn({width:p,height:f,x:u,y:d})}const yl=[":popover-open",":modal"];function oo(t){return yl.some(n=>{try{return t.matches(n)}catch{return!1}})}function bl(t){let{elements:n,rect:e,offsetParent:o,strategy:a}=t;const r=a==="fixed",s=qt(o),l=n?oo(n.floating):!1;if(o===s||l&&r)return e;let u={scrollLeft:0,scrollTop:0},d=jt(1);const p=jt(0),f=_t(o);if((f||!f&&!r)&&((Vt(o)!=="body"||bn(s))&&(u=Qn(o)),_t(o))){const c=vn(o);d=an(o),p.x=c.x+o.clientLeft,p.y=c.y+o.clientTop}return{width:e.width*d.x,height:e.height*d.y,x:e.x*d.x-u.scrollLeft*d.x+p.x,y:e.y*d.y-u.scrollTop*d.y+p.y}}function vl(t){return Array.from(t.getClientRects())}function ao(t){return vn(qt(t)).left+Qn(t).scrollLeft}function _l(t){const n=qt(t),e=Qn(t),o=t.ownerDocument.body,a=yn(n.scrollWidth,n.clientWidth,o.scrollWidth,o.clientWidth),r=yn(n.scrollHeight,n.clientHeight,o.scrollHeight,o.clientHeight);let s=-e.scrollLeft+ao(t);const l=-e.scrollTop;return mt(o).direction==="rtl"&&(s+=yn(n.clientWidth,o.clientWidth)-a),{width:a,height:r,x:s,y:l}}function $l(t,n){const e=dt(t),o=qt(t),a=e.visualViewport;let r=o.clientWidth,s=o.clientHeight,l=0,u=0;if(a){r=a.width,s=a.height;const d=Mr();(!d||d&&n==="fixed")&&(l=a.offsetLeft,u=a.offsetTop)}return{width:r,height:s,x:l,y:u}}function wl(t,n){const e=vn(t,!0,n==="fixed"),o=e.top+t.clientTop,a=e.left+t.clientLeft,r=_t(t)?an(t):jt(1),s=t.clientWidth*r.x,l=t.clientHeight*r.y,u=a*r.x,d=o*r.y;return{width:s,height:l,x:u,y:d}}function lo(t,n,e){let o;if(n==="viewport")o=$l(t,e);else if(n==="document")o=_l(qt(t));else if(Tt(n))o=wl(n,e);else{const a=io(t);o={...n,x:n.x-a.x,y:n.y-a.y}}return Jn(o)}function so(t,n){const e=on(t);return e===n||!Tt(e)||Xn(e)?!1:mt(e).position==="fixed"||so(e,n)}function kl(t,n){const e=n.get(t);if(e)return e;let o=Br(t,[],!1).filter(l=>Tt(l)&&Vt(l)!=="body"),a=null;const r=mt(t).position==="fixed";let s=r?on(t):t;for(;Tt(s)&&!Xn(s);){const l=mt(s),u=Ir(s);!u&&l.position==="fixed"&&(a=null),(r?!u&&!a:!u&&l.position==="static"&&!!a&&["absolute","fixed"].includes(a.position)||bn(s)&&!u&&so(t,s))?o=o.filter(p=>p!==s):a=l,s=on(s)}return n.set(t,o),o}function Cl(t){let{element:n,boundary:e,rootBoundary:o,strategy:a}=t;const s=[...e==="clippingAncestors"?kl(n,this._c):[].concat(e),o],l=s[0],u=s.reduce((d,p)=>{const f=lo(n,p,a);return d.top=yn(f.top,d.top),d.right=Ki(f.right,d.right),d.bottom=Ki(f.bottom,d.bottom),d.left=yn(f.left,d.left),d},lo(n,l,a));return{width:u.right-u.left,height:u.bottom-u.top,x:u.left,y:u.top}}function Ol(t){const{width:n,height:e}=no(t);return{width:n,height:e}}function El(t,n,e){const o=_t(n),a=qt(n),r=e==="fixed",s=vn(t,!0,r,n);let l={scrollLeft:0,scrollTop:0};const u=jt(0);if(o||!o&&!r)if((Vt(n)!=="body"||bn(a))&&(l=Qn(n)),o){const f=vn(n,!0,r,n);u.x=f.x+n.clientLeft,u.y=f.y+n.clientTop}else a&&(u.x=ao(a));const d=s.left+l.scrollLeft-u.x,p=s.top+l.scrollTop-u.y;return{x:d,y:p,width:s.width,height:s.height}}function co(t,n){return!_t(t)||mt(t).position==="fixed"?null:n?n(t):t.offsetParent}function uo(t,n){const e=dt(t);if(!_t(t)||oo(t))return e;let o=co(t,n);for(;o&&hl(o)&&mt(o).position==="static";)o=co(o,n);return o&&(Vt(o)==="html"||Vt(o)==="body"&&mt(o).position==="static"&&!Ir(o))?e:o||pl(t)||e}const Sl=async function(t){const n=this.getOffsetParent||uo,e=this.getDimensions;return{reference:El(t.reference,await n(t.floating),t.strategy),floating:{x:0,y:0,...await e(t.floating)}}};function xl(t){return mt(t).direction==="rtl"}const Tl={convertOffsetParentRelativeRectToViewportRelativeRect:bl,getDocumentElement:qt,getClippingRect:Cl,getOffsetParent:uo,getElementRects:Sl,getClientRects:vl,getDimensions:Ol,getScale:an,isElement:Tt,isRTL:xl},Nl=fl,Al=(t,n,e)=>{const o=new Map,a={platform:Tl,...e},r={...a.platform,_c:o};return cl(t,n,{...a,platform:r})},G0="",Dl={name:"IbPopover",props:{position:{type:[String,Array],default:"top"},alwaysVisible:{type:Boolean,default:!1},attachToBody:{type:Boolean,default:!1}},data(){return{parentNode:null,isVisible:!!this.alwaysVisible,activePosition:null}},mounted(){this.$nextTick(()=>{var t,n,e,o;this.parentNode=this.$el.parentNode,this.alwaysVisible||((t=this.parentNode)==null||t.addEventListener("focus",this.showPopover,!0),(n=this.parentNode)==null||n.addEventListener("blur",this.hidePopover,!0),(e=this.parentNode)==null||e.addEventListener("mouseover",this.showPopover),(o=this.parentNode)==null||o.addEventListener("mouseleave",this.hidePopover))})},methods:{showPopover(){this.isVisible||(this.isVisible=!0,Al(this.parentNode,this.$refs.popover,{middleware:[Nl({allowedPlacements:this.position})]}).then(({x:t,y:n,placement:e})=>{this.activePosition=e,Object.assign(this.$refs.popover.style,{left:`${t}px`,top:`${n}px`})}))},hidePopover(){this.isVisible=!1}},computed:{classes(){const t=["ib-popover"];return t.push(`ib-${this.activePosition}`),this.isVisible&&t.push("active"),t}},beforeUnmount(){!this.alwaysVisible&&this.parentNode&&(this.parentNode.removeEventListener("focus",this.showPopover,!0),this.parentNode.removeEventListener("blur",this.hidePopover,!0),this.parentNode.removeEventListener("mouseover",this.showPopover,!0),this.parentNode.removeEventListener("mouseleave",this.hidePopover,!0))}};function Pl(t,n,e,o,a,r){return e.attachToBody?(i.openBlock(),i.createBlock(i.Teleport,{key:0,to:"body"},[i.createVNode(i.Transition,null,{default:i.withCtx(()=>[i.withDirectives(i.createElementVNode("div",{ref:"popover",class:i.normalizeClass(r.classes)},[i.renderSlot(t.$slots,"default",{},void 0,!0)],2),[[i.vShow,a.isVisible]])]),_:3})])):(i.openBlock(),i.createBlock(i.Transition,{key:1},{default:i.withCtx(()=>[i.withDirectives(i.createElementVNode("div",{ref:"popover",class:i.normalizeClass(r.classes)},[i.renderSlot(t.$slots,"default",{},void 0,!0)],2),[[i.vShow,a.isVisible]])]),_:3}))}const fo=_e(Dl,[["render",Pl],["__scopeId","data-v-9e816e9b"]]),W0="",Il={name:"IbTooltip",props:{position:{type:String},title:{type:String},text:{type:String},alwaysVisible:{type:Boolean,default:!1}},computed:{classList(){const t=["ib-tooltip"];return this.title&&t.push("ib-tooltip-large"),t}},components:{IbPopover:fo}},Ml={key:0};function Bl(t,n,e,o,a,r){const s=i.resolveComponent("ib-popover");return i.openBlock(),i.createBlock(s,{position:e.position,"always-visible":e.alwaysVisible,class:i.normalizeClass(r.classList)},{default:i.withCtx(()=>[e.title?(i.openBlock(),i.createElementBlock("b",Ml,i.toDisplayString(e.title),1)):i.createCommentVNode("",!0),i.createElementVNode("p",null,i.toDisplayString(e.text),1)]),_:1},8,["position","always-visible","class"])}const ln=_e(Il,[["render",Bl],["__scopeId","data-v-6fb94ac5"]]),ho={[Kt.primary]:Kt.primary,[Kt.tertiary]:Kt.tertiary,[Kt.ghost]:Kt.ghost,white:"white"},po={xs:"xs",s:"s",m:"m"},Y0="",Ll={name:"IbIconButton",props:{kind:{type:String,default:ho.primary,validator:t=>Object.keys(ho).includes(t)},size:{type:String,default:po.s,validator:t=>Object.keys(po).includes(t)},rounded:{type:Boolean,required:!1,default:!1},disabled:{type:Boolean,required:!1,default:!1},href:{type:String,default:""},to:{type:[String,Object],default:""},helpText:{type:String,default:""},disabledFocus:{type:Boolean,default:!1},preventDefault:{type:Boolean,default:!1}},data(){return{tooltipVisible:!1}},computed:{classes(){const t=["ib-icon-button"];return t.push(`ib-icon-btn-${this.kind}`),t.push(`ib-icon-btn-${this.size}`),this.rounded&&t.push("ib-icon-btn-rounded"),this.disabled&&t.push("ib-icon-btn-disabled"),t},attrs(){const t={...this.$attrs};return t.class=[...this.classes,t.class],this.disabledFocus&&(t.tabindex="-1"),t}},components:{IbButton:Hi,IbTooltip:ln},inheritAttrs:!1};function Rl(t,n,e,o,a,r){const s=i.resolveComponent("ib-tooltip"),l=i.resolveComponent("ib-button");return i.openBlock(),i.createBlock(l,i.mergeProps(r.attrs,{href:e.href,to:e.to,kind:e.kind,disabled:e.disabled,"prevent-default":e.preventDefault}),{default:i.withCtx(()=>[i.renderSlot(t.$slots,"default"),e.helpText.length?(i.openBlock(),i.createBlock(s,{key:0,text:e.helpText},null,8,["text"])):i.createCommentVNode("",!0)]),_:3},16,["href","to","kind","disabled","prevent-default"])}const ut=_e(Ll,[["render",Rl]]),er={alert:"alert",error:"error",warning:"warning",info:"info",success:"success"},Z0="",jl={name:"IbAlert",props:{type:{type:String,default:er.alert,validator:t=>Object.keys(er).includes(t)},showIcon:{type:Boolean,default:!1},showCloseButton:{type:Boolean,default:!1},title:{type:String,default:""},additionalTitleText:{type:String,default:""}},mounted(){this.checkHeight(),this.$refs.content&&(this.contentObserver=new ResizeObserver(()=>{this.checkHeight()}),this.contentObserver.observe(this.$refs.content)),window.addEventListener("resize",()=>this.checkHeight())},data(){return{contentObserver:null}},methods:{close(){this.$emit("close")},checkHeight(){var e;if(!this.$refs.content)return;const t=getComputedStyle(this.$refs.content),n=(e=this.$refs.content)==null?void 0:e.parentElement.offsetWidth;!n||!t||(parseInt(t.width)<=n&&this.$refs.content.classList.remove("large"),parseInt(t.height)>37&&this.showIcon&&(this.title.length?this.$refs.content.classList.add("large"):this.$refs.content.classList.add("medium")))}},computed:{classes(){const t=["ib-alert"];return t.push(`ib-alert-${this.type}`),this.title.length&&t.push("has-title"),this.showIcon&&t.push("has-icon"),this.showCloseButton&&t.push("has-close-button"),this.$slots.link&&t.push("has-link"),t},iconName(){return this.type===er.info?"information-circle-outline":this.type===er.success?"checkmark-circle-outline":"alert-circle-outline"}},beforeUnmount(){var t;(t=this.contentObserver)==null||t.disconnect(),window.removeEventListener("resize",()=>this.checkHeight())},components:{IbIcon:Le,IbIconButton:ut}},Vl={ref:"content",class:"content"},ql={class:"content-head"},Fl={key:1,class:"ib-alert-title"},Hl={class:"text-content"},zl={class:"link"};function Ul(t,n,e,o,a,r){var u;const s=i.resolveComponent("ib-icon"),l=i.resolveComponent("ib-icon-button");return i.openBlock(),i.createElementBlock("div",{role:"alert",class:i.normalizeClass(r.classes)},[i.createElementVNode("div",Vl,[i.createElementVNode("span",ql,[e.showIcon?(i.openBlock(),i.createBlock(s,{key:0,class:"ib-alert-icon",name:r.iconName},null,8,["name"])):i.createCommentVNode("",!0),(u=e.title)!=null&&u.length?(i.openBlock(),i.createElementBlock("b",Fl,i.toDisplayString(e.title),1)):i.createCommentVNode("",!0),i.renderSlot(t.$slots,"title",{},void 0,!0)]),i.createElementVNode("span",Hl,[i.renderSlot(t.$slots,"default",{},void 0,!0)]),i.createElementVNode("div",zl,[i.renderSlot(t.$slots,"link",{},void 0,!0)])],512),e.showCloseButton?(i.openBlock(),i.createBlock(l,{key:0,class:"close-button",kind:"ghost","prevent-default":!0,onClick:r.close},{default:i.withCtx(()=>[i.createVNode(s,{class:"close-button-icon",name:"close-outline"})]),_:1},8,["onClick"])):i.createCommentVNode("",!0)],2)}const Ft=_e(jl,[["render",Ul],["__scopeId","data-v-8437bad2"]]),Kl={M:"m",L:"l",XL:"xl"},Gl={SQUARE:"square",CIRCLE:"circle"},J0="",Wl={name:"IbAvatar",props:{firstName:{type:String,default:""},lastName:{type:String,default:""},src:{type:String,default:""},userAvatar:{type:Boolean,default:!1},size:{type:String,default:Kl.M},type:{type:String,default:Gl.CIRCLE}},computed:{classList(){return["avatar",`avatar-size-${this.size}`,`avatar-type-${this.type}`]},validateName(){var t,n;return((t=this.firstName)==null?void 0:t.trim().length)!==0&&((n=this.lastName)==null?void 0:n.trim().length)!==0},initials(){return this.firstName[0].toUpperCase()+this.lastName[0].toUpperCase()}},components:{IbIcon:Le}},Yl=["src","alt"];function Zl(t,n,e,o,a,r){const s=i.resolveComponent("ib-icon");return e.src&&!e.userAvatar?(i.openBlock(),i.createElementBlock("img",{key:0,class:i.normalizeClass(r.classList),src:e.src,alt:e.firstName+""+e.lastName},null,10,Yl)):e.src&&e.userAvatar?(i.openBlock(),i.createElementBlock("div",{key:1,class:i.normalizeClass(["user-avatar",r.classList]),style:i.normalizeStyle({backgroundImage:"url("+e.src+")"})},null,6)):r.validateName?(i.openBlock(),i.createElementBlock("div",{key:3,class:i.normalizeClass([r.classList,"default-avatar"])},i.toDisplayString(r.initials),3)):(i.openBlock(),i.createElementBlock("div",{key:2,class:i.normalizeClass(["empty-avatar",r.classList])},[i.createVNode(s,{name:"camera-outline"})],2))}const Jl=_e(Wl,[["render",Zl],["__scopeId","data-v-63abd28e"]]),X0="",Xl={name:"IbBadge",props:{content:{type:[String,Number],default:""}},computed:{classes(){const t=["ib-badge"];return this.content.toString().length&&t.push("ib-badge-large"),t},normalizeContent(){return this.content>99?"99+":this.content}}};function Ql(t,n,e,o,a,r){return i.openBlock(),i.createElementBlock("span",{class:i.normalizeClass(r.classes)},i.toDisplayString(r.normalizeContent),3)}const es=_e(Xl,[["render",Ql],["__scopeId","data-v-328df75a"]]),Q0="",ts={name:"IbButtonGroup"},ns={class:"ib-button-group"};function rs(t,n,e,o,a,r){return i.openBlock(),i.createElementBlock("div",ns,[i.renderSlot(t.$slots,"default")])}const is=_e(ts,[["render",rs]]),sn={success:"success",neutral:"neutral",info:"info",error:"error",new:"new",favorite:"favorite",pending:"pending"},ep="",os={props:{status:{type:String,default:sn.neutral,validator:t=>Object.keys(sn).includes(t)},icon:{type:String,default:""},showIcon:{type:Boolean,default:!1}},computed:{classes(){const t=["ib-tag-pill"];return t.push(`ib-tag-pill-${this.status}`),t},iconName(){if(this.icon)return this.icon;switch(this.status){case sn.success:return"checkmark-outline";case sn.neutral:return"time-outline";case sn.info:return"information-circle-outline";case sn.error:return"close-outline";default:return""}}},components:{IbIcon:Le}};function as(t,n,e,o,a,r){const s=i.resolveComponent("ib-icon");return i.openBlock(),i.createElementBlock("div",{class:i.normalizeClass(r.classes)},[e.showIcon&&r.iconName.length?(i.openBlock(),i.createBlock(s,{key:0,name:r.iconName},null,8,["name"])):i.createCommentVNode("",!0),i.createElementVNode("span",null,[i.renderSlot(t.$slots,"default",{},void 0,!0)])],2)}const ls=_e(os,[["render",as],["__scopeId","data-v-92406065"]]),ss={topLeft:"top-left",topCenter:"top-center",topRight:"top-right",rightTop:"right-top",rightCenter:"right-center",rightBottom:"right-bottom",bottomLeft:"bottom-left",bottomCenter:"bottom-center",bottomRight:"bottom-right",leftTop:"left-top",leftCenter:"left-center",leftBottom:"left-bottom"},tp="",np="",cs={name:"IbTooltip",props:{position:{type:String,default:ss.topCenter},title:{type:String},isOpen:{type:Boolean,default:!1}},mounted(){this.$nextTick(()=>{this.parentNode=this.$el.parentNode,getComputedStyle(this.parentNode).position!=="absolute"&&(this.parentNode.style.position="relative")})},data(){return{isOpenedState:this.isOpen}},methods:{open(){this.isOpenedState=!0,this.$emit("open")},close(){this.isOpenedState=!1,this.$emit("close")}},computed:{classes(){const t=["ib-toggle-tip"];return t.push(`ib-${this.position}`),t}},watch:{isOpen(t){t?this.open():this.close()}},components:{IbIconButton:ut,IbIcon:Le}},ds={class:"ib-toggle-tip-head"},us={class:"ib-toggle-tip-content"},fs={class:"ib-toggle-tip-button-set"};function hs(t,n,e,o,a,r){const s=i.resolveComponent("ib-icon"),l=i.resolveComponent("ib-icon-button");return i.openBlock(),i.createBlock(i.Transition,null,{default:i.withCtx(()=>[i.withDirectives(i.createElementVNode("div",{class:i.normalizeClass(r.classes)},[i.createElementVNode("div",ds,[i.createElementVNode("p",null,i.toDisplayString(e.title),1),i.createVNode(l,{class:"close-button",kind:"ghost",onClick:i.withModifiers(r.close,["prevent"])},{default:i.withCtx(()=>[i.createVNode(s,{name:"close-outline"})]),_:1},8,["onClick"])]),i.createElementVNode("div",us,[i.renderSlot(t.$slots,"default",{},void 0,!0)]),i.createElementVNode("div",fs,[i.renderSlot(t.$slots,"buttons",{},void 0,!0)])],2),[[i.vShow,a.isOpenedState]])]),_:3})}const mo=_e(cs,[["render",hs],["__scopeId","data-v-9e7c679e"]]),Lr=27,go=32,ps=13,yo=9,ms=38,gs=37,ys=39,bo=40,bs=8,vs="click",{performance:tr}=window,_s=typeof(tr==null?void 0:tr.now)=="function"&&Date.now()>document.createEvent("Event").timeStamp?()=>tr.now():()=>Date.now(),_n=new Map;let $n=!1;const vo=t=>{_n.forEach(({bindTimeStamp:n,callback:e},o)=>{if(!(o.contains(t.target)||t.timeStamp<=n))try{e(t)}catch(a){console.error(a)}})},$s=()=>{$n||(document.addEventListener("click",vo,{capture:!0}),$n=!0)},ws=()=>{$n&&(document.removeEventListener("click",vo),$n=!1)},nr={created:(t,{value:n,arg:e="click"})=>{if(typeof n!="function")throw new Error(`[OutsideDirective] Value must be a function; got ${typeof n}!`);if(e!=="click")throw new Error(`[OutsideDirective] Cannot bind ${e} events; only click events are currently supported!`);_n.has(t)||($n||$s(),_n.set(t,{bindTimeStamp:_s(),callback:n}))},beforeUnmount:t=>{_n.delete(t),_n.size===0&&ws()}},wn={left:"left",right:"right",center:"center"},rr={top:"top",bottom:"bottom"},op="",ap="",ks={name:"IbDropdown",directives:{Outside:nr},props:{vertical:{type:String,default:rr.bottom},horizontal:{type:String,default:wn.left},triggerClass:{default:""},isOpened:{type:Boolean,default:!1},showCloseIcon:{type:Boolean,default:!1},closeOnClick:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1},triggerType:{type:String,default:vs},destroyOnHide:{type:Boolean,default:!1}},watch:{isOpened(t){t?this.open():this.close()}},mounted(){this.$globalEvents.$on("dropdown:open",t=>{this.$el.contains(t.$el)||this.close()}),document.addEventListener("focus",this.closeOnEventOutside,!0),document.addEventListener("keyup",this.onKeyupDocument)},data(){return{isOpenedState:this.isOpened,timeout:null}},methods:{onKeydown(t){(t.keyCode===ps||t.keyCode===go)&&(t.preventDefault(),this.toggle()),t.keyCode===bo&&(t.preventDefault(),this.open())},onKeyupDocument(t){t.keyCode===Lr&&(t.preventDefault(),this.close())},toggle(){this.isOpenedState?this.close():this.open()},open(){this.disabled||(this.isOpenedState=!0,this.$emit("open"),this.$globalEvents.$emit("dropdown:open",this))},close(){if(this.isOpenedState){if(this.disabled)return;this.isOpenedState=!1,this.$emit("close")}},debouncedOpen(){this.timeout=setTimeout(()=>{this.open()},300)},debouncedClose(){this.close(),clearTimeout(this.timeout)},closeOnClickIfRequired(){this.closeOnClick&&this.close()},closeOnEventOutside(t){this.$el.contains(t.target)||this.close()}},computed:{classes(){const t=this.vertical===rr.bottom?" dropdown-bottom":" dropdown-top",n=this.horizontal===wn.left?" dropdown-left":this.horizontal===wn.right?" dropdown-right":" dropdown-center",e=this.isOpenedState?" active":"";return t+n+e},triggerClasses(){let t=this.isOpenedState?"active":"";return this.disabled&&(t+=" dropdown-trigger-disabled"),this.triggerClass+t},hasTrigger(){return!!this.$slots.trigger}},beforeUnmount(){document.removeEventListener("focus",this.closeOnEventOutside,!0),document.removeEventListener("keypress",this.onKeydownDocument)}},Cs={class:"ib-dropdown"},Os={class:"footer-slot"};function Es(t,n,e,o,a,r){const s=i.resolveDirective("outside");return i.withDirectives((i.openBlock(),i.createElementBlock("div",Cs,[r.hasTrigger&&e.triggerType==="click"?(i.openBlock(),i.createElementBlock("span",{key:0,class:i.normalizeClass(["dropdown-trigger",r.triggerClasses]),ref:"dropdown",onKeydown:n[0]||(n[0]=(...l)=>r.onKeydown&&r.onKeydown(...l)),onClick:n[1]||(n[1]=i.withModifiers((...l)=>r.toggle&&r.toggle(...l),["prevent","stop"]))},[i.renderSlot(t.$slots,"trigger",{isOpened:a.isOpenedState},void 0,!0)],34)):i.createCommentVNode("",!0),r.hasTrigger&&e.triggerType==="hover"?(i.openBlock(),i.createElementBlock("span",{key:1,class:i.normalizeClass(["dropdown-trigger",r.triggerClasses]),onMouseenter:n[2]||(n[2]=(...l)=>r.debouncedOpen&&r.debouncedOpen(...l)),onMouseleave:n[3]||(n[3]=(...l)=>r.debouncedClose&&r.debouncedClose(...l))},[i.renderSlot(t.$slots,"trigger",{isOpened:a.isOpenedState},void 0,!0)],34)):i.createCommentVNode("",!0),!e.destroyOnHide||a.isOpenedState?i.withDirectives((i.openBlock(),i.createElementBlock("div",{key:2,ref:"body",class:i.normalizeClass("ib-dropdown-menu "+r.classes)},[i.createElementVNode("div",{class:"dropdown-body",onClick:n[5]||(n[5]=(...l)=>r.closeOnClickIfRequired&&r.closeOnClickIfRequired(...l))},[i.renderSlot(t.$slots,"body",{isOpenedState:a.isOpenedState},void 0,!0),e.showCloseIcon?(i.openBlock(),i.createElementBlock("span",{key:0,class:"close",onClick:n[4]||(n[4]=(...l)=>r.close&&r.close(...l))},[i.renderSlot(t.$slots,"close",{},void 0,!0)])):i.createCommentVNode("",!0)]),i.createElementVNode("div",Os,[i.renderSlot(t.$slots,"footer",{},void 0,!0)])],2)),[[i.vShow,a.isOpenedState]]):i.createCommentVNode("",!0),i.createElementVNode("div",{class:"before",onClick:n[6]||(n[6]=(...l)=>r.close&&r.close(...l))},[i.renderSlot(t.$slots,"before",{},void 0,!0)])])),[[s,r.close]])}const ir=_e(ks,[["render",Es],["__scopeId","data-v-dfb4a39a"]]),lp="",Ss={name:"IbList",data(){return{rootClass:"ib-list"}},methods:{onKeydown(t){var n,e,o,a,r;if(t.keyCode===bo){if(this.$el.parentNode.closest(`.${this.rootClass}`))return;t.preventDefault();const s=document.activeElement,l=s.querySelector(`.${this.rootClass}`);let u=s.nextElementSibling?s.nextElementSibling:(n=s.parentNode.nextElementSibling)==null?void 0:n.childNodes[0];if(l&&window.getComputedStyle(l).display!=="none"){l.querySelector('a, button, input, [tabindex="0"]').focus();return}if(u){u.focus();return}const d=(o=(e=s.closest(`.${this.rootClass}`).parentNode)==null?void 0:e.parentNode)==null?void 0:o.nextElementSibling.childNodes[0];d&&d.nodeName!=="#text"&&d.focus()}if(t.keyCode===ms){if(this.$el.parentNode.closest(`.${this.rootClass}`))return;t.preventDefault();const s=document.activeElement,l=s.previousElementSibling?s.previousElementSibling:(a=s.parentNode.previousElementSibling)==null?void 0:a.childNodes[0];if(!l){s.closest(`.${this.rootClass}`).parentNode.focus();return}if(l&&l.nodeName!=="#text"){const u=l==null?void 0:l.querySelector(`.${this.rootClass}`);if(u&&window.getComputedStyle(u).display!=="none"){const d=Array.from(u.childNodes).filter(p=>p.nodeName!=="#text");(r=d[d.length-1])==null||r.childNodes[0].focus();return}l.focus()}}}}};function xs(t,n,e,o,a,r){return i.openBlock(),i.createElementBlock("ul",{class:i.normalizeClass(a.rootClass),onKeydown:n[0]||(n[0]=(...s)=>r.onKeydown&&r.onKeydown(...s))},[i.renderSlot(t.$slots,"default")],34)}const Rr=_e(Ss,[["render",xs]]),sp="",Ts={props:{vertical:{type:String,default:rr.bottom},horizontal:{type:String,default:wn.left},isOpened:{type:Boolean,default:!1},closeOnClick:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1}},methods:{proxyEvents(t){this.$emit(t.event,...t.args)}},data(){return{list:this.$refs.list}},computed:{hasTrigger(){return!!this.$slots.trigger}},components:{IbDropdown:ir,IbList:Rr}},Ns={class:"dropdown-list-wrapper"};function As(t,n,e,o,a,r){const s=i.resolveComponent("ib-list"),l=i.resolveComponent("ib-dropdown");return i.openBlock(),i.createElementBlock("div",Ns,[i.createVNode(l,i.mergeProps({horizontal:e.horizontal,vertical:e.vertical,isOpened:e.isOpened,closeOnClick:e.closeOnClick,disabled:e.disabled},t.$attrs,{ref:"dropdown",onAll:r.proxyEvents}),i.createSlots({body:i.withCtx(({isOpened:u})=>[i.createVNode(s,{ref:"list",class:"list"},{default:i.withCtx(()=>[i.renderSlot(t.$slots,"body",{isOpenedState:u})]),_:2},1536)]),_:2},[r.hasTrigger?{name:"trigger",fn:i.withCtx(({isOpened:u})=>[i.renderSlot(t.$slots,"trigger",{isOpened:u})]),key:"0"}:void 0]),1040,["horizontal","vertical","isOpened","closeOnClick","disabled","onAll"])])}const or=_e(Ts,[["render",As]]),cp="",Ds={props:{checked:{type:Boolean,default:!1},href:{type:String},to:{type:[String,Object]}},computed:{component(){return this.href?"a":this.to?"router-link":"div"},attrs(){const t={class:"ib-dropdown-item"};return this.href&&(t.href=this.href),this.to&&(t.to=this.to),t}}},Ps={class:"dropdown-item-wrapper"},Is={class:"dropdown-item-icon"};function Ms(t,n,e,o,a,r){return i.openBlock(),i.createElementBlock("li",Ps,[(i.openBlock(),i.createBlock(i.resolveDynamicComponent(r.component),i.mergeProps({class:e.checked?"active":""},r.attrs,{tabindex:"0"}),{default:i.withCtx(()=>[i.createElementVNode("p",null,[i.createElementVNode("div",Is,[i.renderSlot(t.$slots,"icon",{},void 0,!0)]),i.renderSlot(t.$slots,"default",{ref:"slot"},void 0,!0)])]),_:3},16,["class"]))])}const jr=_e(Ds,[["render",Ms],["__scopeId","data-v-65b53eff"]]),Bs={common:"common",danger:"danger"},dp="",Ls={name:"IbSplitButton",props:{id:{type:String,default:()=>pt()},kind:{type:String,default:Bs.common},verticalPosition:{type:String,default:"bottom"},disabled:{type:Boolean,default:!1},saveSelected:{type:Boolean,default:!1}},mounted(){var t;if(this.childList=Array.from(this.$refs.list.children),(t=this.childList)==null||t.forEach((n,e)=>{n.addEventListener("click",()=>{this.childList[this.activeElemIdx].classList.remove("active"),this.saveSelected&&(this.activeElemIdx=e,localStorage.setItem(`split-button-${this.id}`,e))})}),this.saveSelected){const n=localStorage.getItem(`split-button-${this.id}`);n&&(this.activeElemIdx=n)}this.$nextTick(()=>{this.setActiveItem()}),this.listObserver=new MutationObserver(n=>{for(const e of n)if(e.type==="attributes"&&e.attributeName==="disabled"){this.mainButtonAttrs.disabled=e.target.disabled;break}}),this.listObserver.observe(this.$refs.list,{attributes:!0,subtree:!0})},data(){return{activeElemIdx:0,content:"",mainButtonAttrs:{},isLink:!1,isRouterLink:!1,childList:[],listObserver:null}},components:{IbIcon:Le,IbDropdownList:or},methods:{setActiveItem(){const t=this.$slots.default()[this.activeElemIdx].props;this.mainButtonAttrs=t,this.mainButtonAttrs&&"href"in this.mainButtonAttrs?this.isLink=!0:this.isLink=!1,this.mainButtonAttrs&&"to"in this.mainButtonAttrs?this.isRouterLink=!0:this.isRouterLink=!1,this.childList[this.activeElemIdx].classList.add("active"),this.content=this.childList[this.activeElemIdx].textContent},onClickLink(t){if(this.disabled){t.preventDefault();return}}},computed:{classes(){const t=["split-button"];return t.push(`split-button-${this.kind}`),t}},watch:{activeElemIdx(){this.setActiveItem()}},beforeUnmount(){this.listObserver.disconnect(),this.listObserver=null}},Rs=["disabled"],js=["disabled"],Vs=["disabled"],qs={ref:"list"};function Fs(t,n,e,o,a,r){const s=i.resolveComponent("router-link"),l=i.resolveComponent("ib-icon"),u=i.resolveComponent("ib-dropdown-list");return i.openBlock(),i.createElementBlock("div",{class:i.normalizeClass(r.classes)},[a.isRouterLink?(i.openBlock(),i.createBlock(s,i.mergeProps({key:0,class:["split-button-main",{disabled:e.disabled}],disabled:e.disabled,to:a.mainButtonAttrs.to},a.mainButtonAttrs,{onClick:r.onClickLink}),{default:i.withCtx(()=>[i.createTextVNode(i.toDisplayString(a.content),1)]),_:1},16,["class","disabled","to","onClick"])):a.isLink?(i.openBlock(),i.createElementBlock("a",i.mergeProps({key:1,class:["split-button-main",{disabled:e.disabled}],disabled:e.disabled},a.mainButtonAttrs,{onClick:n[0]||(n[0]=(...d)=>r.onClickLink&&r.onClickLink(...d))}),i.toDisplayString(a.content),17,Rs)):(i.openBlock(),i.createElementBlock("button",i.mergeProps({key:2,disabled:e.disabled,class:"split-button-main"},a.mainButtonAttrs),i.toDisplayString(a.content),17,js)),i.createVNode(u,{disabled:e.disabled,closeOnClick:!0,vertical:e.verticalPosition,horizontal:e.verticalPosition==="top"?"right":"left"},{trigger:i.withCtx(()=>[i.createElementVNode("button",{disabled:e.disabled,class:"split-button-menu-trigger"},[i.createVNode(l,{name:"chevron-down-outline"})],8,Vs)]),body:i.withCtx(()=>[i.createElementVNode("div",qs,[i.renderSlot(t.$slots,"default")],512)]),_:3},8,["disabled","vertical","horizontal"])],2)}const Hs=_e(Ls,[["render",Fs]]),up="",zs={props:{href:{type:String,default:""},to:{type:[String,Object]}},computed:{attrs(){const t={};return this.href.length&&(t.href=this.href),this.to&&(t.to=this.to),t},component(){return this.href.length?"a":this.to?"router-link":"button"}}};function Us(t,n,e,o,a,r){return i.openBlock(),i.createBlock(i.resolveDynamicComponent(r.component),i.mergeProps(r.attrs,{class:"ib-dropdown-item"}),{default:i.withCtx(()=>[i.renderSlot(t.$slots,"default",{},void 0,!0)]),_:3},16)}const Ks=_e(zs,[["render",Us],["__scopeId","data-v-9a68b340"]]),Nt={S:"s",M:"m",L:"l",XL:"xl"},fp="",Gs={name:"IbModal",directives:{Outside:nr},emits:{open:null,close:null},props:{active:{type:Boolean,default:!1},classList:{type:String,default:""},stopPropagation:{type:Boolean,default:!1},showCloseButton:{type:Boolean,default:!0},size:{type:String,default:Nt.S}},watch:{active(t){this.isActive=t}},mounted(){var n,e,o,a;const t=(e=(n=this.$refs)==null?void 0:n.modal)==null?void 0:e.querySelectorAll("[tabindex], a, button, input, select, textarea");(o=t[0])==null||o.addEventListener("keydown",r=>{r.keyCode===yo&&r.shiftKey&&(r.preventDefault(),t[t.length-1].focus())}),(a=t[t.length-1])==null||a.addEventListener("keydown",r=>{r.keyCode===yo&&!r.shiftKey&&(r.preventDefault(),t[0].focus())}),document.addEventListener("keydown",this.onKeydown),document.addEventListener("blur",this.setFocusOnModal,!0)},data(){return{isActive:this.active}},methods:{showModal(t){t?this.open():this.close()},onTriggerBlur(t){var n,e,o;!((n=this.$refs.modal)!=null&&n.contains(t.relatedTarget))&&this.isActive&&((o=(e=this.$refs.modal)==null?void 0:e.querySelector("a, button, [tabindex]"))==null||o.focus())},open(){this.isActive=!0,document.body.classList.add("modal-open"),this.$emit("open")},close(){var t,n;(n=(t=this.$refs.trigger)==null?void 0:t.querySelector("a, button, [tabindex]"))==null||n.focus(),document.body.classList.remove("modal-open"),this.$emit("close")},setFocusOnModal(t){if(!this.isActive)return;const e=Array.from(document.querySelectorAll(".modal.is-active")).sort((o,a)=>+(getComputedStyle(o).zIndex||0)-+(getComputedStyle(a).zIndex||0)).at(-1);if(e===this.$refs.modal&&!e.contains(t.target)&&!e.contains(t.relatedTarget)){const o=e.querySelector(`a[href], button:not([disabled]),
|
|
2
|
+
textarea, input:not([type="hidden"]),
|
|
3
|
+
select, [tabindex]:not([tabindex="-1"])`);o==null||o.focus()}},clickOutside(t){var n;this.stopPropagation||!((n=this.$refs.trigger)!=null&&n.contains(t.target))&&this.isActive&&this.close()},onKeydown(t){t.keyCode===Lr&&!this.stopPropagation&&this.isActive&&this.close()}},computed:{classes(){const t=["modal"];return this.classList.length&&t.push(this.classList),this.isActive&&t.push("is-active"),t},bodyStyles(){const t={};return this.size===Nt.S&&(t.width="380px",t.minHeight="160px",t.maxHeight="680px"),this.size===Nt.M&&(t.width="600px",t.minHeight="260px",t.maxHeight="680px"),this.size===Nt.L&&(t.width="850px",t.minHeight="400px",t.maxHeight="680px"),this.size===Nt.XL&&(t.width="80vw",t.maxWidth="1400px"),t},bodyClassList(){const t=["modal-body"];return this.size===Nt.S&&t.push("modal-body-s"),this.size===Nt.M&&t.push("modal-body-m"),this.size===Nt.L&&t.push("modal-body-l"),this.size===Nt.XL&&t.push("modal-body-xl"),t},hasTrigger(){return!!this.$slots.trigger},hasHeader(){return!!this.$slots.header},hasFooter(){return!!this.$slots.footer}},components:{IbIconButton:ut,IbIcon:Le},beforeUnmount(){this.isActive&&this.close(),document.removeEventListener("keydown",this.onKeydown),document.removeEventListener("blur",this.setFocusOnModal,!0)}},Ws={key:1,class:"modal-header"},Ys={key:2,class:"modal-footer"};function Zs(t,n,e,o,a,r){const s=i.resolveComponent("ib-icon"),l=i.resolveComponent("ib-icon-button"),u=i.resolveDirective("outside");return i.openBlock(),i.createElementBlock(i.Fragment,null,[r.hasTrigger?(i.openBlock(),i.createElementBlock("div",{key:0,class:"modal-trigger",ref:"trigger",onBlurCapture:n[0]||(n[0]=(...d)=>r.onTriggerBlur&&r.onTriggerBlur(...d)),onClick:n[1]||(n[1]=(...d)=>r.open&&r.open(...d))},[i.renderSlot(t.$slots,"trigger",{},void 0,!0)],544)):i.createCommentVNode("",!0),(i.openBlock(),i.createBlock(i.Teleport,{to:"body"},[i.withDirectives(i.createElementVNode("div",{class:i.normalizeClass(r.classes),ref:"modal"},[i.withDirectives((i.openBlock(),i.createElementBlock("div",{class:i.normalizeClass(r.bodyClassList),style:i.normalizeStyle(r.bodyStyles)},[e.showCloseButton?(i.openBlock(),i.createBlock(l,{key:0,class:"modal-close-icon",kind:"ghost",onClick:r.close},{default:i.withCtx(()=>[i.createVNode(s,{name:"close-outline"})]),_:1},8,["onClick"])):i.createCommentVNode("",!0),r.hasHeader?(i.openBlock(),i.createElementBlock("p",Ws,[i.renderSlot(t.$slots,"header",{showModal:r.showModal},void 0,!0)])):i.createCommentVNode("",!0),i.createElementVNode("div",{class:i.normalizeClass(["modal-content",{"without-title":!r.hasHeader}])},[i.renderSlot(t.$slots,"body",{showModal:r.showModal},void 0,!0)],2),r.hasFooter?(i.openBlock(),i.createElementBlock("div",Ys,[i.renderSlot(t.$slots,"footer",{showModal:r.showModal},void 0,!0)])):i.createCommentVNode("",!0)],6)),[[u,r.clickOutside]])],2),[[i.vShow,a.isActive]])]))],64)}const Js=_e(Gs,[["render",Zs],["__scopeId","data-v-12ec5923"]]);function _o(t){return"#"+t.toLowerCase().replace(/ /g,"-")}const hp="",Xs={name:"IbTabDropdown",props:{tabs:{rype:Object,default:{}},selectedTab:{type:String,default:""}},data(){return{selectedTabByDropdown:"",isDisabledDropdown:this.setDisabledTab()}},methods:{createHref(t){return _o(t)},selectTab(t){this.selectedTabByDropdown=t,this.$emit("select-tab",t)},setDisabledTab(){return this.tabs.tabs.every(t=>t.disabled)}},computed:{isActive(){for(let t of this.tabs.tabs)if(t.id===this.selectedTab)return!0;return!1}},components:{IbDropdownList:or,IbDropdownItem:jr,IbIcon:Le}},Qs={class:"wrapper-tab-link dropdown-tab"},ec=["tabindex"];function tc(t,n,e,o,a,r){const s=i.resolveComponent("ib-icon"),l=i.resolveComponent("ib-dropdown-item"),u=i.resolveComponent("ib-dropdown-list");return i.openBlock(),i.createElementBlock("div",Qs,[i.createVNode(u,{disabled:a.isDisabledDropdown,"close-on-click":!0},{trigger:i.withCtx(()=>[i.createElementVNode("span",{class:i.normalizeClass(["tab-link",{active:a.selectedTabByDropdown===e.selectedTab||r.isActive,disabled:a.isDisabledDropdown}]),tabindex:a.isDisabledDropdown?-1:0},[i.createTextVNode(i.toDisplayString(e.tabs.name)+" ",1),i.createVNode(s,{name:"chevron-down"})],10,ec)]),body:i.withCtx(()=>[(i.openBlock(!0),i.createElementBlock(i.Fragment,null,i.renderList(e.tabs.tabs,(d,p)=>(i.openBlock(),i.createBlock(l,{key:p,checked:d.id===e.selectedTab,href:r.createHref(d.id),tabindex:d.disabled?-1:0,class:i.normalizeClass([{disabled:d.disabled},"dropdown-tab-item"]),target:"_self",onClick:f=>r.selectTab(d.id)},{default:i.withCtx(()=>[i.createTextVNode(i.toDisplayString(d.title),1)]),_:2},1032,["checked","href","tabindex","class","onClick"]))),128))]),_:1},8,["disabled"])])}const $o=_e(Xs,[["render",tc]]),pp="",nc={name:"IbTabs",props:{selectedTabId:{type:String,default:""}},data(){return{tabs:[],selectedTab:this.selectTabId}},watch:{selectedTabId(t){this.selectTab(t)}},created(){const t=[];this.$slots.default().forEach(n=>n.type===Symbol.for("v-fgt")?t.push(...n.children):t.push(n)),t.forEach(n=>{if(!n.props.name)this.tabs.push(n.props);else{const e=this.tabs.findIndex(o=>o.name===n.props.name);if(e!==-1)this.tabs[e].tabs.push(n.props);else{const o={name:n.props.name,tabs:[n.props]};this.tabs.push(o)}}});for(let n of this.tabs)if(!n.disabled)if(n.tabs){for(let e of n.tabs)if(!e.disabled){this.selectTab(e.id);return}}else{this.selectTab(n.id);return}},methods:{createHref(t){return _o(t)},selectTab(t){this.$emit("changeTab",t),this.selectedTab=t}},components:{IbTabDropdown:$o,IbIcon:Le},emits:["changeTab"]},rc={class:"tabs"},ic={class:"tabs-list"},oc={key:0,class:"wrapper-tab-link"},ac=["href","tabindex","onClick"],lc={class:"tabs-content",ref:"tabHandler"};function sc(t,n,e,o,a,r){const s=i.resolveComponent("ib-icon"),l=i.resolveComponent("ib-tab-dropdown");return i.openBlock(),i.createElementBlock("div",rc,[i.createElementVNode("ul",ic,[(i.openBlock(!0),i.createElementBlock(i.Fragment,null,i.renderList(a.tabs,(u,d)=>(i.openBlock(),i.createElementBlock("li",{class:"tab-item",key:d},[u.name?(i.openBlock(),i.createBlock(l,{key:1,"selected-tab":a.selectedTab,tabs:u,onSelectTab:r.selectTab},null,8,["selected-tab","tabs","onSelectTab"])):(i.openBlock(),i.createElementBlock("div",oc,[i.createElementVNode("a",{class:i.normalizeClass(["tab-link",{active:a.selectedTab===u.id,disabled:u.disabled}]),href:r.createHref(u.id),tabindex:u.disabled?-1:0,onClick:p=>r.selectTab(u.id),target:"_self"},[u.icon?(i.openBlock(),i.createBlock(s,{key:0,class:"tab-icon",name:u.icon},null,8,["name"])):i.createCommentVNode("",!0),i.createTextVNode(" "+i.toDisplayString(u.title),1)],10,ac)]))]))),128))]),i.createElementVNode("div",lc,[i.renderSlot(t.$slots,"default",{},void 0,!0)],512)])}const cc=_e(nc,[["render",sc],["__scopeId","data-v-fc25e785"]]),dc={name:"IbTab",props:{title:{type:String,required:!0},id:{type:String,required:!0},disabled:{type:Boolean,default:!1},icon:{type:String,required:!1},initialized:{type:Boolean,default:!1},name:{type:String,default:null}},computed:{isTabActive(){return this.$parent.selectedTab===this.id}}};function uc(t,n,e,o,a,r){return i.withDirectives((i.openBlock(),i.createElementBlock("div",null,[i.renderSlot(t.$slots,"default")],512)),[[i.vShow,r.isTabActive]])}const fc=_e(dc,[["render",uc]]),hc={LIST_VIEW:"list-sorting",GRID_VIEW:"grid-sorting",TABLE_VIEW:"table-sorting"},pc={TYPE_ASC:"asc",TYPE_DESC:"desc"},wo={topLeft:"top-left",topCenter:"top-center",topRight:"top-right",rightTop:"right-top",rightCenter:"right-center",rightBottom:"right-bottom",bottomLeft:"bottom-left",bottomCenter:"bottom-center",bottomRight:"bottom-right",leftTop:"left-top",leftCenter:"left-center",leftBottom:"left-bottom"};class ko{constructor(){this.tooltipInstance=null,this.tooltipContainer=null,this.uuid=null}getTooltipInstance(){return this.getTooltipInstance}getTooltipContainer(){return this.tooltipContainer}getId(){return this.uuid}generateUID(){this.uuid="tooltip_"+pt()}createTooltip(n,e,o){var r;if(!((r=e.text)!=null&&r.length))return;this.generateUID();const a=`
|
|
2
4
|
position: absolute;
|
|
3
5
|
top: 0px;
|
|
4
6
|
left: 0px;
|
|
5
|
-
|
|
7
|
+
opacity: 0;
|
|
8
|
+
`;this.tooltipContainer=document.createElement("div"),this.tooltipContainer.setAttribute("style",a),document.body.appendChild(this.tooltipContainer),this.tooltipInstance=i.createApp(ln,{title:e.title,text:e.text,alwaysVisible:!0,for:this.uuid,class:this.getClassList(o)}),this.tooltipInstance.mount(this.tooltipContainer),setTimeout(()=>{var s;if((s=this.tooltipContainer)!=null&&s.firstChild){n.setAttribute("aria-describedby",this.uuid);const l=this.getPositionStyle(n,o);this.tooltipContainer.firstChild.setAttribute("style",l),this.tooltipContainer.setAttribute("style",{opacity:1})}},100)}destroyTooltip(n){var e,o;n==null||n.removeAttribute("aria-describedby"),this.uuid=null,(e=this.tooltipInstance)==null||e.unmount(),this.tooltipInstance=null,(o=this.tooltipContainer)==null||o.remove(),this.tooltipContainer=null}getPositionStyle(n,e){const{top:o,bottom:a,left:r,right:s,width:l,height:u}=n.getBoundingClientRect(),{width:d,height:p}=this.tooltipContainer.firstChild.getBoundingClientRect(),f=document.documentElement.scrollTop;let c=`
|
|
6
9
|
bottom: auto!important;
|
|
7
10
|
right: auto!important;
|
|
8
11
|
transform: none!important;
|
|
9
|
-
`;switch(e){case"bottomCenter":
|
|
10
|
-
top: ${a+f+5}px!important;`;break;case"bottomLeft":
|
|
11
|
-
top: ${a+f+5}px!important;`;break;case"bottomRight":
|
|
12
|
-
top: ${a+f+5}px!important;`;break;case"topLeft":
|
|
13
|
-
top: ${o-
|
|
14
|
-
top: ${o-
|
|
15
|
-
top: ${a-
|
|
16
|
-
top: ${a+f-
|
|
17
|
-
top: ${a+f-u/2-12}px!important;`;break;case"rightTop":
|
|
18
|
-
top: ${a-
|
|
19
|
-
top: ${a+f-
|
|
20
|
-
top: ${a+f-u/2-12}px!important`;break;default:
|
|
21
|
-
top: ${o-h+f-5}px!important`;break}return l}getClassList(n){return n?hr[n]:hr.topCenter}}const Vt=new xi,ql=(t,n)=>{var a;Vt.getTooltipContainer()&&Vt.destroyTooltip();const e=Object.keys(n.modifiers)[0]||n.arg,o={title:((a=n.value)==null?void 0:a.title)||"",text:typeof n.value=="object"?n.value.text:n.value};Vt.createTooltip(t,o,e)},Fl=(t,n)=>{const e=Vt.getId();if(n.getAttribute("aria-describedby")!==e)return;const o=Vt.getTooltipContainer(),a=n!==t.target&&!n.contains(t.target),r=o!==t.target&&!(o!=null&&o.contains(t.target));a&&r&&Vt.destroyTooltip(n)},Ai=(t,n)=>{t.__tooltip_create=()=>ql(t,n),t.__tooltip_destroy=e=>Fl(e,t),t.addEventListener("mouseenter",t.__tooltip_create),document.addEventListener("mousemove",t.__tooltip_destroy)},Di=t=>{Vt.destroyTooltip(t),t.removeEventListener("mouseenter",t.__tooltip_create),document.removeEventListener("mousemove",t.__tooltip_destroy)},yr={mounted(t,n){Ai(t,n)},updated(t,n){Di(t),Ai(t,n)},beforeUnmount(t){Di(t)}},$1="",Hl={name:"IbSorting",props:{tooltipTitle:{type:String,default:""},hideSortingButton:{type:Boolean,default:!1},tooltipText:{type:String},tooltipPosition:{type:String},tooltipIconPosition:{type:String},tooltipIconSorting:{type:String},toggleTipTitle:{type:String},title:{type:String,default:""},sort:{type:String,default:null},view:{type:String,required:!0},disable:{type:Boolean,default:!1},tableName:{type:String,required:!0}},mounted(){this.$globalEvents.$on(`sorting:update:${this.tableName}`,t=>{this.$el.contains(t.$el)||(this.currentTypeSort=null)})},data(){return{isOpenToggleTip:!1,sortingTypes:Vl,sortingTypesView:jl,currentTypeSort:this.sort}},methods:{clickHandler(){this.currentTypeSort?this.currentTypeSort===this.sortingTypes.TYPE_ASC?this.currentTypeSort=this.sortingTypes.TYPE_DESC:this.currentTypeSort=null:this.currentTypeSort=this.sortingTypes.TYPE_ASC,this.updateTypeSorting()},updateTypeSorting(){this.$globalEvents.$emit(`sorting:update:${this.tableName}`,this),this.$emit("update-sorting",this.currentTypeSort)}},computed:{iconType(){return this.currentTypeSort===this.sortingTypes.TYPE_ASC?"arrow-up":this.currentTypeSort===this.sortingTypes.TYPE_DESC?"arrow-down":this.view!==this.sortingTypesView.GRID_VIEW?"swap-vertical":null},sortingTooltipPosition(){return this.hasToggleTip?"bottomCenter":this.tooltipPosition},sortingTooltipContent(){var t;return this.hasToggleTip?lang("click_to_view_details",(t=this.langComponents)==null?void 0:t.COMPONENT_SYSTEM):this.tooltipContent},tooltipIconText(){var t,n,e;return this.currentTypeSort===this.sortingTypes.TYPE_ASC?lang("sort_descending",(t=this.langComponents)==null?void 0:t.COMPONENT_SELECT):this.currentTypeSort===this.sortingTypes.TYPE_DESC?lang("reset_sorting",(n=this.langComponents)==null?void 0:n.COMPONENT_SELECT):this.view!==this.sortingTypesView.GRID_VIEW?lang("sort_ascending",(e=this.langComponents)==null?void 0:e.COMPONENT_SELECT):""},tooltipContent(){return this.tooltipTitle.length?{title:this.tooltipTitle,text:this.tooltipText}:this.tooltipText},hasToggleTip(){return this.toggleTipTitle&&this.$slots.toggleTipBody&&this.$slots.toggleTipButtons}},directives:{Tooltip:yr},components:{IbIcon:Le,IbIconButton:ut,IbToggleTip:ki}},zl={class:"sorting-wrapper"},Ul=["name"],Kl=["aria-label"];function Gl(t,n,e,o,a,r){var h;const s=i.resolveComponent("ib-toggle-tip"),d=i.resolveComponent("ib-icon-button"),u=i.resolveComponent("ib-icon"),p=i.resolveDirective("tooltip");return i.openBlock(),i.createElementBlock("div",zl,[e.view===a.sortingTypesView.TABLE_VIEW?(i.openBlock(),i.createElementBlock("div",{key:0,class:i.normalizeClass(["table-sorting-wrapper",{active:a.currentTypeSort,disabled:e.disable}])},[i.createElementVNode("div",null,[i.withDirectives((i.openBlock(),i.createElementBlock("button",{class:i.normalizeClass(["sorting-label",{"sorting-label-active":a.isOpenToggleTip&&r.hasToggleTip,"has-action":((h=e.tooltipText)==null?void 0:h.length)||r.hasToggleTip}]),type:"button",onClick:n[0]||(n[0]=f=>a.isOpenToggleTip=!a.isOpenToggleTip)},[i.createTextVNode(i.toDisplayString(e.title),1)],2)),[[p,r.sortingTooltipContent,r.sortingTooltipPosition]]),r.hasToggleTip?(i.openBlock(),i.createBlock(s,{key:0,position:"bottom-center","is-open":a.isOpenToggleTip,title:e.toggleTipTitle,onClose:n[1]||(n[1]=f=>a.isOpenToggleTip=!1)},{buttons:i.withCtx(()=>[i.renderSlot(t.$slots,"toggleTipButtons",{},void 0,!0)]),default:i.withCtx(()=>[i.renderSlot(t.$slots,"toggleTipBody",{},void 0,!0)]),_:3},8,["is-open","title"])):i.createCommentVNode("",!0)]),e.hideSortingButton?i.createCommentVNode("",!0):i.withDirectives((i.openBlock(),i.createBlock(d,{key:0,kind:"white",size:"s",onClick:r.clickHandler},{default:i.withCtx(()=>[i.createElementVNode("ion-icon",{name:r.iconType},null,8,Ul)]),_:1},8,["onClick"])),[[p,r.tooltipIconText,e.tooltipIconPosition]])],2)):i.withDirectives((i.openBlock(),i.createElementBlock("button",{key:1,class:i.normalizeClass(["sorting-button",{active:a.currentTypeSort,disabled:e.disable}]),type:"button",onClick:n[2]||(n[2]=(...f)=>r.clickHandler&&r.clickHandler(...f)),"aria-label":e.sort},[i.createTextVNode(i.toDisplayString(e.title)+" ",1),r.iconType?(i.openBlock(),i.createBlock(u,{key:0,name:r.iconType},null,8,["name"])):i.createCommentVNode("",!0)],10,Kl)),[[p,e.tooltipText,e.tooltipPosition]])])}const Yl=_e(Hl,[["render",Gl],["__scopeId","data-v-a4394881"]]),w1="",Wl={name:"IbBreadcrumbs",props:{items:{type:Array,default:()=>[]},tooltipTextContext:{type:String}},computed:{last(){return this.items.length?this.items.length-1:null},initContextMenu(){return this.items.length>4},setItemsContextMenu(){return this.items.slice(0,-3)}},components:{IbIcon:Le,IbIconButton:ut,IbDropdownItem:gr,IbDropdownList:Rn,IbTooltip:jt}},Zl={"aria-label":"breadcrumb"},Jl={class:"breadcrumb"},Xl=["href"],Ql={key:1},es=["href"];function ts(t,n,e,o,a,r){const s=i.resolveComponent("ib-icon"),d=i.resolveComponent("ib-tooltip"),u=i.resolveComponent("ib-icon-button"),p=i.resolveComponent("ib-dropdown-item"),h=i.resolveComponent("ib-dropdown-list");return i.openBlock(),i.createElementBlock("nav",Zl,[i.createElementVNode("ul",Jl,[(i.openBlock(!0),i.createElementBlock(i.Fragment,null,i.renderList(e.items,(f,l)=>(i.openBlock(),i.createElementBlock("li",{class:i.normalizeClass(["breadcrumb-item",l===r.last?"active":""]),"aria-current":"page",key:l},[l!==r.last&&l>e.items.length-4||l===0?(i.openBlock(),i.createElementBlock("a",{key:0,class:"ib-link",href:f.url},i.toDisplayString(f.title),9,Xl)):i.createCommentVNode("",!0),l===r.last?(i.openBlock(),i.createElementBlock("p",Ql,i.toDisplayString(f.title),1)):i.createCommentVNode("",!0),r.initContextMenu&&l===e.items.length-4?(i.openBlock(),i.createBlock(h,{key:2,horizontal:"center"},{trigger:i.withCtx(()=>[i.createVNode(u,{kind:"ghost"},{default:i.withCtx(()=>[i.createVNode(s,{name:"ellipsis-horizontal-sharp"}),e.tooltipTextContext?(i.openBlock(),i.createBlock(d,{key:0,text:e.tooltipTextContext},null,8,["text"])):i.createCommentVNode("",!0)]),_:1})]),body:i.withCtx(()=>[(i.openBlock(!0),i.createElementBlock(i.Fragment,null,i.renderList(r.setItemsContextMenu,(c,_)=>(i.openBlock(),i.createBlock(p,{key:_},{default:i.withCtx(()=>[i.createElementVNode("a",{class:"context-breadcrums",href:c.url},i.toDisplayString(c.title),9,es)]),_:2},1024))),128))]),_:2},1024)):i.createCommentVNode("",!0),l!==r.last&&l>e.items.length-5||l===0?(i.openBlock(),i.createBlock(s,{key:3,name:"chevron-forward-outline"})):i.createCommentVNode("",!0)],2))),128))])])}const ns=_e(Wl,[["render",ts],["__scopeId","data-v-5ef772a9"]]),k1="",rs={name:"IbLabel",props:{for:{type:String},required:{type:Boolean,default:!1},infoText:{type:String,default:""},tooltipPosition:{type:String}},mounted(){this.$globalEvents.$on(`label:disabled:${this.for}`,t=>{this.disabled=t})},data(){return{disabled:!1}},computed:{classes(){const t=["ib-label"];return this.infoText.length&&t.push("has-info-text"),this.disabled&&t.push("label-disabled"),t}},components:{IbIconButton:ut,IbIcon:Le,IbTooltip:jt}},is=["for"],os={key:0,class:"required"};function as(t,n,e,o,a,r){const s=i.resolveComponent("ib-icon"),d=i.resolveComponent("ib-tooltip"),u=i.resolveComponent("ib-icon-button");return i.openBlock(),i.createElementBlock("label",{class:i.normalizeClass(r.classes),for:e.for},[e.required?(i.openBlock(),i.createElementBlock("span",os,"* ")):i.createCommentVNode("",!0),i.renderSlot(t.$slots,"default",{},void 0,!0),e.infoText.length?(i.openBlock(),i.createBlock(u,{key:1,size:"xs",class:"info-button",kind:"ghost",type:"button"},{default:i.withCtx(()=>[i.createVNode(s,{name:"information-circle-outline"}),i.createVNode(d,{text:e.infoText,position:e.tooltipPosition},null,8,["text","position"])]),_:1})):i.createCommentVNode("",!0)],10,is)}const dn=_e(rs,[["render",as],["__scopeId","data-v-3e867259"]]),vr={text:"text",password:"password",email:"email",number:"number"},C1="",ls={name:"IbInput",props:{type:{type:String,default:vr.text,validator:t=>Object.keys(vr).includes(t)},disabled:{type:Boolean,required:!1,default:!1},error:{type:Boolean,default:!1},errorMessage:{type:String,default:""},id:{type:[String],default(){return ht()}},debounce:{type:[Number,String]},showIcon:{type:Boolean,default:!1},showClearButton:{type:Boolean,default:!0},clearButtonMessage:{type:String,default:""},settingsButtonMessage:{type:String,default:""},showPasswordMessage:{type:String,default:""},hidePasswordMessage:{type:String,default:""},value:{type:[String,Number],default:""},modelValue:{type:[String,Number]},settingsVerticalPosition:{type:String,default:Bn.bottom},settingsHorizontalPosition:{type:String,default:sn.right},readonly:{type:Boolean,default:!1}},data(){return{actualValue:this.modelValue||this.value,showPassword:!1}},mounted(){setTimeout(()=>{this.$globalEvents.$emit(`label:disabled:${this.id}`,this.disabled)},10)},methods:{toggleShowPassword(){this.showPassword=!this.showPassword},clearInput(){this.actualValue="",this.$emit("update:modelValue",this.actualValue),this.$emit("input",this.actualValue),this.$emit("clear")},onBlur(){this.$emit("blur",this.actualValue)},onFocus(){this.$emit("focus",this.actualValue)},onInput(){this.debounce?this.delayedInput(this.actualValue):(this.$emit("update:modelValue",this.actualValue),this.$emit("input",this.actualValue))},delayedInput(t){this.timer&&(clearTimeout(this.timer),this.timer=null),this.timer=setTimeout(()=>{this.$emit("update:modelValue",t),this.$emit("input",t)},this.debounce)},focus(){this.$refs.field.focus()}},computed:{hasSettings(){return!!this.$slots.settings},classes(){const t=["ib-input"];return this.hasErrorState&&t.push("ib-error"),this.showIcon&&t.push("ib-input-has-icon"),t},attrs(){let t=Dn({...this.$attrs},["onInput","onBlur"]);return t.type=this.type===vr.password?this.showPassword?"text":"password":this.type,t},hasErrorState(){return this.error||this.errorMessage.length}},watch:{value(t){this.actualValue=t},modelValue(t){this.actualValue=t},disabled(t){this.$globalEvents.$emit(`label:disabled:${this.id}`,t)}},emits:["input","blur","focus","clear","update:modelValue",`label:disabled:${globalThis==null?void 0:globalThis.id}`],components:{IbAlert:Pt,IbIconButton:ut,IbIcon:Le,IbDropdown:Ln},inheritAttrs:!1},ss=["aria-invalid","readonly","disabled","id"],ds={class:"settings-wrapper"};function cs(t,n,e,o,a,r){var h,f;const s=i.resolveComponent("ib-alert"),d=i.resolveComponent("ib-icon"),u=i.resolveComponent("ib-icon-button"),p=i.resolveComponent("ib-dropdown");return i.openBlock(),i.createElementBlock("div",null,[e.errorMessage?(i.openBlock(),i.createBlock(s,{key:0},{default:i.withCtx(()=>[i.createTextVNode(i.toDisplayString(e.errorMessage),1)]),_:1})):i.createCommentVNode("",!0),i.createElementVNode("div",{class:i.normalizeClass(["ib-input-wrapper",{"has-settings":r.hasSettings}])},[e.showIcon?(i.openBlock(),i.createBlock(d,{key:0,class:"icon-search",name:"search-outline"})):i.createCommentVNode("",!0),i.withDirectives(i.createElementVNode("input",i.mergeProps(r.attrs,{"onUpdate:modelValue":n[0]||(n[0]=l=>a.actualValue=l),ref:"field","aria-invalid":!!r.hasErrorState,readonly:e.readonly,disabled:e.disabled,id:e.id,class:r.classes,onInput:n[1]||(n[1]=l=>r.onInput(l)),onBlur:n[2]||(n[2]=l=>r.onBlur(l)),onFocus:n[3]||(n[3]=l=>r.onFocus(l))}),null,16,ss),[[i.vModelDynamic,a.actualValue]]),e.type!=="password"&&e.showClearButton?i.withDirectives((i.openBlock(),i.createBlock(u,{key:1,kind:"ghost",class:"button-clear",disabled:e.readonly||e.disabled,"help-text":e.clearButtonMessage,"prevent-default":"",type:"button",onClick:r.clearInput,onKeypress:i.withKeys(r.clearInput,["enter"])},{default:i.withCtx(()=>[i.createVNode(d,{name:"close-outline"})]),_:1},8,["disabled","help-text","onClick","onKeypress"])),[[i.vShow,(h=a.actualValue)==null?void 0:h.length]]):i.createCommentVNode("",!0),e.type==="password"?i.withDirectives((i.openBlock(),i.createBlock(u,{key:2,kind:"ghost",class:"toggle-password","prevent-default":"",type:"button",disabled:e.readonly||e.disabled,"help-text":a.showPassword?e.hidePasswordMessage:e.showPasswordMessage,onClick:i.withModifiers(r.toggleShowPassword,["prevent"])},{default:i.withCtx(()=>[i.createVNode(d,{name:a.showPassword?"eye-off-outline":"eye-outline"},null,8,["name"])]),_:1},8,["disabled","help-text","onClick"])),[[i.vShow,(f=a.actualValue)==null?void 0:f.length]]):i.createCommentVNode("",!0),r.hasSettings?(i.openBlock(),i.createBlock(p,{key:3,class:"settings-dropdown-wrapper",horizontal:e.settingsHorizontalPosition,vertical:e.settingsVerticalPosition},{trigger:i.withCtx(()=>[i.createVNode(u,{"prevent-default":"","help-text":e.settingsButtonMessage,class:"options-trigger",kind:"ghost"},{default:i.withCtx(()=>[i.createVNode(d,{name:"options"})]),_:1},8,["help-text"])]),body:i.withCtx(()=>[i.createElementVNode("div",ds,[i.renderSlot(t.$slots,"settings",{},void 0,!0)])]),_:3},8,["horizontal","vertical"])):i.createCommentVNode("",!0)],2)])}const br=_e(ls,[["render",cs],["__scopeId","data-v-ea1e952e"]]),O1="",us={name:"IbCheckbox",model:{event:"input"},props:{label:String,error:{type:[Boolean,null],default:!1},name:String,id:{type:String,default(){return ht()}},value:{default:1},modelValue:{type:Boolean},isChecked:{type:Boolean,default:!1},readonly:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1},disableFocus:{type:Boolean,default:!1},required:{type:Boolean,default:!1},labelPosition:{type:String,default:"right"}},watch:{isChecked(t){this.checked=t},modelValue(t){this.$emit("update:modelValue",this.modelValue),this.checked=t}},data(){return{checked:this.modelValue?this.modelValue:this.isChecked}},methods:{onChange(t){if(this.readonly){t.preventDefault();return}this.checked=!this.checked,this.$emit("update:modelValue",this.checked),this.$emit("input",this.checked)}},computed:{classes(){return{"ib-checkbox":!0,"ib-has-error":this.error,"ib-checkbox-filled":this.checked,"ib-checkbox-disabled":this.disabled,"ib-checkbox-readonly":this.readonly,"ib-checkbox-indeterminate":this.indeterminate}},indeterminate(){return this.isChecked===null},attrs(){const t={...Dn({...this.$attrs})};return delete t.class,t.class=this.classes,t}},components:{IbIcon:Le},inheritAttrs:!1},fs=["aria-checked"],hs=["for","tabindex"],ps=["name","id","value","disabled","required"],ms={class:"ib-checkbox-body"},gs={key:0,class:"required"},ys={class:"ib-checkbox-input"},vs={key:1,class:"ib-checkbox-label"},bs={key:0,class:"required"};function _s(t,n,e,o,a,r){var d;const s=i.resolveComponent("ib-icon");return i.openBlock(),i.createElementBlock("div",{role:"checkbox",class:i.normalizeClass(["ib-checkbox-wrapper",this.$attrs.class]),"aria-checked":!!a.checked},[i.createElementVNode("label",i.mergeProps(r.attrs,{for:e.id,tabindex:e.disabled|e.disableFocus?-1:0,onKeypress:n[2]||(n[2]=i.withModifiers((...u)=>r.onChange&&r.onChange(...u),["prevent"]))}),[i.withDirectives(i.createElementVNode("input",{tabindex:"-1",type:"checkbox",name:e.name,id:e.id,value:e.value,disabled:e.disabled,required:e.required,"onUpdate:modelValue":n[0]||(n[0]=u=>a.checked=u),onClick:n[1]||(n[1]=(...u)=>r.onChange&&r.onChange(...u))},null,8,ps),[[i.vModelCheckbox,a.checked]]),i.createElementVNode("div",ms,[e.labelPosition==="left"&&e.label.length?(i.openBlock(),i.createElementBlock("span",{key:0,class:i.normalizeClass(["ib-checkbox-label",{"ib-checkbox-label-left":e.labelPosition==="left"}])},[e.required?(i.openBlock(),i.createElementBlock("span",gs,"*")):i.createCommentVNode("",!0),i.createTextVNode(" "+i.toDisplayString(e.label),1)],2)):i.createCommentVNode("",!0),i.createElementVNode("span",ys,[i.withDirectives(i.createVNode(s,{name:"checkmark-sharp"},null,512),[[i.vShow,a.checked&&!r.indeterminate]]),i.withDirectives(i.createVNode(s,{class:i.normalizeClass("checkbox-undeterminate-icon"),name:"remove-sharp"},null,512),[[i.vShow,r.indeterminate]])]),e.labelPosition==="right"&&((d=e.label)!=null&&d.length)?(i.openBlock(),i.createElementBlock("span",vs,[e.required?(i.openBlock(),i.createElementBlock("span",bs,"*")):i.createCommentVNode("",!0),i.createTextVNode(" "+i.toDisplayString(e.label),1)])):i.createCommentVNode("",!0)])],16,hs)],10,fs)}const _r=_e(us,[["render",_s]]),E1="",$s={name:"IbToggle",model:{prop:"isChecked",event:"input"},props:{isChecked:{type:Boolean,required:!1},id:{type:String,default:()=>ht()},disabled:{type:Boolean,default:!1},name:{type:String,default:"active"},label:{type:String,default:""},error:{type:Boolean,default:!1},labelPosition:{type:String,default:"right"},helpMessage:{type:String,default:""},helpMessageOff:{type:String,default:""}},watch:{isChecked(t){this.checked=t}},data(){return{checked:this.isChecked}},methods:{onChange(){this.disabled||(this.checked=!this.checked,this.$emit("input",this.checked))}},computed:{classes(){return{"ib-toggle-container":!0,"has-error":this.error,"toggle-on":this.checked,"toggle-disabled":this.disabled,"label-position-left":this.labelPosition==="left"}}},components:{IbIcon:Le,IbTooltip:jt}},ws=["aria-checked","tabindex"],ks={class:"toggle-wrapper",ref:"wrapper"},Cs={class:"toggle",ref:"toggle"},Os=["name","checked","id","disabled"],Es=i.createElementVNode("span",{class:"toggle-slider round"},null,-1),Ss={key:0,class:"toggle-label"};function Ts(t,n,e,o,a,r){const s=i.resolveComponent("ib-icon"),d=i.resolveComponent("ib-tooltip");return i.openBlock(),i.createElementBlock("label",{role:"switch","aria-checked":a.checked,tabindex:e.disabled?-1:0,class:i.normalizeClass(r.classes),onKeypress:[n[2]||(n[2]=i.withKeys(i.withModifiers((...u)=>r.onChange&&r.onChange(...u),["prevent"]),["space"])),n[3]||(n[3]=i.withKeys(i.withModifiers((...u)=>r.onChange&&r.onChange(...u),["prevent"]),["enter"]))]},[i.createElementVNode("div",ks,[i.createElementVNode("div",Cs,[i.createElementVNode("input",{tabindex:"-1",type:"checkbox",value:"1",name:e.name,checked:a.checked,id:e.id,disabled:e.disabled,onClick:n[0]||(n[0]=(...u)=>r.onChange&&r.onChange(...u)),onInput:n[1]||(n[1]=i.withModifiers(()=>{},["stop"]))},null,40,Os),Es,i.createVNode(s,{class:"checked-icon",name:"checkmark"}),i.createVNode(s,{class:"unchecked-icon",name:"close"})],512)],512),e.label.length?(i.openBlock(),i.createElementBlock("span",Ss,i.toDisplayString(e.label),1)):i.createCommentVNode("",!0),e.helpMessage.length?(i.openBlock(),i.createBlock(d,{key:1,text:a.checked?e.helpMessage:e.helpMessageOff.length?e.helpMessageOff:e.helpMessage},null,8,["text"])):i.createCommentVNode("",!0)],42,ws)}const Ii=_e($s,[["render",Ts]]);function Mi(t){return t.scrollHeight>t.clientHeight}const S1="",Ns={name:"select-option",props:{option:{type:Object},name:String,parentAutoCheck:{type:Boolean,default:!1},isMultiple:{type:Boolean,default:!0},uid:{type:String,default:""},onlyEndNodes:{type:Boolean,default:!1},htmlTitle:{type:Boolean,default:!1},showInput:{type:Boolean,default:!0},isBookmarkable:{type:Boolean,default:!1},isBookmarked:{type:Boolean,default:!1},isToggle:{type:Boolean,default:!1}},mounted(){this.option.hasOwnProperty("children")&&this.option.children&&this.checkParent()},updated(){this.$nextTick(()=>{Mi(this.$el.querySelector(".option-label"))&&(this.showTooltip=!0)})},data(){return{showTooltip:!1}},methods:{onKeydown(t){t.keyCode===Ci&&(t.preventDefault(),this.onChange()),this.hasVisibleChildren&&(t.keyCode===Ua&&(this.option.isChildrenVisible=!0),t.keyCode===za&&(this.option.isChildrenVisible=!1))},onChange(){var t,n;!this.isMultiple&&!this.isChecked(this.option)&&((t=this.$refs.component)==null||t.onChange()),this.isMultiple&&((n=this.$refs.component)==null||n.onChange())},toggle(t,n=!0){this.check(this.option,t,!0,n)},check(t,n,e,o){this.$emit("check",t,n,e),o&&t.children&&t.children.forEach(a=>{this.check(a,n,!1,!0)})},toggleChildrenVisibility(){this.option.isChildrenVisible=!this.option.isChildrenVisible},checkChildren(t,n,e){e&&this.isMultiple&&this.$nextTick(()=>{this.checkParent()}),this.$emit("check",t,n,!1)},checkParent(){const t=this.option.children.filter(e=>e.checked).length,n=t>=this.option.children.length;(!this.option.checked&&n&&this.parentAutoCheck||this.option.checked&&!n)&&this.toggle(!this.option.checked,!1)},calculateChildren(t,n,e=!1){let o=0;return t.children&&t.children.forEach(a=>{(!n||n(a))&&o++,e&&(o+=this.calculateChildren(a,n,e))}),o},isChecked(t){if(this.hasChildren)if(this.childrenSelectedCount){if(this.childrenSelectedCount>0&&this.countOfAllChildren>this.childrenSelectedCount)return null}else return!1;return t.checked?!0:t.isIndeterminate?null:!1}},computed:{component(){return this.isMultiple&&this.isToggle?Ii:_r},hasChildren(){return!!(this.option.children&&this.option.children.length)},hasVisibleChildren(){return this.calculateChildren(this.option,t=>t.visible)},iconName(){return this.option.isChildrenVisible?"chevron-down":"chevron-forward"},id(){return this.uid+"_"+this.option.id},actualName(){return this.onlyEndNodes&&this.option.children&&this.option.children.length?"":this.name},childrenSelectedCount(){return this.calculateChildren(this.option,t=>t.checked,!0)},countOfAllChildren(){return this.calculateChildren(this.option,()=>!0,!0)}},components:{IbIcon:Le,List:mr,IbIconButton:ut},directives:{Tooltip:yr}},xs=["aria-selected","aria-label","id"],As={key:0,class:"option-label"},Ds={key:1,class:"option-label"},Is=["innerHTML"],Ms=["innerHTML"],Ps={key:2,class:"option-label"};function Bs(t,n,e,o,a,r){const s=i.resolveComponent("ib-icon"),d=i.resolveComponent("ib-icon-button"),u=i.resolveComponent("select-option"),p=i.resolveComponent("list"),h=i.resolveDirective("tooltip");return i.openBlock(),i.createElementBlock("li",null,[i.withDirectives((i.openBlock(),i.createElementBlock("div",{class:i.normalizeClass(["tree-select-option",{"tree-select-option-checked":r.isChecked(e.option),"tree-select-option-margin":r.hasVisibleChildren,active:e.option.isChildrenVisible,"is-multiple":e.isMultiple,"is-not-multiple":!e.isMultiple,"tree-select-option-toggle":this.isToggle&&this.isMultiple}]),tabindex:"0",role:"option","aria-selected":r.isChecked(e.option),"aria-label":e.option.title,id:"option-"+r.id,onKeydown:n[3]||(n[3]=i.withModifiers((...f)=>r.onKeydown&&r.onKeydown(...f),["self"])),onFocus:n[4]||(n[4]=f=>t.$emit("onFocus",`option-${r.id}`))},[i.withDirectives(i.createVNode(d,{"disabled-focus":!0,kind:"ghost",class:"toggle-children",onClick:r.toggleChildrenVisibility},{default:i.withCtx(()=>[i.createVNode(s,{name:r.iconName},null,8,["name"])]),_:1},8,["onClick"]),[[i.vShow,r.hasVisibleChildren]]),i.createElementVNode("div",{onClick:n[1]||(n[1]=i.withModifiers((...f)=>r.onChange&&r.onChange(...f),["prevent"])),class:i.normalizeClass({disabled:e.option.isDisabled,"tree-select-option-label":!0,"tree-select-option-has-children":r.hasVisibleChildren,active:!e.showInput&&e.option.checked})},[i.withDirectives((i.openBlock(),i.createBlock(i.resolveDynamicComponent(r.component),{ref:"component",tabindex:"-1","disable-focus":"","aria-label":e.option.title,name:r.actualName,value:e.option.id,id:"input"+r.id,"is-checked":r.isChecked(e.option),disabled:e.option.isDisabled,readonly:e.option.readonly,autocomplete:"off",autocorrect:"off",autocapitalize:"off",spellcheck:"false",onInput:r.toggle},null,40,["aria-label","name","value","id","is-checked","disabled","readonly","onInput"])),[[i.vShow,e.showInput]]),e.isBookmarkable?(i.openBlock(),i.createElementBlock("span",{key:0,class:i.normalizeClass("bookmarkable-option-title "+(e.isBookmarked?"bookmarked":""))},[r.hasChildren?(i.openBlock(),i.createElementBlock("span",Ds,i.toDisplayString(e.option.title),1)):(i.openBlock(),i.createElementBlock("span",As,[i.createTextVNode(i.toDisplayString(e.option.title)+" ",1),i.createVNode(s,{name:"star",onClick:n[0]||(n[0]=i.withModifiers(f=>t.$emit("toggle-bookmark",e.option),["stop","prevent"]))})]))],2)):e.htmlTitle?(i.openBlock(),i.createElementBlock(i.Fragment,{key:1},[r.hasChildren?(i.openBlock(),i.createElementBlock("span",{key:1,class:"option-label",innerHTML:e.option.title},null,8,Ms)):(i.openBlock(),i.createElementBlock("span",{key:0,class:"option-label",innerHTML:e.option.title},null,8,Is))],64)):(i.openBlock(),i.createElementBlock("span",Ps,i.toDisplayString(e.option.title),1))],2),r.hasChildren?i.withDirectives((i.openBlock(),i.createBlock(p,{key:0},{default:i.withCtx(()=>[(i.openBlock(!0),i.createElementBlock(i.Fragment,null,i.renderList(e.option.children,f=>i.withDirectives((i.openBlock(),i.createBlock(u,{key:f.value,option:f,name:e.name,"parent-auto-check":e.parentAutoCheck,"is-multiple":e.isMultiple,"show-input":e.showInput,onCheck:r.checkChildren,onToggleBookmark:n[2]||(n[2]=l=>t.$emit("toggle-bookmark",l)),uid:e.uid,"is-bookmarkable":e.isBookmarkable},null,8,["option","name","parent-auto-check","is-multiple","show-input","onCheck","uid","is-bookmarkable"])),[[i.vShow,f.visible]])),128))]),_:1},512)),[[i.vShow,r.hasVisibleChildren&&e.option.isChildrenVisible]]):i.createCommentVNode("",!0)],42,xs)),[[h,a.showTooltip?e.option.title:""]])])}const Ls=_e(Ns,[["render",Bs]]);var qe=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{};function jn(t){return t&&t.__esModule&&Object.prototype.hasOwnProperty.call(t,"default")?t.default:t}var Pi={exports:{}};/*!***************************************************
|
|
12
|
+
`;switch(e){case"bottomCenter":c=c+`left: ${r+l/2-d/2}px!important;
|
|
13
|
+
top: ${a+f+5}px!important;`;break;case"bottomLeft":c=c+`left: ${s-d-l/2+14}px!important;
|
|
14
|
+
top: ${a+f+5}px!important;`;break;case"bottomRight":c=c+`left: ${r+l/2-14}px!important;
|
|
15
|
+
top: ${a+f+5}px!important;`;break;case"topLeft":c=c+`left: ${s-d-l/2+14}px!important;
|
|
16
|
+
top: ${o-p+f-5}px!important;`;break;case"topRight":c=c+`left: ${r+l/2-14}px!important;
|
|
17
|
+
top: ${o-p+f-5}px!important;`;break;case"leftTop":c=c+`left: ${r-d-5}px!important;
|
|
18
|
+
top: ${a-p-u/2+f+12}px!important`;break;case"leftCenter":c=c+`left: ${r-d-5}px!important;
|
|
19
|
+
top: ${a+f-p/2-u/2}px!important;`;break;case"leftBottom":c=c+`left: ${r-d-5}px!important;
|
|
20
|
+
top: ${a+f-u/2-12}px!important;`;break;case"rightTop":c=c+`left: ${s+5}px!important;
|
|
21
|
+
top: ${a-p-u/2+f+12}px!important`;break;case"rightCenter":c=c+`left: ${s+5}px!important;
|
|
22
|
+
top: ${a+f-p/2-u/2}px!important;`;break;case"rightBottom":c=c+`left: ${s+5}px!important;
|
|
23
|
+
top: ${a+f-u/2-12}px!important`;break;default:c=c+`left: ${r+l/2-d/2}px!important;
|
|
24
|
+
top: ${o-p+f-5}px!important`;break}return c}getClassList(n){return n?wo[n]:wo.topCenter}}const Ht=new ko,mc=(t,n)=>{var a;Ht.getTooltipContainer()&&Ht.destroyTooltip();const e=Object.keys(n.modifiers)[0]||n.arg,o={title:((a=n.value)==null?void 0:a.title)||"",text:typeof n.value=="object"?n.value.text:n.value};Ht.createTooltip(t,o,e)},gc=(t,n)=>{const e=Ht.getId();if(n.getAttribute("aria-describedby")!==e)return;const o=Ht.getTooltipContainer();if(t.type==="blur"){n.contains(t.relatedTarget)||Ht.destroyTooltip(n);return}const a=n!==t.target&&!n.contains(t.target),r=o!==t.target&&!(o!=null&&o.contains(t.target));a&&r&&Ht.destroyTooltip(n)},Co=(t,n)=>{t.__tooltip_create=()=>mc(t,n),t.__tooltip_destroy=e=>gc(e,t),t.addEventListener("mouseenter",t.__tooltip_create),document.addEventListener("mousemove",t.__tooltip_destroy),t.addEventListener("focus",t.__tooltip_create),t.addEventListener("blur",t.__tooltip_destroy,!0)},Oo=t=>{Ht.destroyTooltip(t),t.removeEventListener("mouseenter",t.__tooltip_create),document.removeEventListener("mousemove",t.__tooltip_destroy),t.removeEventListener("focus",t.__tooltip_create),t.removeEventListener("blur",t.__tooltip_destroy,!0)},Wt={mounted(t,n){Co(t,n)},updated(t,n){Oo(t),Co(t,n)},beforeUnmount(t){Oo(t)}},mp="",yc={name:"IbSorting",props:{tooltipTitle:{type:String,default:""},hideSortingButton:{type:Boolean,default:!1},tooltipText:{type:String},tooltipPosition:{type:String},tooltipIconPosition:{type:String},tooltipIconSorting:{type:String},toggleTipTitle:{type:String},title:{type:String,default:""},sort:{type:String,default:null},view:{type:String,required:!0},disable:{type:Boolean,default:!1},tableName:{type:String,required:!0}},mounted(){this.$globalEvents.$on(`sorting:update:${this.tableName}`,t=>{this.$el.contains(t.$el)||(this.currentTypeSort=null)})},data(){return{isOpenToggleTip:!1,sortingTypes:pc,sortingTypesView:hc,currentTypeSort:this.sort}},methods:{clickHandler(){this.currentTypeSort?this.currentTypeSort===this.sortingTypes.TYPE_ASC?this.currentTypeSort=this.sortingTypes.TYPE_DESC:this.currentTypeSort=null:this.currentTypeSort=this.sortingTypes.TYPE_ASC,this.updateTypeSorting()},updateTypeSorting(){this.$globalEvents.$emit(`sorting:update:${this.tableName}`,this),this.$emit("update-sorting",this.currentTypeSort)}},computed:{iconType(){return this.currentTypeSort===this.sortingTypes.TYPE_ASC?"arrow-up":this.currentTypeSort===this.sortingTypes.TYPE_DESC?"arrow-down":this.view!==this.sortingTypesView.GRID_VIEW?"swap-vertical":null},sortingTooltipPosition(){return this.hasToggleTip?"bottomCenter":this.tooltipPosition},sortingTooltipContent(){var t;return this.hasToggleTip?lang("click_to_view_details",(t=this.langComponents)==null?void 0:t.COMPONENT_SYSTEM):this.tooltipContent},tooltipIconText(){var t,n,e;return this.currentTypeSort===this.sortingTypes.TYPE_ASC?lang("sort_descending",(t=this.langComponents)==null?void 0:t.COMPONENT_SELECT):this.currentTypeSort===this.sortingTypes.TYPE_DESC?lang("reset_sorting",(n=this.langComponents)==null?void 0:n.COMPONENT_SELECT):this.view!==this.sortingTypesView.GRID_VIEW?lang("sort_ascending",(e=this.langComponents)==null?void 0:e.COMPONENT_SELECT):""},tooltipContent(){return this.tooltipTitle.length?{title:this.tooltipTitle,text:this.tooltipText}:this.tooltipText},hasToggleTip(){return this.toggleTipTitle&&this.$slots.toggleTipBody&&this.$slots.toggleTipButtons}},directives:{Tooltip:Wt},components:{IbIcon:Le,IbIconButton:ut,IbToggleTip:mo}},bc={class:"sorting-wrapper"},vc=["name"],_c=["aria-label"];function $c(t,n,e,o,a,r){var p;const s=i.resolveComponent("ib-toggle-tip"),l=i.resolveComponent("ib-icon-button"),u=i.resolveComponent("ib-icon"),d=i.resolveDirective("tooltip");return i.openBlock(),i.createElementBlock("div",bc,[e.view===a.sortingTypesView.TABLE_VIEW?(i.openBlock(),i.createElementBlock("div",{key:0,class:i.normalizeClass(["table-sorting-wrapper",{active:a.currentTypeSort,disabled:e.disable}])},[i.withDirectives((i.openBlock(),i.createElementBlock("button",{class:i.normalizeClass(["sorting-label",{"sorting-label-active":a.isOpenToggleTip&&r.hasToggleTip,"has-action":((p=e.tooltipText)==null?void 0:p.length)||r.hasToggleTip}]),type:"button",onClick:n[0]||(n[0]=f=>a.isOpenToggleTip=!a.isOpenToggleTip)},[i.createTextVNode(i.toDisplayString(e.title),1)],2)),[[d,r.sortingTooltipContent,r.sortingTooltipPosition]]),r.hasToggleTip?(i.openBlock(),i.createBlock(s,{key:0,position:"bottom-center","is-open":a.isOpenToggleTip,title:e.toggleTipTitle,onClose:n[1]||(n[1]=f=>a.isOpenToggleTip=!1)},{buttons:i.withCtx(()=>[i.renderSlot(t.$slots,"toggleTipButtons",{},void 0,!0)]),default:i.withCtx(()=>[i.renderSlot(t.$slots,"toggleTipBody",{},void 0,!0)]),_:3},8,["is-open","title"])):i.createCommentVNode("",!0),e.hideSortingButton?i.createCommentVNode("",!0):i.withDirectives((i.openBlock(),i.createBlock(l,{key:1,kind:"white",size:"s",onClick:r.clickHandler},{default:i.withCtx(()=>[i.createElementVNode("ion-icon",{name:r.iconType},null,8,vc)]),_:1},8,["onClick"])),[[d,r.tooltipIconText,e.tooltipIconPosition]])],2)):i.withDirectives((i.openBlock(),i.createElementBlock("button",{key:1,class:i.normalizeClass(["sorting-button",{active:a.currentTypeSort,disabled:e.disable}]),type:"button",onClick:n[2]||(n[2]=(...f)=>r.clickHandler&&r.clickHandler(...f)),"aria-label":e.sort},[i.createTextVNode(i.toDisplayString(e.title)+" ",1),r.iconType?(i.openBlock(),i.createBlock(u,{key:0,name:r.iconType},null,8,["name"])):i.createCommentVNode("",!0)],10,_c)),[[d,e.tooltipText,e.tooltipPosition]])])}const wc=_e(yc,[["render",$c],["__scopeId","data-v-0c1b5f2e"]]),gp="",kc={name:"IbBreadcrumbs",props:{items:{type:Array,default:()=>[]},tooltipTextContext:{type:String}},computed:{last(){return this.items.length?this.items.length-1:null},initContextMenu(){return this.items.length>4},setItemsContextMenu(){return this.items.slice(0,-3)}},components:{IbIcon:Le,IbIconButton:ut,IbDropdownItem:jr,IbDropdownList:or,IbTooltip:ln}},Cc={"aria-label":"breadcrumb"},Oc={class:"breadcrumb"},Ec=["href"],Sc={key:1},xc=["href"];function Tc(t,n,e,o,a,r){const s=i.resolveComponent("router-link"),l=i.resolveComponent("ib-icon"),u=i.resolveComponent("ib-tooltip"),d=i.resolveComponent("ib-icon-button"),p=i.resolveComponent("ib-dropdown-item"),f=i.resolveComponent("ib-dropdown-list");return i.openBlock(),i.createElementBlock("nav",Cc,[i.createElementVNode("ul",Oc,[(i.openBlock(!0),i.createElementBlock(i.Fragment,null,i.renderList(e.items,(c,h)=>(i.openBlock(),i.createElementBlock("li",{class:i.normalizeClass(["breadcrumb-item",h===r.last?"active":""]),"aria-current":"page",key:h},[h!==r.last&&h>e.items.length-4||h===0?(i.openBlock(),i.createElementBlock(i.Fragment,{key:0},[c.url?(i.openBlock(),i.createElementBlock("a",{key:0,class:"ib-link",href:c.url},i.toDisplayString(c.title),9,Ec)):(i.openBlock(),i.createBlock(s,{key:1,class:"ib-link",to:c.to},{default:i.withCtx(()=>[i.createTextVNode(i.toDisplayString(c.title),1)]),_:2},1032,["to"]))],64)):i.createCommentVNode("",!0),h===r.last?(i.openBlock(),i.createElementBlock("p",Sc,i.toDisplayString(c.title),1)):i.createCommentVNode("",!0),r.initContextMenu&&h===e.items.length-4?(i.openBlock(),i.createBlock(f,{key:2,horizontal:"center"},{trigger:i.withCtx(()=>[i.createVNode(d,{kind:"ghost"},{default:i.withCtx(()=>[i.createVNode(l,{name:"ellipsis-horizontal-sharp"}),e.tooltipTextContext?(i.openBlock(),i.createBlock(u,{key:0,text:e.tooltipTextContext},null,8,["text"])):i.createCommentVNode("",!0)]),_:1})]),body:i.withCtx(()=>[(i.openBlock(!0),i.createElementBlock(i.Fragment,null,i.renderList(r.setItemsContextMenu,(v,m)=>(i.openBlock(),i.createBlock(p,{key:m},{default:i.withCtx(()=>[i.createElementVNode("a",{class:"context-breadcrums",href:v.url},i.toDisplayString(v.title),9,xc)]),_:2},1024))),128))]),_:2},1024)):i.createCommentVNode("",!0),h!==r.last&&h>e.items.length-5||h===0?(i.openBlock(),i.createBlock(l,{key:3,name:"chevron-forward-outline"})):i.createCommentVNode("",!0)],2))),128))])])}const Nc=_e(kc,[["render",Tc],["__scopeId","data-v-3563a1d2"]]),yp="",Ac={name:"IbLabel",props:{for:{type:String},required:{type:Boolean,default:!1},infoText:{type:[String,Object],default:""},tooltipPosition:{type:String},disabled:{type:Boolean,default:!1}},mounted(){this.$globalEvents.$on(`label:disabled:${this.for}`,t=>{this.idDisabled=t})},data(){return{idDisabled:this.disabled}},watch:{disabled(t){this.idDisabled=t}},computed:{classes(){const t=["ib-label"];return this.infoText.length&&t.push("has-info-text"),this.idDisabled&&t.push("label-disabled"),t}},components:{IbIconButton:ut,IbIcon:Le},directives:{Tooltip:Wt}},Dc=["for"],Pc={key:0,class:"required"};function Ic(t,n,e,o,a,r){const s=i.resolveComponent("ib-icon"),l=i.resolveComponent("ib-icon-button"),u=i.resolveDirective("tooltip");return i.openBlock(),i.createElementBlock("label",{class:i.normalizeClass(r.classes),for:e.for},[e.required?(i.openBlock(),i.createElementBlock("span",Pc,"* ")):i.createCommentVNode("",!0),i.renderSlot(t.$slots,"default",{},void 0,!0),e.infoText.length||Object.keys(e.infoText).length?i.withDirectives((i.openBlock(),i.createBlock(l,{key:1,size:"xs",class:"info-button",kind:"ghost",type:"button"},{default:i.withCtx(()=>[i.createVNode(s,{name:"information-circle-outline"})]),_:1})),[[u,e.infoText,e.tooltipPosition]]):i.createCommentVNode("",!0)],10,Dc)}const kn=_e(Ac,[["render",Ic],["__scopeId","data-v-20191b6d"]]),Vr={text:"text",password:"password",email:"email",number:"number"},bp="",Mc={name:"IbInput",props:{type:{type:String,default:Vr.text,validator:t=>Object.keys(Vr).includes(t)},disabled:{type:Boolean,required:!1,default:!1},error:{type:Boolean,default:!1},errorMessage:{type:String,default:""},id:{type:[String],default(){return pt()}},debounce:{type:[Number,String]},showIcon:{type:Boolean,default:!1},showClearButton:{type:Boolean,default:!0},clearButtonMessage:{type:String,default:""},settingsButtonMessage:{type:String,default:""},showPasswordMessage:{type:String,default:""},hidePasswordMessage:{type:String,default:""},value:{type:[String,Number],default:""},modelValue:{type:[String,Number]},settingsVerticalPosition:{type:String,default:rr.bottom},settingsHorizontalPosition:{type:String,default:wn.right},readonly:{type:Boolean,default:!1},autocomplete:{type:String},isSuccess:{type:Boolean,default:!1},hideNumberActions:{type:Boolean,default:!1},decrementButtonMessage:{type:String,default:"Decrement"},incrementButtonMessage:{type:String,default:"Increment"},step:{type:Number,default:1},min:{type:Number,default:0},max:{type:Number,default:1/0}},data(){return{actualValue:this.modelValue||this.value,showPassword:!1}},mounted(){setTimeout(()=>{this.$globalEvents.$emit(`label:disabled:${this.id}`,this.disabled)},10)},methods:{toggleShowPassword(){this.showPassword=!this.showPassword},clearInput(){this.actualValue="",this.$emit("update:modelValue",this.actualValue),this.$emit("input",this.actualValue),this.$emit("clear")},onBlur(){this.$emit("blur",this.actualValue)},onFocus(){this.$emit("focus",this.actualValue)},onInput(){this.debounce?this.delayedInput(this.actualValue):(this.$emit("update:modelValue",this.actualValue),this.$emit("input",this.actualValue))},decrement(){this.actualValue>this.min&&(this.actualValue=+this.actualValue-this.step),this.$emit("update:modelValue",this.actualValue),this.$emit("input",this.actualValue),this.$emit("blur",this.actualValue)},increment(){this.actualValue<this.max&&(this.actualValue=+this.actualValue+this.step),this.$emit("update:modelValue",this.actualValue),this.$emit("input",this.actualValue),this.$emit("blur",this.actualValue)},delayedInput(t){this.timer&&(clearTimeout(this.timer),this.timer=null),this.timer=setTimeout(()=>{this.$emit("update:modelValue",t),this.$emit("input",t)},this.debounce)},focus(){this.$refs.field.focus()}},computed:{hasSettings(){return!!this.$slots.settings},hasValue(){var t;return(t=this.actualValue)==null?void 0:t.toString().length},classes(){const t=["ib-input"];return this.hasErrorState&&t.push("ib-error"),this.showIcon&&t.push("ib-input-has-icon"),t},attrs(){let t=Pr({...this.$attrs},["onInput","onBlur"]);return t.type=this.type===Vr.password?this.showPassword?"text":"password":this.type,t},hasErrorState(){return this.error||this.errorMessage.length}},watch:{value(t){this.actualValue=t},modelValue(t){this.actualValue=t},disabled(t){this.$globalEvents.$emit(`label:disabled:${this.id}`,t)}},emits:["input","blur","focus","clear","update:modelValue",`label:disabled:${globalThis==null?void 0:globalThis.id}`],components:{IbAlert:Ft,IbIconButton:ut,IbIcon:Le,IbDropdown:ir},directives:{Tooltip:Wt},inheritAttrs:!1},Bc=["aria-invalid","readonly","disabled","id","autocomplete","min","max","step"],Lc={key:3,class:"number-button-group"},Rc={class:"divider"},jc={class:"settings-wrapper"};function Vc(t,n,e,o,a,r){const s=i.resolveComponent("ib-alert"),l=i.resolveComponent("ib-icon"),u=i.resolveComponent("ib-icon-button"),d=i.resolveComponent("ib-dropdown"),p=i.resolveDirective("tooltip");return i.openBlock(),i.createElementBlock("div",null,[e.errorMessage?(i.openBlock(),i.createBlock(s,{key:0},{default:i.withCtx(()=>[i.createTextVNode(i.toDisplayString(e.errorMessage),1)]),_:1})):i.createCommentVNode("",!0),i.createElementVNode("div",{class:i.normalizeClass(["ib-input-wrapper",{"has-settings":r.hasSettings,success:e.isSuccess,"numbers-type":e.type==="number"&&!e.hideNumberActions}])},[e.showIcon?(i.openBlock(),i.createBlock(l,{key:0,class:"icon-search",name:"search-outline"})):i.createCommentVNode("",!0),i.withDirectives(i.createElementVNode("input",i.mergeProps(r.attrs,{"onUpdate:modelValue":n[0]||(n[0]=f=>a.actualValue=f),ref:"field","aria-invalid":!!r.hasErrorState,readonly:e.readonly,disabled:e.disabled,id:e.id,autocomplete:e.autocomplete,class:r.classes,min:e.min,max:e.max,step:e.step,onInput:n[1]||(n[1]=f=>r.onInput(f)),onBlur:n[2]||(n[2]=f=>r.onBlur(f)),onFocus:n[3]||(n[3]=f=>r.onFocus(f))}),null,16,Bc),[[i.vModelDynamic,a.actualValue,void 0,{trim:!0}]]),e.type!=="password"&&e.showClearButton?i.withDirectives((i.openBlock(),i.createBlock(u,{key:1,kind:"ghost",class:"button-clear",disabled:e.readonly||e.disabled,"help-text":e.clearButtonMessage,"prevent-default":"",type:"button",onClick:r.clearInput,onKeypress:i.withKeys(r.clearInput,["enter"])},{default:i.withCtx(()=>[i.createVNode(l,{name:"close-outline"})]),_:1},8,["disabled","help-text","onClick","onKeypress"])),[[i.vShow,r.hasValue]]):i.createCommentVNode("",!0),e.isSuccess?(i.openBlock(),i.createBlock(l,{key:2,class:"succes-checkmark",name:"checkmark-circle"})):i.createCommentVNode("",!0),e.type==="number"&&!e.hideNumberActions?(i.openBlock(),i.createElementBlock("div",Lc,[i.withDirectives(i.createElementVNode("div",Rc,null,512),[[i.vShow,r.hasValue]]),i.withDirectives((i.openBlock(),i.createBlock(u,{kind:"ghost",class:"button-decrement",disabled:e.readonly||e.disabled,"prevent-default":"",type:"button","aria-label":"Decrement value",onBlur:r.onBlur,onClick:r.decrement,onKeypress:i.withKeys(r.decrement,["enter"])},{default:i.withCtx(()=>[i.createVNode(l,{name:"remove-outline"})]),_:1},8,["disabled","onBlur","onClick","onKeypress"])),[[p,e.decrementButtonMessage]]),i.withDirectives((i.openBlock(),i.createBlock(u,{kind:"ghost",class:"button-increment",disabled:e.readonly||e.disabled,"prevent-default":"",type:"button","aria-label":"Increment value",onBlur:r.onBlur,onClick:r.increment,onKeypress:i.withKeys(r.increment,["enter"])},{default:i.withCtx(()=>[i.createVNode(l,{name:"add-outline"})]),_:1},8,["disabled","onBlur","onClick","onKeypress"])),[[p,e.incrementButtonMessage]])])):i.createCommentVNode("",!0),e.type==="password"?i.withDirectives((i.openBlock(),i.createBlock(u,{key:4,kind:"ghost",class:"toggle-password","prevent-default":"",type:"button",disabled:e.disabled,"help-text":a.showPassword?e.hidePasswordMessage:e.showPasswordMessage,onClick:i.withModifiers(r.toggleShowPassword,["prevent"])},{default:i.withCtx(()=>[i.createVNode(l,{name:a.showPassword?"eye-off-outline":"eye-outline"},null,8,["name"])]),_:1},8,["disabled","help-text","onClick"])),[[i.vShow,r.hasValue]]):i.createCommentVNode("",!0),r.hasSettings?(i.openBlock(),i.createBlock(d,{key:5,class:"settings-dropdown-wrapper",horizontal:e.settingsHorizontalPosition,vertical:e.settingsVerticalPosition},{trigger:i.withCtx(()=>[i.createVNode(u,{"prevent-default":"","help-text":e.settingsButtonMessage,class:"options-trigger",kind:"ghost"},{default:i.withCtx(()=>[i.createVNode(l,{name:"options"})]),_:1},8,["help-text"])]),body:i.withCtx(()=>[i.createElementVNode("div",jc,[i.renderSlot(t.$slots,"settings",{},void 0,!0)])]),_:3},8,["horizontal","vertical"])):i.createCommentVNode("",!0)],2)])}const qr=_e(Mc,[["render",Vc],["__scopeId","data-v-3b442fb6"]]),vp="",qc={name:"IbCheckbox",model:{event:"input"},props:{label:String,error:{type:[Boolean,null],default:!1},name:String,id:{type:String,default(){return pt()}},value:{type:[String,Number]},modelValue:{type:[Boolean,String]},isChecked:{type:Boolean,default:!1},readonly:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1},disableFocus:{type:Boolean,default:!1},required:{type:Boolean,default:!1},labelPosition:{type:String,default:"right"}},watch:{isChecked(t){this.checked=t},modelValue(t){this.$emit("update:modelValue",this.modelValue),this.checked=t==="0"?!1:!!t}},data(){return{checked:this.modelValue?this.modelValue==="0"?!1:!!this.modelValue:this.isChecked}},methods:{onChange(t){this.disabled||this.readonly||(this.checked=!this.checked,this.$emit("update:modelValue",this.checked),this.$emit("input",this.checked))}},computed:{classes(){return{"ib-checkbox":!0,"ib-has-error":this.error,"ib-checkbox-filled":this.checked,"ib-checkbox-disabled":this.disabled,"ib-checkbox-readonly":this.readonly,"ib-checkbox-indeterminate":this.indeterminate}},indeterminate(){return this.isChecked===null},attrs(){const t={...Pr({...this.$attrs})};return delete t.class,t.class=this.classes,t}},components:{IbIcon:Le},inheritAttrs:!1},Fc=["for","tabindex","aria-checked"],Hc=["name","id","value","disabled","required"],zc=["name","disabled","required"],Uc={class:"ib-checkbox-body"},Kc={key:0,class:"required"},Gc={class:"ib-checkbox-input"},Wc={key:1,class:"ib-checkbox-label"},Yc={key:0,class:"required"};function Zc(t,n,e,o,a,r){var l;const s=i.resolveComponent("ib-icon");return i.openBlock(),i.createElementBlock("div",{class:i.normalizeClass(["ib-checkbox-wrapper",this.$attrs.class])},[i.createElementVNode("label",i.mergeProps(r.attrs,{role:"checkbox",for:e.id,tabindex:e.disabled|e.disableFocus?-1:0,"aria-checked":!!a.checked,onClick:n[2]||(n[2]=i.withModifiers((...u)=>r.onChange&&r.onChange(...u),["prevent","stop"])),onKeypress:n[3]||(n[3]=i.withModifiers((...u)=>r.onChange&&r.onChange(...u),["prevent"]))}),[i.withDirectives(i.createElementVNode("input",{tabindex:"-1",type:"checkbox",name:e.name,id:e.id,value:e.value??1,disabled:e.disabled,required:e.required,"onUpdate:modelValue":n[0]||(n[0]=u=>a.checked=u),onClick:n[1]||(n[1]=(...u)=>r.onChange&&r.onChange(...u))},null,8,Hc),[[i.vModelCheckbox,a.checked]]),!e.value&&!a.checked?(i.openBlock(),i.createElementBlock("input",{key:0,value:"0",type:"hidden",name:e.name,disabled:e.disabled,required:e.required},null,8,zc)):i.createCommentVNode("",!0),i.createElementVNode("div",Uc,[e.labelPosition==="left"&&e.label.length?(i.openBlock(),i.createElementBlock("span",{key:0,class:i.normalizeClass(["ib-checkbox-label",{"ib-checkbox-label-left":e.labelPosition==="left"}])},[e.required?(i.openBlock(),i.createElementBlock("span",Kc,"*")):i.createCommentVNode("",!0),i.createTextVNode(" "+i.toDisplayString(e.label),1)],2)):i.createCommentVNode("",!0),i.createElementVNode("span",Gc,[i.withDirectives(i.createVNode(s,{name:"checkmark-sharp"},null,512),[[i.vShow,a.checked&&!r.indeterminate]]),i.withDirectives(i.createVNode(s,{class:i.normalizeClass("checkbox-undeterminate-icon"),name:"remove-sharp"},null,512),[[i.vShow,r.indeterminate]])]),e.labelPosition==="right"&&((l=e.label)!=null&&l.length)?(i.openBlock(),i.createElementBlock("span",Wc,[e.required?(i.openBlock(),i.createElementBlock("span",Yc,"*")):i.createCommentVNode("",!0),i.createTextVNode(" "+i.toDisplayString(e.label),1)])):i.createCommentVNode("",!0)])],16,Fc)],2)}const Fr=_e(qc,[["render",Zc],["__scopeId","data-v-83ac97df"]]),_p="",Jc={name:"IbToggle",model:{prop:"isChecked",event:"input"},props:{isChecked:{type:Boolean,required:!1},id:{type:String,default:()=>pt()},disabled:{type:Boolean,default:!1},name:{type:String,default:"active"},label:{type:String,default:""},error:{type:Boolean,default:!1},labelPosition:{type:String,default:"right"},helpMessage:{type:String,default:""},helpMessageOff:{type:String,default:""}},watch:{isChecked(t){this.checked=t}},data(){return{checked:this.isChecked}},methods:{onChange(){this.disabled||(this.checked=!this.checked,this.$emit("input",this.checked))}},computed:{classes(){return{"ib-toggle-container":!0,"has-error":this.error,"toggle-on":this.checked,"toggle-disabled":this.disabled,"label-position-left":this.labelPosition==="left"}}},components:{IbIcon:Le,IbTooltip:ln}},Xc=["aria-checked","tabindex"],Qc={class:"toggle-wrapper",ref:"wrapper"},ed={class:"toggle",ref:"toggle"},td=["name","checked","id","disabled"],nd=i.createElementVNode("span",{class:"toggle-slider round"},null,-1),rd={key:0,class:"toggle-label"};function id(t,n,e,o,a,r){const s=i.resolveComponent("ib-icon"),l=i.resolveComponent("ib-tooltip");return i.openBlock(),i.createElementBlock("label",{role:"switch","aria-checked":a.checked,tabindex:e.disabled?-1:0,class:i.normalizeClass(r.classes),onKeypress:[n[2]||(n[2]=i.withKeys(i.withModifiers((...u)=>r.onChange&&r.onChange(...u),["prevent"]),["space"])),n[3]||(n[3]=i.withKeys(i.withModifiers((...u)=>r.onChange&&r.onChange(...u),["prevent"]),["enter"]))]},[i.createElementVNode("div",Qc,[i.createElementVNode("div",ed,[i.createElementVNode("input",{tabindex:"-1",type:"checkbox",value:"1",name:e.name,checked:a.checked,id:e.id,disabled:e.disabled,onClick:n[0]||(n[0]=(...u)=>r.onChange&&r.onChange(...u)),onInput:n[1]||(n[1]=i.withModifiers(()=>{},["stop"]))},null,40,td),nd,i.createVNode(s,{class:"checked-icon",name:"checkmark"}),i.createVNode(s,{class:"unchecked-icon",name:"close"})],512)],512),e.label.length?(i.openBlock(),i.createElementBlock("span",rd,i.toDisplayString(e.label),1)):i.createCommentVNode("",!0),e.helpMessage.length?(i.openBlock(),i.createBlock(l,{key:1,text:a.checked?e.helpMessage:e.helpMessageOff.length?e.helpMessageOff:e.helpMessage},null,8,["text"])):i.createCommentVNode("",!0)],42,Xc)}const Eo=_e(Jc,[["render",id]]);function So(t){return t.scrollHeight>t.clientHeight}const $p="",od={name:"select-option",props:{option:{type:Object},name:String,parentAutoCheck:{type:Boolean,default:!1},isMultiple:{type:Boolean,default:!0},uid:{type:String,default:""},onlyEndNodes:{type:Boolean,default:!1},htmlTitle:{type:Boolean,default:!1},showInput:{type:Boolean,default:!0},isBookmarkable:{type:Boolean,default:!1},isBookmarked:{type:Boolean,default:!1},isToggle:{type:Boolean,default:!1},alphabeticStyle:{type:Boolean,default:!1}},mounted(){this.option.hasOwnProperty("children")&&this.option.children&&this.checkParent(),this.option.showTooltipByDefault&&(this.showTooltip=!0)},updated(){this.$nextTick(()=>{this.option.showTooltipByDefault?this.showTooltip=!0:So(this.$el.querySelector(".option-label"))&&(this.showTooltip=!0)})},data(){return{showTooltip:!1,generateUID:pt}},methods:{onKeydown(t){t.keyCode===go&&(t.preventDefault(),this.onChange()),this.hasVisibleChildren&&(t.keyCode===ys&&(this.option.isChildrenVisible=!0),t.keyCode===gs&&(this.option.isChildrenVisible=!1))},onChange(){var t,n;!this.isMultiple&&!this.isChecked(this.option)&&((t=this.$refs.component)==null||t.onChange()),this.isMultiple&&((n=this.$refs.component)==null||n.onChange())},toggle(t,n=!0){this.check(this.option,t,!0,n)},check(t,n,e,o){if(!this.isMultiple&&this.hasVisibleChildren){this.toggleChildrenVisibility();return}this.$emit("check",t,n,e),o&&t.children&&t.children.forEach(a=>{this.check(a,n,!1,!0)})},toggleChildrenVisibility(){this.option.isChildrenVisible=!this.option.isChildrenVisible},checkChildren(t,n,e){e&&this.isMultiple&&this.$nextTick(()=>{this.checkParent()}),this.$emit("check",t,n,!1)},checkParent(){const t=this.option.children.filter(e=>e.checked).length,n=t>=this.option.children.length;(!this.option.checked&&n&&this.parentAutoCheck||this.option.checked&&!n)&&this.toggle(!this.option.checked,!1)},calculateChildren(t,n,e=!1){let o=0;return t.children&&t.children.forEach(a=>{(!n||n(a))&&o++,e&&(o+=this.calculateChildren(a,n,e))}),o},isChecked(t){if(this.hasChildren){if(this.childrenSelectedCount===this.countOfAllChildren)return!0;if(this.childrenSelectedCount>0&&this.countOfAllChildren>this.childrenSelectedCount)return null}return t.checked?!0:t.isIndeterminate?null:!1}},computed:{component(){return this.isMultiple&&this.isToggle?Eo:Fr},hasChildren(){return!!(this.option.children&&this.option.children.length)},hasVisibleChildren(){return this.calculateChildren(this.option,t=>t.visible)},iconName(){return this.option.isChildrenVisible?"chevron-down":"chevron-forward"},id(){return this.uid+"_"+this.option.id},actualName(){return this.onlyEndNodes&&this.option.children&&this.option.children.length?"":this.name},childrenSelectedCount(){return this.calculateChildren(this.option,t=>t.checked,!0)},countOfAllChildren(){return this.calculateChildren(this.option,()=>!0,!0)}},components:{IbIcon:Le,List:Rr,IbIconButton:ut},directives:{Tooltip:Wt}},ad=["aria-selected","aria-label","id"],ld={key:0,class:"bookmarkable-option-content"},sd={class:"option-label"},cd={key:1,class:"option-label"},dd=["innerHTML"],ud=["innerHTML"],fd={key:2,class:"option-label"};function hd(t,n,e,o,a,r){const s=i.resolveComponent("ib-icon"),l=i.resolveComponent("ib-icon-button"),u=i.resolveComponent("select-option"),d=i.resolveComponent("list"),p=i.resolveDirective("tooltip");return i.openBlock(),i.createElementBlock("li",null,[i.withDirectives((i.openBlock(),i.createElementBlock("div",{class:i.normalizeClass(["tree-select-option",{"tree-select-option-checked":r.isChecked(e.option),"tree-select-option-margin":r.hasVisibleChildren,active:e.option.isChildrenVisible,"is-multiple":e.isMultiple,"is-not-multiple":!e.isMultiple,"has-icon":e.option.icon,"tree-select-option-toggle":this.isToggle&&this.isMultiple,"alphabetic-option":e.alphabeticStyle}]),tabindex:"0",role:"option","aria-selected":r.isChecked(e.option),"aria-label":e.option.title,id:"option-"+r.id,onKeydown:n[3]||(n[3]=i.withModifiers((...f)=>r.onKeydown&&r.onKeydown(...f),["self"])),onFocus:n[4]||(n[4]=f=>t.$emit("onFocus",`option-${r.id}`))},[i.withDirectives(i.createVNode(l,{"disabled-focus":!0,kind:"ghost",class:"toggle-children",onClick:r.toggleChildrenVisibility},{default:i.withCtx(()=>[i.createVNode(s,{name:r.iconName},null,8,["name"])]),_:1},8,["onClick"]),[[i.vShow,r.hasVisibleChildren]]),i.createElementVNode("div",{onClick:n[1]||(n[1]=i.withModifiers((...f)=>r.onChange&&r.onChange(...f),["prevent"])),class:i.normalizeClass({disabled:e.option.isDisabled,"tree-select-option-label":!0,"tree-select-option-has-children":r.hasVisibleChildren,active:!e.showInput&&e.option.checked})},[i.withDirectives((i.openBlock(),i.createBlock(i.resolveDynamicComponent(r.component),{ref:"component",tabindex:"-1","disable-focus":"","aria-label":e.option.title,name:r.actualName,value:e.option.id,id:"input"+r.id+a.generateUID(),"is-checked":r.isChecked(e.option),disabled:e.option.isDisabled,readonly:e.option.readonly,autocomplete:"off",autocorrect:"off",autocapitalize:"off",spellcheck:"false",onInput:r.toggle},null,40,["aria-label","name","value","id","is-checked","disabled","readonly","onInput"])),[[i.vShow,e.showInput]]),e.isBookmarkable?(i.openBlock(),i.createElementBlock("span",{key:0,class:i.normalizeClass("bookmarkable-option-title "+(e.isBookmarked?"bookmarked":""))},[r.hasChildren?(i.openBlock(),i.createElementBlock("span",cd,i.toDisplayString(e.option.title),1)):(i.openBlock(),i.createElementBlock("div",ld,[i.createElementVNode("span",sd,i.toDisplayString(e.option.title),1),i.withDirectives((i.openBlock(),i.createBlock(l,{onClick:n[0]||(n[0]=i.withModifiers(f=>t.$emit("toggle-bookmark",e.option),["stop","prevent"])),kind:"ghost"},{default:i.withCtx(()=>[i.createVNode(s,{name:e.isBookmarked?"star":"star-outline"},null,8,["name"])]),_:1})),[[p,t.lang(e.isBookmarked?"unpin":"pin_to_top","select")]])]))],2)):e.htmlTitle?(i.openBlock(),i.createElementBlock(i.Fragment,{key:1},[r.hasChildren?(i.openBlock(),i.createElementBlock("span",{key:1,class:"option-label",innerHTML:e.option.title},null,8,ud)):(i.openBlock(),i.createElementBlock("span",{key:0,class:"option-label",innerHTML:e.option.title},null,8,dd))],64)):(i.openBlock(),i.createElementBlock("span",fd,[e.option.icon?(i.openBlock(),i.createBlock(s,{key:0,name:e.option.icon},null,8,["name"])):i.createCommentVNode("",!0),i.createTextVNode(" "+i.toDisplayString(e.option.title),1)]))],2),r.hasChildren?i.withDirectives((i.openBlock(),i.createBlock(d,{key:0},{default:i.withCtx(()=>[(i.openBlock(!0),i.createElementBlock(i.Fragment,null,i.renderList(e.option.children,f=>i.withDirectives((i.openBlock(),i.createBlock(u,{key:f.value,option:f,name:e.name,"parent-auto-check":e.parentAutoCheck,"is-multiple":e.isMultiple,"show-input":e.showInput,onCheck:r.checkChildren,onToggleBookmark:n[2]||(n[2]=c=>t.$emit("toggle-bookmark",c)),uid:e.uid,"is-bookmarkable":e.isBookmarkable},null,8,["option","name","parent-auto-check","is-multiple","show-input","onCheck","uid","is-bookmarkable"])),[[i.vShow,f.visible]])),128))]),_:1},512)),[[i.vShow,r.hasVisibleChildren&&e.option.isChildrenVisible]]):i.createCommentVNode("",!0)],42,ad)),[[p,a.showTooltip?e.option.isDisabled?e.option.disableTooltip:e.option.title:""]])])}const pd=_e(od,[["render",hd]]);var je=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{};function Cn(t){return t&&t.__esModule&&Object.prototype.hasOwnProperty.call(t,"default")?t.default:t}var xo={exports:{}};/*!***************************************************
|
|
22
25
|
* mark.js v8.11.1
|
|
23
26
|
* https://markjs.io/
|
|
24
27
|
* Copyright (c) 2014–2018, Julian Kühnel
|
|
25
28
|
* Released under the MIT license https://git.io/vwTVl
|
|
26
|
-
*****************************************************/(function(t,n){(function(e,o){t.exports=o()})(qe,function(){class e{constructor(r,s=!0,d=[],u=5e3){this.ctx=r,this.iframes=s,this.exclude=d,this.iframesTimeout=u}static matches(r,s){const d=typeof s=="string"?[s]:s,u=r.matches||r.matchesSelector||r.msMatchesSelector||r.mozMatchesSelector||r.oMatchesSelector||r.webkitMatchesSelector;if(u){let p=!1;return d.every(h=>!u.call(r,h)||(p=!0,!1)),p}return!1}getContexts(){let r=[];return(this.ctx!==void 0&&this.ctx?NodeList.prototype.isPrototypeOf(this.ctx)?Array.prototype.slice.call(this.ctx):Array.isArray(this.ctx)?this.ctx:typeof this.ctx=="string"?Array.prototype.slice.call(document.querySelectorAll(this.ctx)):[this.ctx]:[]).forEach(s=>{const d=r.filter(u=>u.contains(s)).length>0;r.indexOf(s)!==-1||d||r.push(s)}),r}getIframeContents(r,s,d=()=>{}){let u;try{const p=r.contentWindow;if(u=p.document,!p||!u)throw new Error("iframe inaccessible")}catch{d()}u&&s(u)}isIframeBlank(r){const s="about:blank",d=r.getAttribute("src").trim();return r.contentWindow.location.href===s&&d!==s&&d}observeIframeLoad(r,s,d){let u=!1,p=null;const h=()=>{if(!u){u=!0,clearTimeout(p);try{this.isIframeBlank(r)||(r.removeEventListener("load",h),this.getIframeContents(r,s,d))}catch{d()}}};r.addEventListener("load",h),p=setTimeout(h,this.iframesTimeout)}onIframeReady(r,s,d){try{r.contentWindow.document.readyState==="complete"?this.isIframeBlank(r)?this.observeIframeLoad(r,s,d):this.getIframeContents(r,s,d):this.observeIframeLoad(r,s,d)}catch{d()}}waitForIframes(r,s){let d=0;this.forEachIframe(r,()=>!0,u=>{d++,this.waitForIframes(u.querySelector("html"),()=>{--d||s()})},u=>{u||s()})}forEachIframe(r,s,d,u=()=>{}){let p=r.querySelectorAll("iframe"),h=p.length,f=0;p=Array.prototype.slice.call(p);const l=()=>{--h<=0&&u(f)};h||l(),p.forEach(c=>{e.matches(c,this.exclude)?l():this.onIframeReady(c,_=>{s(c)&&(f++,d(_)),l()},l)})}createIterator(r,s,d){return document.createNodeIterator(r,s,d,!1)}createInstanceOnIframe(r){return new e(r.querySelector("html"),this.iframes)}compareNodeIframe(r,s,d){const u=r.compareDocumentPosition(d),p=Node.DOCUMENT_POSITION_PRECEDING;return!!(u&p&&(s===null||s.compareDocumentPosition(d)&Node.DOCUMENT_POSITION_FOLLOWING))}getIteratorNode(r){const s=r.previousNode();return{prevNode:s,node:(s===null||r.nextNode())&&r.nextNode()}}checkIframeFilter(r,s,d,u){let p=!1,h=!1;return u.forEach((f,l)=>{f.val===d&&(p=l,h=f.handled)}),this.compareNodeIframe(r,s,d)?(p!==!1||h?p===!1||h||(u[p].handled=!0):u.push({val:d,handled:!0}),!0):(p===!1&&u.push({val:d,handled:!1}),!1)}handleOpenIframes(r,s,d,u){r.forEach(p=>{p.handled||this.getIframeContents(p.val,h=>{this.createInstanceOnIframe(h).forEachNode(s,d,u)})})}iterateThroughNodes(r,s,d,u,p){const h=this.createIterator(s,r,u);let f,l,c=[],_=[],v=()=>({prevNode:l,node:f}=this.getIteratorNode(h),f);for(;v();)this.iframes&&this.forEachIframe(s,b=>this.checkIframeFilter(f,l,b,c),b=>{this.createInstanceOnIframe(b).forEachNode(r,g=>_.push(g),u)}),_.push(f);_.forEach(b=>{d(b)}),this.iframes&&this.handleOpenIframes(c,r,d,u),p()}forEachNode(r,s,d,u=()=>{}){const p=this.getContexts();let h=p.length;h||u(),p.forEach(f=>{const l=()=>{this.iterateThroughNodes(r,f,s,d,()=>{--h<=0&&u()})};this.iframes?this.waitForIframes(f,l):l()})}}class o{constructor(r){this.ctx=r,this.ie=!1;const s=window.navigator.userAgent;(s.indexOf("MSIE")>-1||s.indexOf("Trident")>-1)&&(this.ie=!0)}set opt(r){this._opt=Object.assign({},{element:"",className:"",exclude:[],iframes:!1,iframesTimeout:5e3,separateWordSearch:!0,diacritics:!0,synonyms:{},accuracy:"partially",acrossElements:!1,caseSensitive:!1,ignoreJoiners:!1,ignoreGroups:0,ignorePunctuation:[],wildcards:"disabled",each:()=>{},noMatch:()=>{},filter:()=>!0,done:()=>{},debug:!1,log:window.console},r)}get opt(){return this._opt}get iterator(){return new e(this.ctx,this.opt.iframes,this.opt.exclude,this.opt.iframesTimeout)}log(r,s="debug"){const d=this.opt.log;this.opt.debug&&typeof d=="object"&&typeof d[s]=="function"&&d[s](`mark.js: ${r}`)}escapeStr(r){return r.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g,"\\$&")}createRegExp(r){return this.opt.wildcards!=="disabled"&&(r=this.setupWildcardsRegExp(r)),r=this.escapeStr(r),Object.keys(this.opt.synonyms).length&&(r=this.createSynonymsRegExp(r)),(this.opt.ignoreJoiners||this.opt.ignorePunctuation.length)&&(r=this.setupIgnoreJoinersRegExp(r)),this.opt.diacritics&&(r=this.createDiacriticsRegExp(r)),r=this.createMergedBlanksRegExp(r),(this.opt.ignoreJoiners||this.opt.ignorePunctuation.length)&&(r=this.createJoinersRegExp(r)),this.opt.wildcards!=="disabled"&&(r=this.createWildcardsRegExp(r)),r=this.createAccuracyRegExp(r)}createSynonymsRegExp(r){const s=this.opt.synonyms,d=this.opt.caseSensitive?"":"i",u=this.opt.ignoreJoiners||this.opt.ignorePunctuation.length?"\0":"";for(let p in s)if(s.hasOwnProperty(p)){const h=s[p],f=this.opt.wildcards!=="disabled"?this.setupWildcardsRegExp(p):this.escapeStr(p),l=this.opt.wildcards!=="disabled"?this.setupWildcardsRegExp(h):this.escapeStr(h);f!==""&&l!==""&&(r=r.replace(new RegExp(`(${this.escapeStr(f)}|${this.escapeStr(l)})`,`gm${d}`),u+`(${this.processSynomyms(f)}|${this.processSynomyms(l)})`+u))}return r}processSynomyms(r){return(this.opt.ignoreJoiners||this.opt.ignorePunctuation.length)&&(r=this.setupIgnoreJoinersRegExp(r)),r}setupWildcardsRegExp(r){return(r=r.replace(/(?:\\)*\?/g,s=>s.charAt(0)==="\\"?"?":"")).replace(/(?:\\)*\*/g,s=>s.charAt(0)==="\\"?"*":"")}createWildcardsRegExp(r){let s=this.opt.wildcards==="withSpaces";return r.replace(/\u0001/g,s?"[\\S\\s]?":"\\S?").replace(/\u0002/g,s?"[\\S\\s]*?":"\\S*")}setupIgnoreJoinersRegExp(r){return r.replace(/[^(|)\\]/g,(s,d,u)=>{let p=u.charAt(d+1);return/[(|)\\]/.test(p)||p===""?s:s+"\0"})}createJoinersRegExp(r){let s=[];const d=this.opt.ignorePunctuation;return Array.isArray(d)&&d.length&&s.push(this.escapeStr(d.join(""))),this.opt.ignoreJoiners&&s.push("\\u00ad\\u200b\\u200c\\u200d"),s.length?r.split(/\u0000+/).join(`[${s.join("")}]*`):r}createDiacriticsRegExp(r){const s=this.opt.caseSensitive?"":"i",d=this.opt.caseSensitive?["aàáảãạăằắẳẵặâầấẩẫậäåāą","AÀÁẢÃẠĂẰẮẲẴẶÂẦẤẨẪẬÄÅĀĄ","cçćč","CÇĆČ","dđď","DĐĎ","eèéẻẽẹêềếểễệëěēę","EÈÉẺẼẸÊỀẾỂỄỆËĚĒĘ","iìíỉĩịîïī","IÌÍỈĨỊÎÏĪ","lł","LŁ","nñňń","NÑŇŃ","oòóỏõọôồốổỗộơởỡớờợöøō","OÒÓỎÕỌÔỒỐỔỖỘƠỞỠỚỜỢÖØŌ","rř","RŘ","sšśșş","SŠŚȘŞ","tťțţ","TŤȚŢ","uùúủũụưừứửữựûüůū","UÙÚỦŨỤƯỪỨỬỮỰÛÜŮŪ","yýỳỷỹỵÿ","YÝỲỶỸỴŸ","zžżź","ZŽŻŹ"]:["aàáảãạăằắẳẵặâầấẩẫậäåāąAÀÁẢÃẠĂẰẮẲẴẶÂẦẤẨẪẬÄÅĀĄ","cçćčCÇĆČ","dđďDĐĎ","eèéẻẽẹêềếểễệëěēęEÈÉẺẼẸÊỀẾỂỄỆËĚĒĘ","iìíỉĩịîïīIÌÍỈĨỊÎÏĪ","lłLŁ","nñňńNÑŇŃ","oòóỏõọôồốổỗộơởỡớờợöøōOÒÓỎÕỌÔỒỐỔỖỘƠỞỠỚỜỢÖØŌ","rřRŘ","sšśșşSŠŚȘŞ","tťțţTŤȚŢ","uùúủũụưừứửữựûüůūUÙÚỦŨỤƯỪỨỬỮỰÛÜŮŪ","yýỳỷỹỵÿYÝỲỶỸỴŸ","zžżźZŽŻŹ"];let u=[];return r.split("").forEach(p=>{d.every(h=>{if(h.indexOf(p)!==-1){if(u.indexOf(h)>-1)return!1;r=r.replace(new RegExp(`[${h}]`,`gm${s}`),`[${h}]`),u.push(h)}return!0})}),r}createMergedBlanksRegExp(r){return r.replace(/[\s]+/gim,"[\\s]+")}createAccuracyRegExp(r){const s="!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~¡¿";let d=this.opt.accuracy,u=typeof d=="string"?d:d.value,p=typeof d=="string"?[]:d.limiters,h="";switch(p.forEach(f=>{h+=`|${this.escapeStr(f)}`}),u){case"partially":default:return`()(${r})`;case"complementary":return`()([^${h="\\s"+(h||this.escapeStr(s))}]*${r}[^${h}]*)`;case"exactly":return`(^|\\s${h})(${r})(?=$|\\s${h})`}}getSeparatedKeywords(r){let s=[];return r.forEach(d=>{this.opt.separateWordSearch?d.split(" ").forEach(u=>{u.trim()&&s.indexOf(u)===-1&&s.push(u)}):d.trim()&&s.indexOf(d)===-1&&s.push(d)}),{keywords:s.sort((d,u)=>u.length-d.length),length:s.length}}isNumeric(r){return Number(parseFloat(r))==r}checkRanges(r){if(!Array.isArray(r)||Object.prototype.toString.call(r[0])!=="[object Object]")return this.log("markRanges() will only accept an array of objects"),this.opt.noMatch(r),[];const s=[];let d=0;return r.sort((u,p)=>u.start-p.start).forEach(u=>{let{start:p,end:h,valid:f}=this.callNoMatchOnInvalidRanges(u,d);f&&(u.start=p,u.length=h-p,s.push(u),d=h)}),s}callNoMatchOnInvalidRanges(r,s){let d,u,p=!1;return r&&r.start!==void 0?(u=(d=parseInt(r.start,10))+parseInt(r.length,10),this.isNumeric(r.start)&&this.isNumeric(r.length)&&u-s>0&&u-d>0?p=!0:(this.log(`Ignoring invalid or overlapping range: ${JSON.stringify(r)}`),this.opt.noMatch(r))):(this.log(`Ignoring invalid range: ${JSON.stringify(r)}`),this.opt.noMatch(r)),{start:d,end:u,valid:p}}checkWhitespaceRanges(r,s,d){let u,p=!0,h=d.length,f=s-h,l=parseInt(r.start,10)-f;return(u=(l=l>h?h:l)+parseInt(r.length,10))>h&&(u=h,this.log(`End range automatically set to the max value of ${h}`)),l<0||u-l<0||l>h||u>h?(p=!1,this.log(`Invalid range: ${JSON.stringify(r)}`),this.opt.noMatch(r)):d.substring(l,u).replace(/\s+/g,"")===""&&(p=!1,this.log("Skipping whitespace only range: "+JSON.stringify(r)),this.opt.noMatch(r)),{start:l,end:u,valid:p}}getTextNodes(r){let s="",d=[];this.iterator.forEachNode(NodeFilter.SHOW_TEXT,u=>{d.push({start:s.length,end:(s+=u.textContent).length,node:u})},u=>this.matchesExclude(u.parentNode)?NodeFilter.FILTER_REJECT:NodeFilter.FILTER_ACCEPT,()=>{r({value:s,nodes:d})})}matchesExclude(r){return e.matches(r,this.opt.exclude.concat(["script","style","title","head","html"]))}wrapRangeInTextNode(r,s,d){const u=this.opt.element?this.opt.element:"mark",p=r.splitText(s),h=p.splitText(d-s);let f=document.createElement(u);return f.setAttribute("data-markjs","true"),this.opt.className&&f.setAttribute("class",this.opt.className),f.textContent=p.textContent,p.parentNode.replaceChild(f,p),h}wrapRangeInMappedTextNode(r,s,d,u,p){r.nodes.every((h,f)=>{const l=r.nodes[f+1];if(l===void 0||l.start>s){if(!u(h.node))return!1;const c=s-h.start,_=(d>h.end?h.end:d)-h.start,v=r.value.substr(0,h.start),b=r.value.substr(_+h.start);if(h.node=this.wrapRangeInTextNode(h.node,c,_),r.value=v+b,r.nodes.forEach((g,y)=>{y>=f&&(r.nodes[y].start>0&&y!==f&&(r.nodes[y].start-=_),r.nodes[y].end-=_)}),d-=_,p(h.node.previousSibling,h.start),!(d>h.end))return!1;s=h.end}return!0})}wrapMatches(r,s,d,u,p){const h=s===0?0:s+1;this.getTextNodes(f=>{f.nodes.forEach(l=>{let c;for(l=l.node;(c=r.exec(l.textContent))!==null&&c[h]!=="";){if(!d(c[h],l))continue;let _=c.index;if(h!==0)for(let v=1;v<h;v++)_+=c[v].length;l=this.wrapRangeInTextNode(l,_,_+c[h].length),u(l.previousSibling),r.lastIndex=0}}),p()})}wrapMatchesAcrossElements(r,s,d,u,p){const h=s===0?0:s+1;this.getTextNodes(f=>{let l;for(;(l=r.exec(f.value))!==null&&l[h]!=="";){let c=l.index;if(h!==0)for(let v=1;v<h;v++)c+=l[v].length;const _=c+l[h].length;this.wrapRangeInMappedTextNode(f,c,_,v=>d(l[h],v),(v,b)=>{r.lastIndex=b,u(v)})}p()})}wrapRangeFromIndex(r,s,d,u){this.getTextNodes(p=>{const h=p.value.length;r.forEach((f,l)=>{let{start:c,end:_,valid:v}=this.checkWhitespaceRanges(f,h,p.value);v&&this.wrapRangeInMappedTextNode(p,c,_,b=>s(b,f,p.value.substring(c,_),l),b=>{d(b,f)})}),u()})}unwrapMatches(r){const s=r.parentNode;let d=document.createDocumentFragment();for(;r.firstChild;)d.appendChild(r.removeChild(r.firstChild));s.replaceChild(d,r),this.ie?this.normalizeTextNode(s):s.normalize()}normalizeTextNode(r){if(r){if(r.nodeType===3)for(;r.nextSibling&&r.nextSibling.nodeType===3;)r.nodeValue+=r.nextSibling.nodeValue,r.parentNode.removeChild(r.nextSibling);else this.normalizeTextNode(r.firstChild);this.normalizeTextNode(r.nextSibling)}}markRegExp(r,s){this.opt=s,this.log(`Searching with expression "${r}"`);let d=0,u="wrapMatches";const p=h=>{d++,this.opt.each(h)};this.opt.acrossElements&&(u="wrapMatchesAcrossElements"),this[u](r,this.opt.ignoreGroups,(h,f)=>this.opt.filter(f,h,d),p,()=>{d===0&&this.opt.noMatch(r),this.opt.done(d)})}mark(r,s){this.opt=s;let d=0,u="wrapMatches";const{keywords:p,length:h}=this.getSeparatedKeywords(typeof r=="string"?[r]:r),f=this.opt.caseSensitive?"":"i",l=c=>{let _=new RegExp(this.createRegExp(c),`gm${f}`),v=0;this.log(`Searching with expression "${_}"`),this[u](_,1,(b,g)=>this.opt.filter(g,c,d,v),b=>{v++,d++,this.opt.each(b)},()=>{v===0&&this.opt.noMatch(c),p[h-1]===c?this.opt.done(d):l(p[p.indexOf(c)+1])})};this.opt.acrossElements&&(u="wrapMatchesAcrossElements"),h===0?this.opt.done(d):l(p[0])}markRanges(r,s){this.opt=s;let d=0,u=this.checkRanges(r);u&&u.length?(this.log("Starting to mark with the following ranges: "+JSON.stringify(u)),this.wrapRangeFromIndex(u,(p,h,f,l)=>this.opt.filter(p,h,f,l),(p,h)=>{d++,this.opt.each(p,h)},()=>{this.opt.done(d)})):this.opt.done(d)}unmark(r){this.opt=r;let s=this.opt.element?this.opt.element:"*";s+="[data-markjs]",this.opt.className&&(s+=`.${this.opt.className}`),this.log(`Removal selector "${s}"`),this.iterator.forEachNode(NodeFilter.SHOW_ELEMENT,d=>{this.unwrapMatches(d)},d=>{const u=e.matches(d,s),p=this.matchesExclude(d);return!u||p?NodeFilter.FILTER_REJECT:NodeFilter.FILTER_ACCEPT},this.opt.done)}}return function(a){const r=new o(a);return this.mark=(s,d)=>(r.mark(s,d),this),this.markRegExp=(s,d)=>(r.markRegExp(s,d),this),this.markRanges=(s,d)=>(r.markRanges(s,d),this),this.unmark=s=>(r.unmark(s),this),this}})})(Pi);var Rs=Pi.exports;const js=jn(Rs),T1="";function Bi(t){return JSON.parse(JSON.stringify(t))}const Vs={name:"IbTreeSelect",inject:["LANG_COMPONENTS"],props:{classList:[String,Array],placeholder:{type:String,default:""},searchPlaceholderText:{type:String,default:""},clearButtonMessage:{type:String,default:""},showClearButton:{type:Boolean,default:!0},isResizable:{type:Boolean,default:!1},menuSize:{type:[String,Number]},initialSize:{left:0,right:0},ariaLabel:{type:String,default:""},name:String,id:{type:String,default(){return ht()}},options:{default(){return[]}},modelValue:{type:[Number,String,Array]},value:{type:[Number,String,Array],default(){return[]}},maxSelectedNames:{type:Number,default:2},isMultiple:{type:Boolean,default:!0},parentAutoCheck:{type:Boolean,default:!0},strings:{type:Object,default(){return{}}},onlyEndNodes:{type:Boolean,default:!1},isRequired:{type:Boolean,default:!0},htmlOptionTitle:{type:Boolean,default:!1},isBookmarkable:{type:Boolean,default:!1},initBookmarks:{type:Array,default:()=>[]},showInputs:{type:Boolean,default(t){return t.isMultiple}},dependency:{type:String},filterId:{type:String,default(){return ht()}},staticPlaceholder:{type:Boolean,default:!1},useSearch:{type:Boolean,default:!1},isWatching:{type:Boolean,default:!1},emptyMessage:{type:String,default:""},errorMessage:{type:String,default:""},allOptions:{type:Boolean,default:!0},watchClearValue:{type:Boolean,default:!1},isToggle:{type:Boolean,default:!1},alphabetSort:{type:Boolean,default:!1}},emits:["close","input","blur","search","resize","submit","clearValue","update:modelValue"],watch:{value(t){this.val=t,(!Array.isArray(t)||t.join(",")!==Object.keys(this.selected).join(","))&&this.setPreparedValues(this.actualOptions,!1)},modelValue:{handler(t){this.val=t,this.actualOptions=[],this.setPreparedValues()},deep:!0},val(t){this.watchClearValue&&(!t||Array.isArray(t)&&!t.length)&&this.setPreparedValues(this.actualOptions).then(()=>{const n=Object.keys(this.selected);this.$globalEvents.$emit("select-"+this.filterId+":update",{values:n,filter:this.filterId})})},options:{handler(t){this.initialOptions=Bi(t)},deep:!0},initialOptions(t){let n=!0;if(typeof t=="function")n=!1;else{const e=[],o=t;Array.prototype.forEach.call(o,a=>{a.id!==void 0&&e.push(a.id)}),n=JSON.stringify(e)===JSON.stringify(this.optionsIdsWatch),this.optionsIdsWatch=e}(this.isInitialized&&!n||this.isWatching)&&this.setPreparedValues().then(()=>{const e=Object.keys(this.selected);this.$globalEvents.$emit("select-"+this.filterId+":update",{values:e,filter:this.filterId})})},dependency(t,n){this.$nextTick(()=>{this.registerDependency(n)})},initBookmarks(){this.actualBookmarkedOptions={},this.setBookmarkedOptions(this.actualOptions)}},mounted(){this.marker=new js(this.$refs.list.$el),this.registerDependency(),this.$globalEvents.$on("select:refresh",()=>{this.setPreparedValues()}),document.addEventListener("mousemove",this.onResize),document.addEventListener("mouseup",this.endResizing)},data(){var t,n,e,o,a,r,s,d;return this.defaultFilter=u=>{this.marker.unmark();const p=this.filterString.toLowerCase().trim();this.filterFunc.call(this,u,p),p&&this.marker.mark(p)},{initialOptions:Bi(this.options),val:this.modelValue?this.modelValue:this.value,size:{left:this.initialSize&&this.initialSize.left||0,right:this.initialSize&&this.initialSize.right||0},resizingProp:null,isInitialized:!1,optionsIdsWatch:[],isLoading:!1,actualName:this.isMultiple?this.name+"[]":this.name,filterString:"",actualOptions:[],actualBookmarkedOptions:{},selected:[],isOpen:!1,vertical:"bottom",allOptionsIsChecked:!0,hasTreeChildren:!1,uid:`f${(~~(Math.random()*1e8)).toString(16)}`,focusedOptionId:"",actualStrings:{searchPlaceholder:lang(this.searchPlaceholderText.length?this.searchPlaceholderText:"search_placeholder",(t=this.LANG_COMPONENTS)==null?void 0:t.COMPONENT_SELECT),emptyTitle:lang("empty_title",(n=this.LANG_COMPONENTS)==null?void 0:n.COMPONENT_SELECT),selectAllOptions:lang("all_options",(e=this.LANG_COMPONENTS)==null?void 0:e.COMPONENT_SELECT),allSelected:lang("all_selected",(o=this.LANG_COMPONENTS)==null?void 0:o.COMPONENT_SELECT),loading:lang("loading",(a=this.LANG_COMPONENTS)==null?void 0:a.COMPONENT_SELECT)+"...",selectedCount:lang("selected_count",(r=this.LANG_COMPONENTS)==null?void 0:r.COMPONENT_SELECT),buttonTitle:this.buttonTitle||lang("button_title",(s=this.LANG_COMPONENTS)==null?void 0:s.COMPONENT_SELECT),requiredDependencyNotFilled:this.requiredDependencyNotFilled||lang("required_dependency_are_not_filled",(d=this.LANG_COMPONENTS)==null?void 0:d.COMPONENT_SELECT),...this.strings},dependencyValue:null}},methods:{onBlur(){setTimeout(()=>{this.isOpen||this.$emit("blur")},200)},inputKeyupDown(){this.focusOnFirstOptions()},comboboxKeyupDown(){if(this.showSearch){this.$refs.search.focus();return}this.focusOnFirstOptions()},focus(){this.$refs.combobox.focus()},focusOnFirstOptions(){this.$refs.list.$el.querySelector("[tabindex]:not(hidden)").focus()},startResizing(t){this.resizingProp=t},endResizing(){this.resizingProp&&(this.resizingProp=null,this.$emit("resize",this.size))},onResize(t){switch(this.resizingProp){case"left":this.size.left=Math.max(this.size.left-t.movementX,0);break;case"right":this.size.right=Math.max(this.size.right+t.movementX,0);break}},registerDependency(t){this.dependency?(this.$globalEvents.$on("select-"+this.dependency+":update",n=>{this.clear(),this.dependencyValue=n,this.dependencyValue&&this.dependencyValue.values&&(!Array.isArray(this.dependencyValue.values)||this.dependencyValue.values.length)&&this.setPreparedValues()}),this.isLoading=!1):(this.$globalEvents.$off("select-"+t+":update"),this.setPreparedValues().then(()=>{const n=Object.keys(this.selected);this.$globalEvents.$emit("select-"+this.filterId+":update",{values:n,filter:this.filterId})}))},filter(t,n){this.filterString=t,this.$emit("search",{search:this.filterString}),this.defaultFilter(n)},setPreparedValues(t){let n=t||this.initialOptions;return this.alphabetSort&&(n=n.sort((e,o)=>e.title.toLowerCase().localeCompare(o.title.toLowerCase()))),this.prepare(n).then(([e,o])=>{this.actualOptions=e,this.allOptionsIsChecked=this.checkIfOptionsChecked(e),this.isInitialized=!0,this.selected=o,this.setBookmarkedOptions(e)})},clear(){this.setPreparedValues(),this.allOptionsIsChecked=!1,this.selected=[],this.isMultiple?(this.$emit("update:modelValue",null),this.$emit("input",null),this.$emit("clear-value",null)):(this.$emit("update:modelValue",[]),this.$emit("input",[]),this.$emit("clear-value",[])),this.setPreparedValues()},clearValue(){this.clear(),this.setPreparedValues()},prepare(t){return new Promise(n=>{const e={},o=[];let a=Promise.resolve();typeof t=="function"?(this.isLoading=!0,this.dependency&&(t=t.bind(null,this.dependencyValue)),a=a.then(t)):a=a.then(()=>t),a.then(r=>(this.isLoading=!1,r.forEach(s=>{s.initiallyVisible=typeof s.visible>"u"?!0:s.visible,s.visible=s.initiallyVisible,s.readonly=!!s.readonly,s.isDisabled=!1,s.checked=this.isMultiple?this.val!==null&&this.val.findIndex(d=>s.id==d)>-1:this.val!==null&&this.val==s.id,s.checked&&(!this.onlyEndNodes||!s.children)&&(e[s.id]=s),s.children&&(this.hasTreeChildren=!0,s.isChildrenVisible=!1),o.push(new Promise(d=>{s.children?this.prepare(s.children).then(([u,p])=>{s.children=u,Object.assign(e,p),d(s)}):d(s)}))}),Promise.all(o).then(s=>{n([s,e])}))).catch(r=>{throw this.isLoading=!1,r})})},filterFunc(t,n){let e=0;return t.forEach(o=>{let a=o.initiallyVisible&&o.title&&o.title.toString().toLowerCase().includes(n)&&!this.actualBookmarkedOptions[o.id];if(o.children&&o.children.length){let r=this.filterFunc(o.children,n);e+=r,r&&(o.isChildrenVisible=!!n||!!Object.keys(this.actualBookmarkedOptions).length,o.isDisabled=r<o.children.length&&!this.isBookmarkable),a?r||(a=!1):a=!!r}o.visible=a,a&&e++}),e},submit(){this.change();const t=Object.keys(this.selected);this.$globalEvents.$emit("select-"+this.filterId+":submit",{values:t,filter:this.filterId}),this.$emit("submit")},change(){const t=Object.keys(this.selected);this.isMultiple?(this.$emit("update:modelValue",t),this.$emit("input",t)):(this.$emit("update:modelValue",t[0]),this.$emit("input",t[0])),this.$globalEvents.$emit("select-"+this.filterId+":update",{values:t,filter:this.filterId}),this.$refs.dropdown.close()},checkIfOptionsChecked(t){return t.every(n=>n.checked||n.readonly)},registerCheck(t,n,e){if(n)if(t.checked=!0,this.isMultiple)this.onlyEndNodes&&t.children&&t.children.length||(this.selected[t.id]=t,this.$emit("update:modelValue",Object.keys(this.selected)),this.$emit("input",Object.keys(this.selected)));else{const o=Object.keys(this.selected)[0];o&&(this.selected[o].checked=!1),this.selected={[t.id]:t},this.change()}else delete this.selected[t.id],t.checked=!1,this.$emit("update:modelValue",Object.keys(this.selected)),this.$emit("input",Object.keys(this.selected));this.toggleDuplicateOptions(this.actualOptions,t.id,n),e&&(this.allOptionsIsChecked=this.checkIfOptionsChecked(this.actualOptions))},toggleDuplicateOptions(t,n,e){for(let o of t)o.id===n&&(o.checked=e),o.children&&this.toggleDuplicateOptions(o.children,n,e)},manageAll(){this.allOptionsIsChecked=!this.allOptionsIsChecked,this.traverseTree(this.actualOptions,t=>{t.readonly||this.registerCheck(t,this.allOptionsIsChecked,!1)})},traverseTree(t,n){t.forEach(e=>{n(e),e.children&&e.children.length&&this.traverseTree(e.children,n)})},getArrayOptions(t){let n=[];for(let e of t)n.push(e),e.children&&(n=n.concat(this.getArrayOptions(e.children)));return n},toggleBookmark(t){this.actualBookmarkedOptions[t.id]?delete this.actualBookmarkedOptions[t.id]:this.actualBookmarkedOptions[t.id]=t,this.$emit("toggle-bookmarked-option",t.id),this.filter(this.filterString,this.actualOptions)},setBookmarkedOptions(t){t.forEach(n=>{n.children&&n.children.length?this.setBookmarkedOptions(n.children):this.initBookmarks.includes(n.id)&&(this.actualBookmarkedOptions[n.id]=n)}),this.filter(this.filterString,t)},onClose(){this.isOpen=!1,this.filter("",this.actualOptions),this.isMultiple?this.$emit("close",Object.keys(this.selected)):this.$emit("close",Object.keys(this.selected)[0]),this.$emit("blur"),this.vertical="bottom"},onOpen(){const t=document.documentElement.scrollHeight;this.isOpen=!0,this.$nextTick(()=>{document.documentElement.scrollHeight>t&&(this.vertical="top")})}},computed:{hasTrigger(){return!!this.$slots.trigger},hasTriggerContent(){return!!this.$slots.triggerContent},hasEmptyMessage(){return!!this.$slots.emptyMessage},treeDropPos(){return this.menuSize?{width:this.menuSize+"px",maxWidth:this.menuSize+"px",minWidth:this.menuSize+"px"}:{width:"auto",position:"absolute",left:-this.size.left+"px",right:-this.size.right+"px"}},hasHierarchy(){return this.actualOptions.some(t=>t.children)},selectedKeys(){return Object.keys(this.selected).filter(t=>{if(!this.onlyEndNodes||!this.selected[t].children)return!0})},selectStatus(){return this.staticPlaceholder?this.placeholder:this.isLoading?this.actualStrings.loading:this.selectedKeys.length?this.selectedKeys.length<this.maxSelectedNames?this.selectedKeys.map(t=>this.selected[t].title).join(","):this.selectedKeys.length<this.optionsCount?this.actualStrings.selectedCount.replace("{selected}",this.selectedKeys.length).replace("{all}",this.optionsCount):this.actualStrings.allSelected:this.emptyMessage},isEmpty(){return Array.isArray(this.value)?!this.value.length:!this.value},requiredDependencyNotFilled(){return this.dependency&&(!this.dependencyValue||!this.dependencyValue.values||!this.dependencyValue.values.length)},showSearch(){return this.useSearch||this.optionsCount>10},arrayOfOptions(){return this.getArrayOptions(this.actualOptions)},optionsCount(){let t=[];for(let n of this.arrayOfOptions)(!this.onlyEndNodes||!n.children)&&!t.includes(n.id)&&t.push(n.id);return t.length},visibleOptionsCount(){let t=[];return this.traverseTree(this.actualOptions,n=>{(!this.onlyEndNodes||!n.children)&&!t.includes(n.id)&&n.visible&&t.push(n.id)}),t.length+(this.isBookmarkable?Object.keys(this.actualBookmarkedOptions).length:0)}},components:{IbAlert:Pt,IbIconButton:ut,IbIcon:Le,IbDropdown:Ln,IbInput:br,List:mr,"select-option":Ls},beforeUnmount(){document.removeEventListener("mousemove",this.onResize),document.removeEventListener("mouseup",this.endResizing)}},qs={key:0,class:"tree-select-empty"},Fs={key:1,class:"tree-select-default-empty tree-select-empty"};function Hs(t,n,e,o,a,r){const s=i.resolveComponent("ib-alert"),d=i.resolveComponent("ib-icon"),u=i.resolveComponent("ib-icon-button"),p=i.resolveComponent("select-option"),h=i.resolveComponent("list"),f=i.resolveComponent("ib-input"),l=i.resolveComponent("ib-dropdown");return i.openBlock(),i.createElementBlock(i.Fragment,null,[e.errorMessage?(i.openBlock(),i.createBlock(s,{key:0,class:"tree-select-error"},{default:i.withCtx(()=>[i.createTextVNode(i.toDisplayString(e.errorMessage),1)]),_:1})):i.createCommentVNode("",!0),i.createElementVNode("div",{class:i.normalizeClass(["tree-select",{...e.classList,"tree-select-custom-trigger-content":r.hasTriggerContent}])},[i.createVNode(l,{disabled:a.isLoading,"is-resizable":e.isResizable,vertical:a.vertical,ref:"dropdown",onClose:r.onClose,onOpen:r.onOpen},i.createSlots({body:i.withCtx(()=>[i.createElementVNode("div",{class:i.normalizeClass(["tree-drop",{"not-tree-child":!a.hasTreeChildren}]),style:i.normalizeStyle(r.treeDropPos)},[e.isResizable?(i.openBlock(),i.createElementBlock("div",{key:0,class:"ib-dropdown-resizer ib-dropdown-resizer-left",onMousedown:n[6]||(n[6]=c=>r.startResizing("left"))},null,32)):i.createCommentVNode("",!0),e.isResizable?(i.openBlock(),i.createElementBlock("div",{key:1,class:"ib-dropdown-resizer ib-dropdown-resizer-right",onMousedown:n[7]||(n[7]=c=>r.startResizing("right"))},null,32)):i.createCommentVNode("",!0),Object.keys(a.actualBookmarkedOptions).length>0?(i.openBlock(),i.createBlock(h,{key:2,class:i.normalizeClass({"has-hierarchy":r.hasHierarchy})},{default:i.withCtx(()=>[(i.openBlock(!0),i.createElementBlock(i.Fragment,null,i.renderList(a.actualBookmarkedOptions,c=>(i.openBlock(),i.createBlock(p,{key:"bookmark"+c.id,option:c,"parent-auto-check":!1,"is-multiple":e.isMultiple,"is-bookmarkable":!0,"is-bookmarked":!0,onCheck:r.registerCheck,onToggleBookmark:r.toggleBookmark,uid:a.uid,"only-end-nodes":e.onlyEndNodes,"html-title":e.htmlOptionTitle,"show-input":e.showInputs},null,8,["option","is-multiple","onCheck","onToggleBookmark","uid","only-end-nodes","html-title","show-input"]))),128))]),_:1},8,["class"])):i.createCommentVNode("",!0),r.showSearch?(i.openBlock(),i.createBlock(f,{key:3,class:"tree-search",ref:"search","show-icon":!0,value:a.filterString,"aria-label":e.searchPlaceholderText?e.searchPlaceholderText:a.actualStrings.searchPlaceholder,placeholder:e.searchPlaceholderText?e.searchPlaceholderText:a.actualStrings.searchPlaceholder,onInput:n[8]||(n[8]=c=>r.filter(c,a.actualOptions)),onKeyup:i.withKeys(r.inputKeyupDown,["down"])},null,8,["value","aria-label","placeholder","onKeyup"])):i.createCommentVNode("",!0),i.createVNode(h,{ref:"list",role:"listbox",class:i.normalizeClass({"tree-select-list":!0,"has-hierarchy":r.hasHierarchy})},{default:i.withCtx(()=>[!r.requiredDependencyNotFilled&&!r.visibleOptionsCount&&r.hasEmptyMessage?(i.openBlock(),i.createElementBlock("div",qs,[i.renderSlot(t.$slots,"emptyMessage")])):!r.requiredDependencyNotFilled&&!r.visibleOptionsCount?(i.openBlock(),i.createElementBlock("div",Fs,i.toDisplayString(a.actualStrings.emptyTitle),1)):i.createCommentVNode("",!0),i.withDirectives(i.createElementVNode("div",{class:"tree-select-empty"},i.toDisplayString(a.actualStrings.requiredDependencyNotFilled),513),[[i.vShow,r.requiredDependencyNotFilled]]),!e.isMultiple&&!e.isRequired&&a.actualOptions.length>0?(i.openBlock(),i.createBlock(p,{key:2,option:{title:t.lang("none","select"),id:null,checked:r.isEmpty},name:a.actualName,"parent-auto-check":e.parentAutoCheck,"is-multiple":e.isMultiple,onCheck:r.registerCheck,onToggleBookmark:r.toggleBookmark,uid:a.uid,"only-end-nodes":e.onlyEndNodes,"show-input":e.showInputs},null,8,["option","name","parent-auto-check","is-multiple","onCheck","onToggleBookmark","uid","only-end-nodes","show-input"])):i.createCommentVNode("",!0),r.requiredDependencyNotFilled?i.createCommentVNode("",!0):(i.openBlock(),i.createElementBlock(i.Fragment,{key:3},[e.allOptions&&e.isMultiple&&r.visibleOptionsCount&&!r.requiredDependencyNotFilled?(i.openBlock(),i.createBlock(p,{key:0,option:{title:a.actualStrings.selectAllOptions,id:"!all!",initiallyVisible:!0,visible:!0,isDisabled:r.visibleOptionsCount<r.optionsCount,checked:a.allOptionsIsChecked,isIndeterminate:!!Object.keys(a.selected).length},"is-toggle":e.isToggle,name:a.actualName,"parent-auto-check":!1,"is-multiple":e.isMultiple,"is-bookmarkable":!1,uid:a.uid,"only-end-nodes":e.onlyEndNodes,"show-input":e.showInputs,onCheck:r.manageAll,onOnFocus:n[9]||(n[9]=c=>a.focusedOptionId=c)},null,8,["option","is-toggle","name","is-multiple","uid","only-end-nodes","show-input","onCheck"])):i.createCommentVNode("",!0),(i.openBlock(!0),i.createElementBlock(i.Fragment,null,i.renderList(a.actualOptions,c=>i.renderSlot(t.$slots,a.actualName,{key:e.name+c.value,option:c,parentAutoCheck:e.parentAutoCheck,isMultiple:e.isMultiple,uid:a.uid,onlyEndNodes:e.onlyEndNodes,htmlTitle:e.htmlOptionTitle,showInput:e.showInputs},()=>[i.withDirectives(i.createVNode(p,{option:c,"is-toggle":e.isToggle,name:a.actualName,"parent-auto-check":e.parentAutoCheck,"is-multiple":e.isMultiple,"is-bookmarkable":e.isBookmarkable,uid:a.uid,"only-end-nodes":e.onlyEndNodes,"html-title":e.htmlOptionTitle,"show-input":e.showInputs,onCheck:r.registerCheck,onToggleBookmark:r.toggleBookmark,onOnFocus:n[10]||(n[10]=_=>a.focusedOptionId=_)},null,8,["option","is-toggle","name","parent-auto-check","is-multiple","is-bookmarkable","uid","only-end-nodes","html-title","show-input","onCheck","onToggleBookmark"]),[[i.vShow,c.visible]])])),128))],64))]),_:3},8,["class"])],6)]),_:2},[r.hasTrigger?{name:"trigger",fn:i.withCtx(()=>[i.renderSlot(t.$slots,"trigger",{selectedCount:r.selectedKeys.length})]),key:"0"}:{name:"trigger",fn:i.withCtx(({isOpened:c})=>[i.createElementVNode("div",{role:"combobox",tabindex:"0",class:i.normalizeClass(["tree-choice",{"tree-choice-opened":c,"has-clear-button":e.showClearButton,"tree-choice-error":e.errorMessage}]),ref:"combobox",onClick:n[2]||(n[2]=i.withModifiers(()=>{},["prevent"])),onBlur:n[3]||(n[3]=(..._)=>r.onBlur&&r.onBlur(..._)),onKeyup:[n[4]||(n[4]=i.withKeys((..._)=>r.comboboxKeyupDown&&r.comboboxKeyupDown(..._),["down"])),n[5]||(n[5]=i.withKeys((..._)=>r.comboboxKeyupDown&&r.comboboxKeyupDown(..._),["up"]))],"aria-label":e.ariaLabel,"aria-activedescendant":a.focusedOptionId},[r.hasTriggerContent?i.renderSlot(t.$slots,"triggerContent",{key:0,selectedCount:r.selectedKeys.length}):(i.openBlock(),i.createElementBlock(i.Fragment,{key:1},[e.htmlOptionTitle?(i.openBlock(),i.createElementBlock("span",{key:0,class:i.normalizeClass({placeholder:!r.selectStatus}),innerHTML:r.selectStatus||e.placeholder},null,10,["innerHTML"])):(i.openBlock(),i.createElementBlock("span",{key:1,class:i.normalizeClass({placeholder:!r.selectStatus})},i.toDisplayString(r.selectStatus||e.placeholder),3))],64)),e.showClearButton?i.withDirectives((i.openBlock(),i.createBlock(u,{key:2,kind:"ghost",class:"button-clear",onClick:i.withModifiers(r.clearValue,["prevent"]),onKeypress:n[0]||(n[0]=i.withKeys(i.withModifiers(()=>{},["stop","prevent"]),["enter"])),onKeydown:n[1]||(n[1]=i.withKeys(i.withModifiers(()=>{},["stop","prevent"]),["enter"])),onKeyup:i.withKeys(i.withModifiers(r.clearValue,["prevent"]),["enter"]),"help-text":e.clearButtonMessage},{default:i.withCtx(()=>[i.createVNode(d,{name:"close-outline"})]),_:1},8,["onClick","onKeyup","help-text"])),[[i.vShow,Object.keys(a.selected).length]]):i.createCommentVNode("",!0),i.createVNode(d,{name:c?"chevron-up-outline":"chevron-down-outline",classes:"tree-select-caret"},null,8,["name"])],42,["aria-label","aria-activedescendant"])]),key:"1"}]),1032,["disabled","is-resizable","vertical","onClose","onOpen"])],2)],64)}const Li=_e(Vs,[["render",Hs]]),N1="",zs={name:"IbLimitSelector",props:{labelSelect:{type:String,required:!0},value:{type:Number},options:{type:Array,default:()=>[10,25,50,100]}},watch(t){this.selected=t},data(){return{selected:this.value}},methods:{selectItem(t){this.selected=t,this.onChange(t)},onChange(t){Number.isInteger(+t)&&this.$emit("select",+t)}},computed:{prepareOptions(){return this.options.map(t=>({id:t,title:t}))}},components:{IbLabel:dn,IbSelect:Li}},Us={class:"report-limit-selector"};function Ks(t,n,e,o,a,r){const s=i.resolveComponent("ib-label"),d=i.resolveComponent("ib-select");return i.openBlock(),i.createElementBlock("div",Us,[i.createVNode(s,null,{default:i.withCtx(()=>[i.createTextVNode(i.toDisplayString(e.labelSelect),1)]),_:1}),i.createVNode(d,{classList:"report-limit-selector-select",value:e.value,options:r.prepareOptions,"is-multiple":!1,"show-clear-button":!1,onInput:r.selectItem},null,8,["value","options","onInput"])])}const Ri=_e(zs,[["render",Ks]]),x1="",Gs={name:"IbPagination",props:{tooltipTextPrev:{type:String},tooltipTextNext:{type:String},labelInput:{type:String},labelSelect:{type:String,required:!0},countRows:{type:Number,required:!0},pageCount:{type:Number,default:null},current:{type:Number,default:1},limitSelector:{type:Number,default:10},showPaginationInput:{type:Boolean,default:!0}},data(){return{currentPage:this.current,indexSpaceLeft:null,indexSpaceRight:null,limitValue:this.limitSelector}},watch:{current(t){this.onSelect(t)},limitValue(){this.currentPage=1}},methods:{changeLimit(t){Number.isInteger(t)&&(this.limitValue=t,this.$emit("set-limit",t))},onInput(t){if(t<1){this.onSelect(1);return}if(t>this.countPagePagination){this.onSelect(this.countPagePagination);return}this.onSelect(Number(t))},onSelect(t){Number.isInteger(t)&&(this.currentPage=t,this.$emit("select",t))},showItem(t){if(this.countPagePagination<=5)return this.indexSpaceLeft=null,this.indexSpaceRight=null,!0;if(t===1||t===this.countPagePagination)return!0;if(this.countPagePagination>=7){if(this.currentPage<=3&&t<=5)return this.indexSpaceLeft=this.countPagePagination,this.indexSpaceRight=null,!0;if(this.currentPage>=this.countPagePagination-2&&t>=this.countPagePagination-4)return this.indexSpaceLeft=null,this.indexSpaceRight=1,!0;if(3<this.currentPage<this.countPagePagination-3&&(t===this.currentPage+1||t===this.currentPage-1||t===this.currentPage))return this.indexSpaceLeft=this.countPagePagination,this.indexSpaceRight=1,!0}else return!0;return!1}},computed:{setCountOfRows(){return this.currentPage===1||this.countPagePagination===1?"1 - "+(this.countPagePagination>1?this.limitValue:this.countRows):this.countPagePagination===this.currentPage?(this.currentPage-1)*this.limitValue+" - "+this.countRows:(this.currentPage-1)*this.limitValue+1+" - "+this.currentPage*this.limitValue},countPagePagination(){return Math.ceil(this.countRows/this.limitValue)}},components:{IbIconButton:ut,IbIcon:Le,IbInput:br,IbLabel:dn,IbLimitSelector:Ri,IbTooltip:jt}},Ys={class:"report-controls"},Ws={class:"repot-pagination"},Zs={class:"pagination-input"},Js={class:"row-count"},Xs={class:"pagination-wrapper"},Qs=["onClick"];function ed(t,n,e,o,a,r){const s=i.resolveComponent("ib-limit-selector"),d=i.resolveComponent("ib-label"),u=i.resolveComponent("ib-input"),p=i.resolveComponent("ib-icon"),h=i.resolveComponent("ib-tooltip"),f=i.resolveComponent("ib-icon-button");return i.openBlock(),i.createElementBlock("div",Ys,[i.createVNode(s,{onSelect:r.changeLimit,value:a.limitValue,"label-select":e.labelSelect},null,8,["onSelect","value","label-select"]),i.createElementVNode("div",Ws,[e.showPaginationInput?(i.openBlock(),i.createElementBlock(i.Fragment,{key:0},[i.createVNode(d,null,{default:i.withCtx(()=>[i.createTextVNode(i.toDisplayString(e.labelInput),1)]),_:1}),i.createElementVNode("div",Zs,[i.createVNode(u,{type:"number",debounce:500,onInput:r.onInput},null,8,["onInput"])])],64)):i.createCommentVNode("",!0),i.createElementVNode("div",Js,i.toDisplayString(r.setCountOfRows+" of "+e.countRows),1),i.createVNode(f,{kind:"tertiary",size:"m",class:"toggle-children button-prev",disabled:a.currentPage===1,onClick:n[0]||(n[0]=l=>r.onSelect(a.currentPage-1))},{default:i.withCtx(()=>[i.createVNode(p,{name:"chevron-back-outline"}),e.tooltipTextPrev?(i.openBlock(),i.createBlock(h,{key:0,text:e.tooltipTextPrev},null,8,["text"])):i.createCommentVNode("",!0)]),_:1},8,["disabled"]),i.createElementVNode("ul",Xs,[(i.openBlock(!0),i.createElementBlock(i.Fragment,null,i.renderList(r.countPagePagination,(l,c)=>i.withDirectives((i.openBlock(),i.createElementBlock("li",{key:c,class:i.normalizeClass(["pagination-item",{active:c+1===a.currentPage,"dots-left":a.indexSpaceLeft===c+1,"dots-right":a.indexSpaceRight===c+1}]),onClick:_=>r.onSelect(c+1)},[i.createElementVNode("button",null,i.toDisplayString(c+1),1)],10,Qs)),[[i.vShow,r.showItem(c+1)]])),128))]),i.createVNode(f,{kind:"tertiary",size:"m",class:"toggle-children button-next",disabled:a.currentPage===r.countPagePagination,onClick:n[1]||(n[1]=l=>r.onSelect(a.currentPage+1))},{default:i.withCtx(()=>[i.createVNode(p,{name:"chevron-forward-outline"}),e.tooltipTextNext?(i.openBlock(),i.createBlock(h,{key:0,text:e.tooltipTextNext},null,8,["text"])):i.createCommentVNode("",!0)]),_:1},8,["disabled"])])])}const td=_e(Gs,[["render",ed]]),cn={PROGRESS:"progress",SUCCESS:"success",FAILED:"failed",CANCELING:"canceling",CANCELED:"canceled"},A1="",nd={props:{states:{type:String,default:cn.PROGRESS},progress:{type:[String,Number],default:0},ariaLabel:{type:String,required:!0}},computed:{classes(){const t=["ib-progress-bar"];return t.push(`progress-bar-${this.states}`),t},iconName(){return this.states===cn.SUCCESS?"checkmark-circle":this.states===cn.FAILED||this.states===cn.CANCELING||this.states===cn.CANCELED?"close-circle":""}},components:{IbIcon:Le}},ji=t=>(i.pushScopeId("data-v-a0217859"),t=t(),i.popScopeId(),t),rd={class:"ib-progress-bar-wrapper"},id=["aria-label","aria-valuenow"],od=[ji(()=>i.createElementVNode("div",{class:"gradient"},null,-1))],ad=ji(()=>i.createElementVNode("div",null,null,-1));function ld(t,n,e,o,a,r){const s=i.resolveComponent("ib-icon");return i.openBlock(),i.createElementBlock("div",rd,[i.createElementVNode("div",{class:i.normalizeClass(r.classes)},[i.createElementVNode("div",{class:"progress",role:"meter","aria-label":e.ariaLabel,"aria-valuemin":"0","aria-valuemax":"100","aria-valuenow":e.progress,style:i.normalizeStyle({width:e.progress+"%"})},od,12,id),ad],2),i.withDirectives(i.createVNode(s,{class:"status-icon",name:r.iconName},null,8,["name"]),[[i.vShow,r.iconName.length]])])}const sd=_e(nd,[["render",ld],["__scopeId","data-v-a0217859"]]),dd={new:`<svg width="11" height="11" viewBox="0 0 11 11" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
29
|
+
*****************************************************/(function(t,n){(function(e,o){t.exports=o()})(je,function(){class e{constructor(r,s=!0,l=[],u=5e3){this.ctx=r,this.iframes=s,this.exclude=l,this.iframesTimeout=u}static matches(r,s){const l=typeof s=="string"?[s]:s,u=r.matches||r.matchesSelector||r.msMatchesSelector||r.mozMatchesSelector||r.oMatchesSelector||r.webkitMatchesSelector;if(u){let d=!1;return l.every(p=>!u.call(r,p)||(d=!0,!1)),d}return!1}getContexts(){let r=[];return(this.ctx!==void 0&&this.ctx?NodeList.prototype.isPrototypeOf(this.ctx)?Array.prototype.slice.call(this.ctx):Array.isArray(this.ctx)?this.ctx:typeof this.ctx=="string"?Array.prototype.slice.call(document.querySelectorAll(this.ctx)):[this.ctx]:[]).forEach(s=>{const l=r.filter(u=>u.contains(s)).length>0;r.indexOf(s)!==-1||l||r.push(s)}),r}getIframeContents(r,s,l=()=>{}){let u;try{const d=r.contentWindow;if(u=d.document,!d||!u)throw new Error("iframe inaccessible")}catch{l()}u&&s(u)}isIframeBlank(r){const s="about:blank",l=r.getAttribute("src").trim();return r.contentWindow.location.href===s&&l!==s&&l}observeIframeLoad(r,s,l){let u=!1,d=null;const p=()=>{if(!u){u=!0,clearTimeout(d);try{this.isIframeBlank(r)||(r.removeEventListener("load",p),this.getIframeContents(r,s,l))}catch{l()}}};r.addEventListener("load",p),d=setTimeout(p,this.iframesTimeout)}onIframeReady(r,s,l){try{r.contentWindow.document.readyState==="complete"?this.isIframeBlank(r)?this.observeIframeLoad(r,s,l):this.getIframeContents(r,s,l):this.observeIframeLoad(r,s,l)}catch{l()}}waitForIframes(r,s){let l=0;this.forEachIframe(r,()=>!0,u=>{l++,this.waitForIframes(u.querySelector("html"),()=>{--l||s()})},u=>{u||s()})}forEachIframe(r,s,l,u=()=>{}){let d=r.querySelectorAll("iframe"),p=d.length,f=0;d=Array.prototype.slice.call(d);const c=()=>{--p<=0&&u(f)};p||c(),d.forEach(h=>{e.matches(h,this.exclude)?c():this.onIframeReady(h,v=>{s(h)&&(f++,l(v)),c()},c)})}createIterator(r,s,l){return document.createNodeIterator(r,s,l,!1)}createInstanceOnIframe(r){return new e(r.querySelector("html"),this.iframes)}compareNodeIframe(r,s,l){const u=r.compareDocumentPosition(l),d=Node.DOCUMENT_POSITION_PRECEDING;return!!(u&d&&(s===null||s.compareDocumentPosition(l)&Node.DOCUMENT_POSITION_FOLLOWING))}getIteratorNode(r){const s=r.previousNode();return{prevNode:s,node:(s===null||r.nextNode())&&r.nextNode()}}checkIframeFilter(r,s,l,u){let d=!1,p=!1;return u.forEach((f,c)=>{f.val===l&&(d=c,p=f.handled)}),this.compareNodeIframe(r,s,l)?(d!==!1||p?d===!1||p||(u[d].handled=!0):u.push({val:l,handled:!0}),!0):(d===!1&&u.push({val:l,handled:!1}),!1)}handleOpenIframes(r,s,l,u){r.forEach(d=>{d.handled||this.getIframeContents(d.val,p=>{this.createInstanceOnIframe(p).forEachNode(s,l,u)})})}iterateThroughNodes(r,s,l,u,d){const p=this.createIterator(s,r,u);let f,c,h=[],v=[],m=()=>({prevNode:c,node:f}=this.getIteratorNode(p),f);for(;m();)this.iframes&&this.forEachIframe(s,_=>this.checkIframeFilter(f,c,_,h),_=>{this.createInstanceOnIframe(_).forEachNode(r,y=>v.push(y),u)}),v.push(f);v.forEach(_=>{l(_)}),this.iframes&&this.handleOpenIframes(h,r,l,u),d()}forEachNode(r,s,l,u=()=>{}){const d=this.getContexts();let p=d.length;p||u(),d.forEach(f=>{const c=()=>{this.iterateThroughNodes(r,f,s,l,()=>{--p<=0&&u()})};this.iframes?this.waitForIframes(f,c):c()})}}class o{constructor(r){this.ctx=r,this.ie=!1;const s=window.navigator.userAgent;(s.indexOf("MSIE")>-1||s.indexOf("Trident")>-1)&&(this.ie=!0)}set opt(r){this._opt=Object.assign({},{element:"",className:"",exclude:[],iframes:!1,iframesTimeout:5e3,separateWordSearch:!0,diacritics:!0,synonyms:{},accuracy:"partially",acrossElements:!1,caseSensitive:!1,ignoreJoiners:!1,ignoreGroups:0,ignorePunctuation:[],wildcards:"disabled",each:()=>{},noMatch:()=>{},filter:()=>!0,done:()=>{},debug:!1,log:window.console},r)}get opt(){return this._opt}get iterator(){return new e(this.ctx,this.opt.iframes,this.opt.exclude,this.opt.iframesTimeout)}log(r,s="debug"){const l=this.opt.log;this.opt.debug&&typeof l=="object"&&typeof l[s]=="function"&&l[s](`mark.js: ${r}`)}escapeStr(r){return r.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g,"\\$&")}createRegExp(r){return this.opt.wildcards!=="disabled"&&(r=this.setupWildcardsRegExp(r)),r=this.escapeStr(r),Object.keys(this.opt.synonyms).length&&(r=this.createSynonymsRegExp(r)),(this.opt.ignoreJoiners||this.opt.ignorePunctuation.length)&&(r=this.setupIgnoreJoinersRegExp(r)),this.opt.diacritics&&(r=this.createDiacriticsRegExp(r)),r=this.createMergedBlanksRegExp(r),(this.opt.ignoreJoiners||this.opt.ignorePunctuation.length)&&(r=this.createJoinersRegExp(r)),this.opt.wildcards!=="disabled"&&(r=this.createWildcardsRegExp(r)),r=this.createAccuracyRegExp(r)}createSynonymsRegExp(r){const s=this.opt.synonyms,l=this.opt.caseSensitive?"":"i",u=this.opt.ignoreJoiners||this.opt.ignorePunctuation.length?"\0":"";for(let d in s)if(s.hasOwnProperty(d)){const p=s[d],f=this.opt.wildcards!=="disabled"?this.setupWildcardsRegExp(d):this.escapeStr(d),c=this.opt.wildcards!=="disabled"?this.setupWildcardsRegExp(p):this.escapeStr(p);f!==""&&c!==""&&(r=r.replace(new RegExp(`(${this.escapeStr(f)}|${this.escapeStr(c)})`,`gm${l}`),u+`(${this.processSynomyms(f)}|${this.processSynomyms(c)})`+u))}return r}processSynomyms(r){return(this.opt.ignoreJoiners||this.opt.ignorePunctuation.length)&&(r=this.setupIgnoreJoinersRegExp(r)),r}setupWildcardsRegExp(r){return(r=r.replace(/(?:\\)*\?/g,s=>s.charAt(0)==="\\"?"?":"")).replace(/(?:\\)*\*/g,s=>s.charAt(0)==="\\"?"*":"")}createWildcardsRegExp(r){let s=this.opt.wildcards==="withSpaces";return r.replace(/\u0001/g,s?"[\\S\\s]?":"\\S?").replace(/\u0002/g,s?"[\\S\\s]*?":"\\S*")}setupIgnoreJoinersRegExp(r){return r.replace(/[^(|)\\]/g,(s,l,u)=>{let d=u.charAt(l+1);return/[(|)\\]/.test(d)||d===""?s:s+"\0"})}createJoinersRegExp(r){let s=[];const l=this.opt.ignorePunctuation;return Array.isArray(l)&&l.length&&s.push(this.escapeStr(l.join(""))),this.opt.ignoreJoiners&&s.push("\\u00ad\\u200b\\u200c\\u200d"),s.length?r.split(/\u0000+/).join(`[${s.join("")}]*`):r}createDiacriticsRegExp(r){const s=this.opt.caseSensitive?"":"i",l=this.opt.caseSensitive?["aàáảãạăằắẳẵặâầấẩẫậäåāą","AÀÁẢÃẠĂẰẮẲẴẶÂẦẤẨẪẬÄÅĀĄ","cçćč","CÇĆČ","dđď","DĐĎ","eèéẻẽẹêềếểễệëěēę","EÈÉẺẼẸÊỀẾỂỄỆËĚĒĘ","iìíỉĩịîïī","IÌÍỈĨỊÎÏĪ","lł","LŁ","nñňń","NÑŇŃ","oòóỏõọôồốổỗộơởỡớờợöøō","OÒÓỎÕỌÔỒỐỔỖỘƠỞỠỚỜỢÖØŌ","rř","RŘ","sšśșş","SŠŚȘŞ","tťțţ","TŤȚŢ","uùúủũụưừứửữựûüůū","UÙÚỦŨỤƯỪỨỬỮỰÛÜŮŪ","yýỳỷỹỵÿ","YÝỲỶỸỴŸ","zžżź","ZŽŻŹ"]:["aàáảãạăằắẳẵặâầấẩẫậäåāąAÀÁẢÃẠĂẰẮẲẴẶÂẦẤẨẪẬÄÅĀĄ","cçćčCÇĆČ","dđďDĐĎ","eèéẻẽẹêềếểễệëěēęEÈÉẺẼẸÊỀẾỂỄỆËĚĒĘ","iìíỉĩịîïīIÌÍỈĨỊÎÏĪ","lłLŁ","nñňńNÑŇŃ","oòóỏõọôồốổỗộơởỡớờợöøōOÒÓỎÕỌÔỒỐỔỖỘƠỞỠỚỜỢÖØŌ","rřRŘ","sšśșşSŠŚȘŞ","tťțţTŤȚŢ","uùúủũụưừứửữựûüůūUÙÚỦŨỤƯỪỨỬỮỰÛÜŮŪ","yýỳỷỹỵÿYÝỲỶỸỴŸ","zžżźZŽŻŹ"];let u=[];return r.split("").forEach(d=>{l.every(p=>{if(p.indexOf(d)!==-1){if(u.indexOf(p)>-1)return!1;r=r.replace(new RegExp(`[${p}]`,`gm${s}`),`[${p}]`),u.push(p)}return!0})}),r}createMergedBlanksRegExp(r){return r.replace(/[\s]+/gim,"[\\s]+")}createAccuracyRegExp(r){const s="!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~¡¿";let l=this.opt.accuracy,u=typeof l=="string"?l:l.value,d=typeof l=="string"?[]:l.limiters,p="";switch(d.forEach(f=>{p+=`|${this.escapeStr(f)}`}),u){case"partially":default:return`()(${r})`;case"complementary":return`()([^${p="\\s"+(p||this.escapeStr(s))}]*${r}[^${p}]*)`;case"exactly":return`(^|\\s${p})(${r})(?=$|\\s${p})`}}getSeparatedKeywords(r){let s=[];return r.forEach(l=>{this.opt.separateWordSearch?l.split(" ").forEach(u=>{u.trim()&&s.indexOf(u)===-1&&s.push(u)}):l.trim()&&s.indexOf(l)===-1&&s.push(l)}),{keywords:s.sort((l,u)=>u.length-l.length),length:s.length}}isNumeric(r){return Number(parseFloat(r))==r}checkRanges(r){if(!Array.isArray(r)||Object.prototype.toString.call(r[0])!=="[object Object]")return this.log("markRanges() will only accept an array of objects"),this.opt.noMatch(r),[];const s=[];let l=0;return r.sort((u,d)=>u.start-d.start).forEach(u=>{let{start:d,end:p,valid:f}=this.callNoMatchOnInvalidRanges(u,l);f&&(u.start=d,u.length=p-d,s.push(u),l=p)}),s}callNoMatchOnInvalidRanges(r,s){let l,u,d=!1;return r&&r.start!==void 0?(u=(l=parseInt(r.start,10))+parseInt(r.length,10),this.isNumeric(r.start)&&this.isNumeric(r.length)&&u-s>0&&u-l>0?d=!0:(this.log(`Ignoring invalid or overlapping range: ${JSON.stringify(r)}`),this.opt.noMatch(r))):(this.log(`Ignoring invalid range: ${JSON.stringify(r)}`),this.opt.noMatch(r)),{start:l,end:u,valid:d}}checkWhitespaceRanges(r,s,l){let u,d=!0,p=l.length,f=s-p,c=parseInt(r.start,10)-f;return(u=(c=c>p?p:c)+parseInt(r.length,10))>p&&(u=p,this.log(`End range automatically set to the max value of ${p}`)),c<0||u-c<0||c>p||u>p?(d=!1,this.log(`Invalid range: ${JSON.stringify(r)}`),this.opt.noMatch(r)):l.substring(c,u).replace(/\s+/g,"")===""&&(d=!1,this.log("Skipping whitespace only range: "+JSON.stringify(r)),this.opt.noMatch(r)),{start:c,end:u,valid:d}}getTextNodes(r){let s="",l=[];this.iterator.forEachNode(NodeFilter.SHOW_TEXT,u=>{l.push({start:s.length,end:(s+=u.textContent).length,node:u})},u=>this.matchesExclude(u.parentNode)?NodeFilter.FILTER_REJECT:NodeFilter.FILTER_ACCEPT,()=>{r({value:s,nodes:l})})}matchesExclude(r){return e.matches(r,this.opt.exclude.concat(["script","style","title","head","html"]))}wrapRangeInTextNode(r,s,l){const u=this.opt.element?this.opt.element:"mark",d=r.splitText(s),p=d.splitText(l-s);let f=document.createElement(u);return f.setAttribute("data-markjs","true"),this.opt.className&&f.setAttribute("class",this.opt.className),f.textContent=d.textContent,d.parentNode.replaceChild(f,d),p}wrapRangeInMappedTextNode(r,s,l,u,d){r.nodes.every((p,f)=>{const c=r.nodes[f+1];if(c===void 0||c.start>s){if(!u(p.node))return!1;const h=s-p.start,v=(l>p.end?p.end:l)-p.start,m=r.value.substr(0,p.start),_=r.value.substr(v+p.start);if(p.node=this.wrapRangeInTextNode(p.node,h,v),r.value=m+_,r.nodes.forEach((y,g)=>{g>=f&&(r.nodes[g].start>0&&g!==f&&(r.nodes[g].start-=v),r.nodes[g].end-=v)}),l-=v,d(p.node.previousSibling,p.start),!(l>p.end))return!1;s=p.end}return!0})}wrapMatches(r,s,l,u,d){const p=s===0?0:s+1;this.getTextNodes(f=>{f.nodes.forEach(c=>{let h;for(c=c.node;(h=r.exec(c.textContent))!==null&&h[p]!=="";){if(!l(h[p],c))continue;let v=h.index;if(p!==0)for(let m=1;m<p;m++)v+=h[m].length;c=this.wrapRangeInTextNode(c,v,v+h[p].length),u(c.previousSibling),r.lastIndex=0}}),d()})}wrapMatchesAcrossElements(r,s,l,u,d){const p=s===0?0:s+1;this.getTextNodes(f=>{let c;for(;(c=r.exec(f.value))!==null&&c[p]!=="";){let h=c.index;if(p!==0)for(let m=1;m<p;m++)h+=c[m].length;const v=h+c[p].length;this.wrapRangeInMappedTextNode(f,h,v,m=>l(c[p],m),(m,_)=>{r.lastIndex=_,u(m)})}d()})}wrapRangeFromIndex(r,s,l,u){this.getTextNodes(d=>{const p=d.value.length;r.forEach((f,c)=>{let{start:h,end:v,valid:m}=this.checkWhitespaceRanges(f,p,d.value);m&&this.wrapRangeInMappedTextNode(d,h,v,_=>s(_,f,d.value.substring(h,v),c),_=>{l(_,f)})}),u()})}unwrapMatches(r){const s=r.parentNode;let l=document.createDocumentFragment();for(;r.firstChild;)l.appendChild(r.removeChild(r.firstChild));s.replaceChild(l,r),this.ie?this.normalizeTextNode(s):s.normalize()}normalizeTextNode(r){if(r){if(r.nodeType===3)for(;r.nextSibling&&r.nextSibling.nodeType===3;)r.nodeValue+=r.nextSibling.nodeValue,r.parentNode.removeChild(r.nextSibling);else this.normalizeTextNode(r.firstChild);this.normalizeTextNode(r.nextSibling)}}markRegExp(r,s){this.opt=s,this.log(`Searching with expression "${r}"`);let l=0,u="wrapMatches";const d=p=>{l++,this.opt.each(p)};this.opt.acrossElements&&(u="wrapMatchesAcrossElements"),this[u](r,this.opt.ignoreGroups,(p,f)=>this.opt.filter(f,p,l),d,()=>{l===0&&this.opt.noMatch(r),this.opt.done(l)})}mark(r,s){this.opt=s;let l=0,u="wrapMatches";const{keywords:d,length:p}=this.getSeparatedKeywords(typeof r=="string"?[r]:r),f=this.opt.caseSensitive?"":"i",c=h=>{let v=new RegExp(this.createRegExp(h),`gm${f}`),m=0;this.log(`Searching with expression "${v}"`),this[u](v,1,(_,y)=>this.opt.filter(y,h,l,m),_=>{m++,l++,this.opt.each(_)},()=>{m===0&&this.opt.noMatch(h),d[p-1]===h?this.opt.done(l):c(d[d.indexOf(h)+1])})};this.opt.acrossElements&&(u="wrapMatchesAcrossElements"),p===0?this.opt.done(l):c(d[0])}markRanges(r,s){this.opt=s;let l=0,u=this.checkRanges(r);u&&u.length?(this.log("Starting to mark with the following ranges: "+JSON.stringify(u)),this.wrapRangeFromIndex(u,(d,p,f,c)=>this.opt.filter(d,p,f,c),(d,p)=>{l++,this.opt.each(d,p)},()=>{this.opt.done(l)})):this.opt.done(l)}unmark(r){this.opt=r;let s=this.opt.element?this.opt.element:"*";s+="[data-markjs]",this.opt.className&&(s+=`.${this.opt.className}`),this.log(`Removal selector "${s}"`),this.iterator.forEachNode(NodeFilter.SHOW_ELEMENT,l=>{this.unwrapMatches(l)},l=>{const u=e.matches(l,s),d=this.matchesExclude(l);return!u||d?NodeFilter.FILTER_REJECT:NodeFilter.FILTER_ACCEPT},this.opt.done)}}return function(a){const r=new o(a);return this.mark=(s,l)=>(r.mark(s,l),this),this.markRegExp=(s,l)=>(r.markRegExp(s,l),this),this.markRanges=(s,l)=>(r.markRanges(s,l),this),this.unmark=s=>(r.unmark(s),this),this}})})(xo);var md=xo.exports;const gd=Cn(md),yd={props:{infiniteLoader:{type:Boolean,default:!0}},watch:{infiniteLoader(t){t||infiniteLoaderObserver.disconnect()}},data(){return{infiniteLoaderObserver:null}},mounted(){this.infiniteLoader&&(this.infiniteLoaderObserver=new IntersectionObserver(t=>{t.forEach(n=>{n.isIntersecting&&this.$emit("loadMoreOptions")})}),this.infiniteLoaderObserver.observe(this.$refs.infinityLoader))},beforeDestroy(){this.infiniteLoader&&(infiniteLoaderObserver==null||infiniteLoaderObserver.disconnect())},emits:["loadMoreOptions"]},wp="";function To(t){return JSON.parse(JSON.stringify(t))}const bd={name:"IbTreeSelect",inject:["LANG_COMPONENTS"],mixins:[yd],props:{classList:[String,Array],keywordHighlighter:{type:Boolean,default:!0},placeholder:{type:String,default:""},searchPlaceholderText:{type:String,default:""},clearButtonMessage:{type:String,default:""},showClearButton:{type:Boolean,default:!0},isResizable:{type:Boolean,default:!1},menuSize:{type:[String,Number]},initialSize:{left:0,right:0},ariaLabel:{type:String,default:""},name:String,id:{type:String,default(){return pt()}},options:{type:[Array,Function],default(){return[]}},modelValue:{type:[Number,String,Array]},value:{type:[Number,String,Array],default(){return[]}},maxSelectedNames:{type:Number,default:2},isMultiple:{type:Boolean,default:!0},parentAutoCheck:{type:Boolean,default:!0},strings:{type:Object,default(){return{}}},onlyEndNodes:{type:Boolean,default:!1},isRequired:{type:Boolean,default:!0},htmlOptionTitle:{type:Boolean,default:!1},isBookmarkable:{type:Boolean,default:!1},initBookmarks:{type:Array,default:()=>[]},showInputs:{type:Boolean,default(t){return t.isMultiple}},dependency:{type:String},filterId:{type:String,default(){return pt()}},staticPlaceholder:{type:Boolean,default:!1},useSearch:{type:Boolean,default:!1},isWatching:{type:Boolean,default:!1},vertical:{type:String},emptyMessage:{type:String,default:""},errorMessage:{type:String,default:""},allOptions:{type:Boolean,default:!0},watchClearValue:{type:Boolean,default:!1},isToggle:{type:Boolean,default:!1},alphabetSort:{type:Boolean,default:!1},disable:{type:Boolean,default:!1},searchDebounce:{type:Number,default:0},alphabeticStyle:{type:Boolean,default:!1}},emits:["close","input","blur","search","resize","submit","clearValue","toggle-bookmarked-option","update:modelValue"],watch:{value(t){this.val=t,(!Array.isArray(t)||t.join(",")!==Object.keys(this.selected).join(","))&&this.setPreparedValues(this.actualOptions,!1)},modelValue:{handler(t){this.val=t,this.actualOptions=[],this.setPreparedValues()},deep:!0},val(t){this.watchClearValue&&(!t||Array.isArray(t)&&!t.length)&&this.setPreparedValues(this.actualOptions).then(()=>{const n=Object.keys(this.selected);this.$globalEvents.$emit("select-"+this.filterId+":update",{values:n,filter:this.filterId})})},options:{handler(t){this.initialOptions=typeof t=="function"?t:To(t)},deep:!0},initialOptions(t){let n=!0;if(typeof t=="function")n=!1;else{const e=[],o=t;Array.prototype.forEach.call(o,a=>{a.id!==void 0&&e.push(a.id)}),n=JSON.stringify(e)===JSON.stringify(this.optionsIdsWatch),this.optionsIdsWatch=e}(this.isInitialized&&!n||this.isWatching)&&this.setPreparedValues().then(()=>{const e=Object.keys(this.selected);this.$globalEvents.$emit("select-"+this.filterId+":update",{values:e,filter:this.filterId})})},dependency(t,n){this.$nextTick(()=>{this.registerDependency(n)})},initBookmarks(){this.actualBookmarkedOptions={},this.setBookmarkedOptions(this.actualOptions)}},mounted(){this.marker=new gd(this.$refs.list.$el),this.registerDependency(),this.$globalEvents.$on("select:refresh",()=>{this.setPreparedValues()}),document.addEventListener("mousemove",this.onResize),document.addEventListener("mouseup",this.endResizing)},data(){var t,n,e,o,a,r,s,l;return this.defaultFilter=u=>{this.marker.unmark();const d=this.filterString.toLowerCase().trim();this.filterFunc.call(this,u,d),d&&this.keywordHighlighter&&this.marker.mark(d)},{initialOptions:typeof this.options=="function"?this.options:To(this.options),val:this.modelValue?this.modelValue:this.value,size:{left:this.initialSize&&this.initialSize.left||0,right:this.initialSize&&this.initialSize.right||0},resizingProp:null,isInitialized:!1,optionsIdsWatch:[],isLoading:!1,actualName:this.isMultiple?this.name+"[]":this.name,filterString:"",actualOptions:[],actualBookmarkedOptions:{},selected:[],isOpen:!1,verticalVal:this.vertical??"bottom",allOptionsIsChecked:!0,hasTreeChildren:!1,uid:`f${(~~(Math.random()*1e8)).toString(16)}`,focusedOptionId:"",actualStrings:{searchPlaceholder:lang(this.searchPlaceholderText.length?this.searchPlaceholderText:"search_placeholder",(t=this.LANG_COMPONENTS)==null?void 0:t.COMPONENT_SELECT),emptyTitle:lang("empty_title",(n=this.LANG_COMPONENTS)==null?void 0:n.COMPONENT_SELECT),selectAllOptions:lang("all_options",(e=this.LANG_COMPONENTS)==null?void 0:e.COMPONENT_SELECT),allSelected:lang("all_selected",(o=this.LANG_COMPONENTS)==null?void 0:o.COMPONENT_SELECT),loading:lang("loading",(a=this.LANG_COMPONENTS)==null?void 0:a.COMPONENT_SELECT)+"...",selectedCount:lang("selected_count",(r=this.LANG_COMPONENTS)==null?void 0:r.COMPONENT_SELECT),buttonTitle:this.buttonTitle||lang("button_title",(s=this.LANG_COMPONENTS)==null?void 0:s.COMPONENT_SELECT),requiredDependencyNotFilled:this.requiredDependencyNotFilled||lang("required_dependency_are_not_filled",(l=this.LANG_COMPONENTS)==null?void 0:l.COMPONENT_SELECT),...this.strings},dependencyValue:null}},methods:{onBlur(){setTimeout(()=>{this.isOpen||this.$emit("blur")},200)},inputKeyupDown(){this.focusOnFirstOptions()},comboboxKeyupDown(){if(this.showSearch){this.$refs.search.focus();return}this.focusOnFirstOptions()},focus(){this.$refs.combobox.focus()},focusOnFirstOptions(){this.$refs.list.$el.querySelector("[tabindex]:not(hidden)").focus()},startResizing(t){this.resizingProp=t},endResizing(){this.resizingProp&&(this.resizingProp=null,this.$emit("resize",this.size))},onResize(t){switch(this.resizingProp){case"left":this.size.left=Math.max(this.size.left-t.movementX,0);break;case"right":this.size.right=Math.max(this.size.right+t.movementX,0);break}},registerDependency(t){this.dependency?(this.$globalEvents.$on("select-"+this.dependency+":update",n=>{this.clear(),this.dependencyValue=n,this.dependencyValue&&this.dependencyValue.values&&(!Array.isArray(this.dependencyValue.values)||this.dependencyValue.values.length)&&this.setPreparedValues()}),this.isLoading=!1):(this.$globalEvents.$off("select-"+t+":update"),this.setPreparedValues().then(()=>{const n=Object.keys(this.selected);this.$globalEvents.$emit("select-"+this.filterId+":update",{values:n,filter:this.filterId})}))},filter(t,n){this.filterString=t,this.$emit("search",this.filterString),this.defaultFilter(n)},setPreparedValues(t){let n=t||this.initialOptions;return this.alphabetSort&&(n=n.sort((e,o)=>e.title.toLowerCase().localeCompare(o.title.toLowerCase()))),this.prepare(n).then(([e,o])=>{this.actualOptions=e,this.allOptionsIsChecked=this.checkIfOptionsChecked(e),this.isInitialized=!0,this.selected=o,this.setBookmarkedOptions(e)})},clear(){this.setPreparedValues(),this.allOptionsIsChecked=!1,this.selected=[],this.isMultiple?(this.$emit("update:modelValue",null),this.$emit("input",null),this.$emit("clear-value",null)):(this.$emit("update:modelValue",[]),this.$emit("input",[]),this.$emit("clear-value",[])),this.setPreparedValues()},clearValue(){this.clear(),this.setPreparedValues()},prepare(t,n=!0){return new Promise(e=>{const o={},a=[];let r=Promise.resolve();typeof t=="function"?(this.isLoading=!0,this.dependency&&(t=t.bind(null,this.dependencyValue)),r=r.then(t)):r=r.then(()=>t),r.then(s=>(this.isLoading=!1,s.forEach(l=>{l.initiallyVisible=typeof l.visible>"u"?!0:l.visible,l.visible=l.initiallyVisible,l.readonly=!!l.readonly,l.checked=this.isMultiple?this.val!==null&&this.val.findIndex(u=>l.id==u)>-1:this.val!==null&&this.val==l.id,l.checked&&(!this.onlyEndNodes||!l.children)&&(o[l.id]=l),l.children&&(this.hasTreeChildren=!0,l.isChildrenVisible=!1),a.push(new Promise(u=>{l.children?this.prepare(l.children).then(([d,p])=>{l.children=d,this.parentAutoCheck&&(l.checked=this.checkIfOptionsChecked(l.children)),Object.assign(o,p),u(l)}):u(l)}))}),Promise.all(a).then(l=>{e([l,o])}))).catch(s=>{throw this.isLoading=!1,s})})},filterFunc(t,n){let e=0;return t.forEach(o=>{let a=o.initiallyVisible&&o.title&&o.title.toString().toLowerCase().includes(n)&&!this.actualBookmarkedOptions[o.id];if(o.children&&o.children.length){let r=this.filterFunc(o.children,n);e+=r,r&&(o.isChildrenVisible=n.length>0||!!Object.keys(this.actualBookmarkedOptions).length,o.isDisabled=r<o.children.length&&!this.isBookmarkable),a?r||(a=!1):a=!!r}o.visible=a,a&&e++}),e},submit(){this.change();const t=Object.keys(this.selected);this.$globalEvents.$emit("select-"+this.filterId+":submit",{values:t,filter:this.filterId}),this.$emit("submit")},change(){const t=Object.keys(this.selected);this.isMultiple?(this.$emit("update:modelValue",t),this.$emit("input",t)):(this.$emit("update:modelValue",t[0]),this.$emit("input",t[0])),this.$globalEvents.$emit("select-"+this.filterId+":update",{values:t,filter:this.filterId}),this.$refs.dropdown.close()},checkIfOptionsChecked(t){return t.every(n=>n.checked||n.readonly)},registerCheck(t,n,e){if(n)if(t.checked=!0,this.isMultiple)this.onlyEndNodes&&t.children&&t.children.length||(this.selected[t.id]=t,this.$emit("update:modelValue",Object.keys(this.selected)),this.$emit("input",Object.keys(this.selected)));else{const o=Object.keys(this.selected)[0];o&&(this.selected[o].checked=!1),this.selected={[t.id]:t},this.change()}else delete this.selected[t.id],t.checked=!1,this.$emit("update:modelValue",Object.keys(this.selected)),this.$emit("input",Object.keys(this.selected));this.toggleDuplicateOptions(this.actualOptions,t.id,n),e&&(this.allOptionsIsChecked=this.checkIfOptionsChecked(this.actualOptions))},toggleDuplicateOptions(t,n,e){for(let o of t)o.id===n&&(o.checked=e),o.children&&this.toggleDuplicateOptions(o.children,n,e)},manageAll(){this.allOptionsIsChecked=!this.allOptionsIsChecked,this.traverseTree(this.actualOptions,t=>{t.readonly||this.registerCheck(t,this.allOptionsIsChecked,!1)})},traverseTree(t,n){t.forEach(e=>{n(e),e.children&&e.children.length&&this.traverseTree(e.children,n)})},getArrayOptions(t){let n=[];for(let e of t)n.push(e),e.children&&(n=n.concat(this.getArrayOptions(e.children)));return n},toggleBookmark(t){this.actualBookmarkedOptions[t.id]?delete this.actualBookmarkedOptions[t.id]:this.actualBookmarkedOptions[t.id]=t,this.$emit("toggle-bookmarked-option",t.id),this.filter(this.filterString,this.actualOptions)},setBookmarkedOptions(t){t.forEach(n=>{n.children&&n.children.length?this.setBookmarkedOptions(n.children):this.initBookmarks.includes(n.id)&&(this.actualBookmarkedOptions[n.id]=n)}),this.filter(this.filterString,t)},onClose(){this.isOpen=!1,this.filter("",this.actualOptions),this.isMultiple?this.$emit("close",Object.keys(this.selected)):this.$emit("close",Object.keys(this.selected)[0]),this.$emit("blur"),this.verticalVal=this.vertical??"bottom"},onOpen(){const t=document.documentElement.scrollHeight;this.isOpen=!0,this.vertical!=="bottom"&&this.$nextTick(()=>{document.documentElement.scrollHeight>t&&(this.verticalVal="top")})}},computed:{hasTrigger(){return!!this.$slots.trigger},hasTriggerContent(){return!!this.$slots.triggerContent},hasEmptyMessage(){return!!this.$slots.emptyMessage},treeDropPos(){return this.menuSize?{width:this.menuSize+"px",maxWidth:this.menuSize+"px",minWidth:this.menuSize+"px"}:{width:"auto",position:"absolute",left:-this.size.left+"px",right:-this.size.right+"px"}},hasHierarchy(){return this.actualOptions.some(t=>t.children)},selectedKeys(){return Object.keys(this.selected).filter(t=>{if(!this.onlyEndNodes||!this.selected[t].children)return!0})},selectStatus(){return this.staticPlaceholder?this.placeholder:this.isLoading?this.actualStrings.loading:this.selectedKeys.length?this.selectedKeys.length<this.maxSelectedNames?this.selectedKeys.map(t=>this.selected[t].title).join(","):this.selectedKeys.length<this.optionsCount?this.actualStrings.selectedCount.replace("{selected}",this.selectedKeys.length).replace("{all}",this.optionsCount):this.actualStrings.allSelected:this.emptyMessage},isEmpty(){return Array.isArray(this.value)?!this.value.length:!this.value},requiredDependencyNotFilled(){return this.dependency&&(!this.dependencyValue||!this.dependencyValue.values||!this.dependencyValue.values.length)},showSearch(){return this.useSearch||this.optionsCount>10&&!this.alphabeticStyle},arrayOfOptions(){return this.getArrayOptions(this.actualOptions)},optionsCount(){let t=[];for(let n of this.arrayOfOptions)(!this.onlyEndNodes||!n.children)&&!t.includes(n.id)&&t.push(n.id);return t.length},visibleOptionsCount(){let t=[];return this.traverseTree(this.actualOptions,n=>{(!this.onlyEndNodes||!n.children)&&!t.includes(n.id)&&n.visible&&t.push(n.id)}),t.length+(this.isBookmarkable?Object.keys(this.actualBookmarkedOptions).length:0)}},components:{IbAlert:Ft,IbIconButton:ut,IbIcon:Le,IbDropdown:ir,IbInput:qr,List:Rr,"select-option":pd},directives:{Tooltip:Wt},beforeUnmount(){document.removeEventListener("mousemove",this.onResize),document.removeEventListener("mouseup",this.endResizing)},inheritAttrs:!1},vd={key:0,class:"tree-select-empty"},_d={key:1,class:"tree-select-default-empty tree-select-empty"},$d={key:5,ref:"infinityLoader"};function wd(t,n,e,o,a,r){const s=i.resolveComponent("ib-alert"),l=i.resolveComponent("ib-icon"),u=i.resolveComponent("ib-icon-button"),d=i.resolveComponent("ib-input"),p=i.resolveComponent("select-option"),f=i.resolveComponent("list"),c=i.resolveComponent("ib-dropdown"),h=i.resolveDirective("tooltip");return i.openBlock(),i.createElementBlock(i.Fragment,null,[e.errorMessage?(i.openBlock(),i.createBlock(s,{key:0,class:"tree-select-error"},{default:i.withCtx(()=>[i.createTextVNode(i.toDisplayString(e.errorMessage),1)]),_:1})):i.createCommentVNode("",!0),i.createElementVNode("div",{class:i.normalizeClass(["tree-select",{...e.classList,"tree-select-custom-trigger-content":r.hasTriggerContent}])},[i.createVNode(c,{disabled:a.isLoading||e.disable,"is-resizable":e.isResizable,vertical:a.verticalVal,class:i.normalizeClass({disable:e.disable}),ref:"dropdown",onClose:r.onClose,onOpen:r.onOpen},i.createSlots({body:i.withCtx(()=>[i.createElementVNode("div",{class:i.normalizeClass(["tree-drop",{"not-tree-child":!a.hasTreeChildren}]),style:i.normalizeStyle(r.treeDropPos),role:"listbox"},[e.isResizable?(i.openBlock(),i.createElementBlock("div",{key:0,class:"ib-dropdown-resizer ib-dropdown-resizer-left",onMousedown:n[6]||(n[6]=v=>r.startResizing("left"))},null,32)):i.createCommentVNode("",!0),e.isResizable?i.withDirectives((i.openBlock(),i.createElementBlock("div",{key:1,class:"ib-dropdown-resizer ib-dropdown-resizer-right",onMousedown:n[7]||(n[7]=v=>r.startResizing("right"))},null,544)),[[h,t.lang("resize_list","select"),void 0,{rightCenter:!0}]]):i.createCommentVNode("",!0),r.showSearch?(i.openBlock(),i.createBlock(d,{key:2,class:"tree-search",ref:"search",autocomplete:"off","show-icon":!0,value:a.filterString,debounce:e.searchDebounce,"aria-label":e.searchPlaceholderText?e.searchPlaceholderText:a.actualStrings.searchPlaceholder,placeholder:e.searchPlaceholderText?e.searchPlaceholderText:a.actualStrings.searchPlaceholder,onInput:n[8]||(n[8]=v=>r.filter(v,a.actualOptions)),onKeyup:i.withKeys(r.inputKeyupDown,["down"])},null,8,["value","debounce","aria-label","placeholder","onKeyup"])):i.createCommentVNode("",!0),i.createVNode(f,{ref:"list",role:"listbox",class:i.normalizeClass({"tree-select-list":!0,"has-hierarchy":r.hasHierarchy,"alphabetic-list":e.alphabeticStyle})},{default:i.withCtx(()=>[!r.requiredDependencyNotFilled&&!r.visibleOptionsCount&&r.hasEmptyMessage?(i.openBlock(),i.createElementBlock("div",vd,[i.renderSlot(t.$slots,"emptyMessage")])):!r.requiredDependencyNotFilled&&!r.visibleOptionsCount?(i.openBlock(),i.createElementBlock("div",_d,i.toDisplayString(a.actualStrings.emptyTitle),1)):i.createCommentVNode("",!0),i.withDirectives(i.createElementVNode("div",{class:"tree-select-empty"},i.toDisplayString(a.actualStrings.requiredDependencyNotFilled),513),[[i.vShow,r.requiredDependencyNotFilled]]),!e.isMultiple&&!e.isRequired&&a.actualOptions.length>0?(i.openBlock(),i.createBlock(p,{key:2,option:{title:t.lang("none","select"),id:null,checked:r.isEmpty},name:a.actualName,"parent-auto-check":e.parentAutoCheck,"is-multiple":e.isMultiple,role:"option",onCheck:r.registerCheck,onToggleBookmark:r.toggleBookmark,uid:a.uid,"only-end-nodes":e.onlyEndNodes,"show-input":e.showInputs},null,8,["option","name","parent-auto-check","is-multiple","onCheck","onToggleBookmark","uid","only-end-nodes","show-input"])):i.createCommentVNode("",!0),Object.keys(a.actualBookmarkedOptions).length>0?(i.openBlock(!0),i.createElementBlock(i.Fragment,{key:3},i.renderList(a.actualBookmarkedOptions,v=>(i.openBlock(),i.createBlock(p,{key:"bookmark"+v.id,class:"bookmarked-option",option:v,"parent-auto-check":!1,"is-multiple":e.isMultiple,"is-bookmarkable":!0,"is-bookmarked":!0,role:"option",onCheck:r.registerCheck,onToggleBookmark:r.toggleBookmark,uid:a.uid,"only-end-nodes":e.onlyEndNodes,"html-title":e.htmlOptionTitle,"show-input":e.showInputs},null,8,["option","is-multiple","onCheck","onToggleBookmark","uid","only-end-nodes","html-title","show-input"]))),128)):i.createCommentVNode("",!0),r.requiredDependencyNotFilled?i.createCommentVNode("",!0):(i.openBlock(),i.createElementBlock(i.Fragment,{key:4},[e.allOptions&&!e.alphabeticStyle&&e.isMultiple&&r.visibleOptionsCount&&!r.requiredDependencyNotFilled?(i.openBlock(),i.createBlock(p,{key:0,option:{title:a.actualStrings.selectAllOptions,id:"!all!",initiallyVisible:!0,visible:!0,isDisabled:r.visibleOptionsCount<r.optionsCount,checked:a.allOptionsIsChecked,isIndeterminate:!!Object.keys(a.selected).length},"is-toggle":e.isToggle,name:a.actualName,"parent-auto-check":!1,"is-multiple":e.isMultiple,"is-bookmarkable":!1,uid:a.uid,"only-end-nodes":e.onlyEndNodes,"show-input":e.showInputs,"alphabetic-style":e.alphabeticStyle,role:"option",onCheck:r.manageAll,onOnFocus:n[9]||(n[9]=v=>a.focusedOptionId=v)},null,8,["option","is-toggle","name","is-multiple","uid","only-end-nodes","show-input","alphabetic-style","onCheck"])):i.createCommentVNode("",!0),(i.openBlock(!0),i.createElementBlock(i.Fragment,null,i.renderList(a.actualOptions,v=>i.renderSlot(t.$slots,a.actualName,{key:e.name+v.value,option:v,parentAutoCheck:e.parentAutoCheck,isMultiple:e.isMultiple,uid:a.uid,onlyEndNodes:e.onlyEndNodes,htmlTitle:e.htmlOptionTitle,showInput:e.showInputs},()=>[i.withDirectives(i.createVNode(p,{option:v,"is-toggle":e.isToggle,name:a.actualName,role:"option","parent-auto-check":e.parentAutoCheck,"is-multiple":e.isMultiple,"is-bookmarkable":e.isBookmarkable,uid:a.uid,"only-end-nodes":e.onlyEndNodes,"html-title":e.htmlOptionTitle,"show-input":e.showInputs,"alphabetic-style":e.alphabeticStyle,onCheck:r.registerCheck,onToggleBookmark:r.toggleBookmark,onOnFocus:n[10]||(n[10]=m=>a.focusedOptionId=m)},null,8,["option","is-toggle","name","parent-auto-check","is-multiple","is-bookmarkable","uid","only-end-nodes","html-title","show-input","alphabetic-style","onCheck","onToggleBookmark"]),[[i.vShow,v.visible]])])),128))],64)),t.infiniteLoader?(i.openBlock(),i.createElementBlock("div",$d,null,512)):i.createCommentVNode("",!0)]),_:3},8,["class"])],6)]),_:2},[r.hasTrigger?{name:"trigger",fn:i.withCtx(()=>[i.renderSlot(t.$slots,"trigger",{selectedCount:r.selectedKeys.length})]),key:"0"}:{name:"trigger",fn:i.withCtx(({isOpened:v})=>[i.createElementVNode("div",{role:"combobox",tabindex:"0",class:i.normalizeClass(["tree-choice",{"tree-choice-opened":v,"has-clear-button":e.showClearButton,"tree-choice-error":e.errorMessage}]),ref:"combobox","aria-expanded":v,onClick:n[2]||(n[2]=i.withModifiers(()=>{},["prevent"])),onBlur:n[3]||(n[3]=(...m)=>r.onBlur&&r.onBlur(...m)),onKeyup:[n[4]||(n[4]=i.withKeys((...m)=>r.comboboxKeyupDown&&r.comboboxKeyupDown(...m),["down"])),n[5]||(n[5]=i.withKeys((...m)=>r.comboboxKeyupDown&&r.comboboxKeyupDown(...m),["up"]))],"aria-label":e.ariaLabel,"aria-activedescendant":a.focusedOptionId},[r.hasTriggerContent?i.renderSlot(t.$slots,"triggerContent",{key:0,selectedCount:r.selectedKeys.length,isOpen:v}):(i.openBlock(),i.createElementBlock(i.Fragment,{key:1},[e.htmlOptionTitle?(i.openBlock(),i.createElementBlock("span",{key:0,class:i.normalizeClass({placeholder:!r.selectStatus}),innerHTML:r.selectStatus||e.placeholder},null,10,["innerHTML"])):(i.openBlock(),i.createElementBlock("span",{key:1,class:i.normalizeClass({placeholder:!r.selectStatus})},i.toDisplayString(r.selectStatus||e.placeholder),3))],64)),e.showClearButton?i.withDirectives((i.openBlock(),i.createBlock(u,{key:2,kind:"ghost",class:"button-clear","aria-label":"Clear selection",onClick:i.withModifiers(r.clearValue,["prevent"]),onKeypress:n[0]||(n[0]=i.withKeys(i.withModifiers(()=>{},["stop","prevent"]),["enter"])),onKeydown:n[1]||(n[1]=i.withKeys(i.withModifiers(()=>{},["stop","prevent"]),["enter"])),onKeyup:i.withKeys(i.withModifiers(r.clearValue,["prevent"]),["enter"]),"help-text":e.clearButtonMessage},{default:i.withCtx(()=>[i.createVNode(l,{name:"close-outline"})]),_:1},8,["onClick","onKeyup","help-text"])),[[i.vShow,Object.keys(a.selected).length]]):i.createCommentVNode("",!0),i.createVNode(l,{name:v?"chevron-up-outline":"chevron-down-outline",classes:"tree-select-caret"},null,8,["name"])],42,["aria-expanded","aria-label","aria-activedescendant"])]),key:"1"}]),1032,["disabled","is-resizable","vertical","class","onClose","onOpen"])],2)],64)}const No=_e(bd,[["render",wd]]),kp="",kd={name:"IbLimitSelector",props:{labelSelect:{type:String,required:!0},value:{type:Number},vertical:{type:String},options:{type:Array,default:()=>[10,25,50,100]}},watch(t){this.selected=t},data(){return{selected:this.value}},methods:{selectItem(t){this.selected=t,this.onChange(t)},onChange(t){Number.isInteger(+t)&&this.$emit("select",+t)}},computed:{prepareOptions(){return this.options.map(t=>({id:t,title:t}))}},components:{IbLabel:kn,IbSelect:No}},Cd={class:"report-limit-selector"};function Od(t,n,e,o,a,r){const s=i.resolveComponent("ib-label"),l=i.resolveComponent("ib-select");return i.openBlock(),i.createElementBlock("div",Cd,[i.createVNode(s,null,{default:i.withCtx(()=>[i.createTextVNode(i.toDisplayString(e.labelSelect),1)]),_:1}),i.createVNode(l,{classList:"report-limit-selector-select",value:e.value,vertical:e.vertical,options:r.prepareOptions,"is-multiple":!1,"show-clear-button":!1,"aria-label":"Pagination",onInput:r.selectItem},null,8,["value","vertical","options","onInput"])])}const Ao=_e(kd,[["render",Od]]),Cp="",Ed={name:"IbPagination",props:{tooltipTextPrev:{type:String},tooltipTextNext:{type:String},labelInput:{type:String},labelSelect:{type:String,required:!0},countRows:{type:Number,required:!0},pageCount:{type:Number,default:null},current:{type:Number,default:1},limitSelector:{type:Number,default:10},showPaginationInput:{type:Boolean,default:!0},vertical:{type:String}},data(){return{currentPage:this.current,indexSpaceLeft:null,indexSpaceRight:null,limitValue:this.limitSelector}},watch:{current(t){this.onSelect(t)},limitSelector(t){this.limitValue=t},limitValue(){this.currentPage=1}},methods:{changeLimit(t){Number.isInteger(t)&&(this.limitValue=t,this.$emit("set-limit",t))},onInput(t){if(t<1){this.onSelect(1);return}if(t>this.countPagePagination){this.onSelect(this.countPagePagination);return}this.onSelect(Number(t))},onSelect(t){Number.isInteger(t)&&(this.currentPage=t,this.$emit("select",t))},showItem(t){if(this.countPagePagination<=5)return this.indexSpaceLeft=null,this.indexSpaceRight=null,!0;if(t===1||t===this.countPagePagination)return!0;if(this.countPagePagination>=7){if(this.currentPage<=3&&t<=5)return this.indexSpaceLeft=this.countPagePagination,this.indexSpaceRight=null,!0;if(this.currentPage>=this.countPagePagination-2&&t>=this.countPagePagination-4)return this.indexSpaceLeft=null,this.indexSpaceRight=1,!0;if(3<this.currentPage<this.countPagePagination-3&&(t===this.currentPage+1||t===this.currentPage-1||t===this.currentPage))return this.indexSpaceLeft=this.countPagePagination,this.indexSpaceRight=1,!0}else return!0;return!1}},computed:{setCountOfRows(){return this.currentPage===1||this.countPagePagination===1?"1 - "+(this.countPagePagination>1?this.limitValue:this.countRows):this.countPagePagination===this.currentPage?(this.currentPage-1)*this.limitValue+" - "+this.countRows:(this.currentPage-1)*this.limitValue+1+" - "+this.currentPage*this.limitValue},countPagePagination(){return Math.ceil(this.countRows/this.limitValue)}},components:{IbIconButton:ut,IbIcon:Le,IbInput:qr,IbLabel:kn,IbLimitSelector:Ao,IbTooltip:ln}},Sd={class:"report-controls"},xd={class:"repot-pagination"},Td={class:"pagination-input"},Nd={class:"row-count"},Ad={class:"pagination-wrapper"},Dd=["onClick"];function Pd(t,n,e,o,a,r){const s=i.resolveComponent("ib-limit-selector"),l=i.resolveComponent("ib-label"),u=i.resolveComponent("ib-input"),d=i.resolveComponent("ib-icon"),p=i.resolveComponent("ib-tooltip"),f=i.resolveComponent("ib-icon-button");return i.openBlock(),i.createElementBlock("div",Sd,[i.createVNode(s,{onSelect:r.changeLimit,value:a.limitValue,vertical:e.vertical,"label-select":e.labelSelect},null,8,["onSelect","value","vertical","label-select"]),i.createElementVNode("div",xd,[e.showPaginationInput?(i.openBlock(),i.createElementBlock(i.Fragment,{key:0},[i.createVNode(l,{for:"goToPage"},{default:i.withCtx(()=>[i.createTextVNode(i.toDisplayString(e.labelInput),1)]),_:1}),i.createElementVNode("div",Td,[i.createVNode(u,{id:"goToPage",type:"number","hide-number-actions":"",debounce:500,onInput:r.onInput},null,8,["onInput"])])],64)):i.createCommentVNode("",!0),i.createElementVNode("div",Nd,i.toDisplayString(r.setCountOfRows+" of "+e.countRows),1),i.createVNode(f,{kind:"tertiary",size:"m",class:"toggle-children button-prev",disabled:a.currentPage===1,onClick:n[0]||(n[0]=c=>r.onSelect(a.currentPage-1))},{default:i.withCtx(()=>[i.createVNode(d,{name:"chevron-back-outline"}),e.tooltipTextPrev?(i.openBlock(),i.createBlock(p,{key:0,text:e.tooltipTextPrev},null,8,["text"])):i.createCommentVNode("",!0)]),_:1},8,["disabled"]),i.createElementVNode("ul",Ad,[(i.openBlock(!0),i.createElementBlock(i.Fragment,null,i.renderList(r.countPagePagination,(c,h)=>i.withDirectives((i.openBlock(),i.createElementBlock("li",{key:h,class:i.normalizeClass(["pagination-item",{active:h+1===a.currentPage,"dots-left":a.indexSpaceLeft===h+1,"dots-right":a.indexSpaceRight===h+1}]),onClick:v=>r.onSelect(h+1)},[i.createElementVNode("button",null,i.toDisplayString(h+1),1)],10,Dd)),[[i.vShow,r.showItem(h+1)]])),128))]),i.createVNode(f,{kind:"tertiary",size:"m",class:"toggle-children button-next",disabled:a.currentPage===r.countPagePagination,onClick:n[1]||(n[1]=c=>r.onSelect(a.currentPage+1))},{default:i.withCtx(()=>[i.createVNode(d,{name:"chevron-forward-outline"}),e.tooltipTextNext?(i.openBlock(),i.createBlock(p,{key:0,text:e.tooltipTextNext},null,8,["text"])):i.createCommentVNode("",!0)]),_:1},8,["disabled"])])])}const Id=_e(Ed,[["render",Pd]]),On={PROGRESS:"progress",SUCCESS:"success",FAILED:"failed",CANCELING:"canceling",CANCELED:"canceled"},Op="",Md={props:{states:{type:String,default:On.PROGRESS},progress:{type:[String,Number],default:0},ariaLabel:{type:String,required:!0}},computed:{classes(){const t=["ib-progress-bar"];return t.push(`progress-bar-${this.states}`),t},iconName(){return this.states===On.SUCCESS?"checkmark-circle":this.states===On.FAILED||this.states===On.CANCELING||this.states===On.CANCELED?"close-circle":""}},components:{IbIcon:Le}},Do=t=>(i.pushScopeId("data-v-a0217859"),t=t(),i.popScopeId(),t),Bd={class:"ib-progress-bar-wrapper"},Ld=["aria-label","aria-valuenow"],Rd=[Do(()=>i.createElementVNode("div",{class:"gradient"},null,-1))],jd=Do(()=>i.createElementVNode("div",null,null,-1));function Vd(t,n,e,o,a,r){const s=i.resolveComponent("ib-icon");return i.openBlock(),i.createElementBlock("div",Bd,[i.createElementVNode("div",{class:i.normalizeClass(r.classes)},[i.createElementVNode("div",{class:"progress",role:"meter","aria-label":e.ariaLabel,"aria-valuemin":"0","aria-valuemax":"100","aria-valuenow":e.progress,style:i.normalizeStyle({width:e.progress+"%"})},Rd,12,Ld),jd],2),i.withDirectives(i.createVNode(s,{class:"status-icon",name:r.iconName},null,8,["name"]),[[i.vShow,r.iconName.length]])])}const qd=_e(Md,[["render",Vd],["__scopeId","data-v-a0217859"]]),Fd={new:`<svg width="11" height="11" viewBox="0 0 11 11" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
27
30
|
<circle id="Ellipse" cx="5.5" cy="5.5" r="5" fill="#0369E8"/>
|
|
28
31
|
</svg>
|
|
29
32
|
`,success:`
|
|
@@ -54,11 +57,11 @@
|
|
|
54
57
|
<svg width="11" height="11" viewBox="0 0 11 11" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
55
58
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.20658 2.79237C4.59822 2.60495 5.03685 2.5 5.5 2.5C7.15685 2.5 8.5 3.84315 8.5 5.5C8.5 5.96315 8.39505 6.40178 8.20763 6.79342L9.6716 8.25739C10.1951 7.46696 10.5 6.51908 10.5 5.5C10.5 2.73858 8.26142 0.5 5.5 0.5C4.48092 0.5 3.53304 0.804877 2.74261 1.3284L4.20658 2.79237ZM2.79237 4.20658L1.3284 2.74261C0.804877 3.53304 0.5 4.48092 0.5 5.5C0.5 8.26142 2.73858 10.5 5.5 10.5C6.51908 10.5 7.46696 10.1951 8.25739 9.6716L6.79342 8.20763C6.40178 8.39505 5.96315 8.5 5.5 8.5C3.84315 8.5 2.5 7.15685 2.5 5.5C2.5 5.03685 2.60495 4.59822 2.79237 4.20658Z" fill="#677788"/>
|
|
56
59
|
</svg>
|
|
57
|
-
`},I1="",cd={props:{type:{type:String,default:"success"}},data(){return{icons:dd}}},ud={class:"status-indicator"},fd=["innerHTML"];function hd(t,n,e,o,a,r){return i.openBlock(),i.createElementBlock("div",ud,[i.createElementVNode("div",{class:i.normalizeClass(["status-indicator-icon",e.type]),innerHTML:a.icons[e.type]},null,10,fd),i.renderSlot(t.$slots,"default",{},void 0,!0)])}const pd=_e(cd,[["render",hd],["__scopeId","data-v-e696394e"]]),M1="",md={name:"IbPanel",mixins:[vi],props:{isOpen:{type:Boolean,default:!0},error:{type:Boolean,default:!1}}},gd=t=>(i.pushScopeId("data-v-c7c0bea8"),t=t(),i.popScopeId(),t),yd={class:"panel-head"},vd={class:"head-title"},bd=gd(()=>i.createElementVNode("div",{class:"divider"},null,-1)),_d={class:"head-content"},$d={class:"panel-body"};function wd(t,n,e,o,a,r){return i.openBlock(),i.createElementBlock("div",{class:i.normalizeClass(["panel",{"panel-error":e.error}])},[i.createElementVNode("div",yd,[i.createElementVNode("div",vd,[i.renderSlot(t.$slots,"title",{},void 0,!0)]),bd,i.createElementVNode("div",_d,[i.renderSlot(t.$slots,"head-content",{},void 0,!0)])]),i.createVNode(i.Transition,{name:"expand",onEnter:t.enter,onAfterEnter:t.afterEnter,onLeave:t.leave},{default:i.withCtx(()=>[i.withDirectives(i.createElementVNode("div",$d,[i.renderSlot(t.$slots,"body",{},void 0,!0)],512),[[i.vShow,e.isOpen]])]),_:3},8,["onEnter","onAfterEnter","onLeave"])],2)}const kd=_e(md,[["render",wd],["__scopeId","data-v-c7c0bea8"]]),P1="",Cd={name:"IbInputGroup",props:{supportText:{type:String,default:""},disable:{type:Boolean,default:!1}}},Od={key:0,class:"support-text"};function Ed(t,n,e,o,a,r){return i.openBlock(),i.createElementBlock("div",{class:i.normalizeClass(["ib-form-group",{disable:e.disable}])},[i.renderSlot(t.$slots,"default"),e.supportText.length?(i.openBlock(),i.createElementBlock("p",Od,i.toDisplayString(e.supportText),1)):i.createCommentVNode("",!0)],2)}const Sd=_e(Cd,[["render",Ed]]),B1="",Td={name:"IbInputGroup",props:{labelText:{type:String,default:""},required:{type:Boolean,required:!1},horizontal:{type:Boolean,default:!1},errorMessage:{type:String,default:""}},components:{IbLabel:dn,IbAlert:Pt}},Nd={class:"ib-checkbox-group-content"};function xd(t,n,e,o,a,r){const s=i.resolveComponent("ib-label"),d=i.resolveComponent("ib-alert");return i.openBlock(),i.createElementBlock("div",{class:i.normalizeClass(["ib-checkbox-group",{"ib-checkbox-group-horizontal":e.horizontal}])},[e.labelText.length?(i.openBlock(),i.createBlock(s,{key:0,class:"ib-checkbox-group-label",required:e.required},{default:i.withCtx(()=>[i.createTextVNode(i.toDisplayString(e.labelText),1)]),_:1},8,["required"])):i.createCommentVNode("",!0),e.errorMessage.length?(i.openBlock(),i.createBlock(d,{key:1,class:"ib-error-message"},{default:i.withCtx(()=>[i.createTextVNode(i.toDisplayString(e.errorMessage),1)]),_:1})):i.createCommentVNode("",!0),i.createElementVNode("div",Nd,[i.renderSlot(t.$slots,"default")])],2)}const Ad=_e(Td,[["render",xd]]),L1="",Dd={name:"IbRadio",model:{prop:"isChecked",event:"input"},props:{label:String,error:{type:Boolean,default:!1},name:{type:String},id:{type:String,default(){return ht()}},value:{type:String,required:!0},isChecked:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1}},watch:{isChecked(t){this.checked=t}},mounted(){this.$globalEvents.$on(`radio:update:${this.name}`,t=>{this.uid!==t&&(this.checked=!1)})},data(){return{checked:this.isChecked,uid:ht()}},methods:{onClick(){this.disabled||(this.checked=!this.checked,this.$globalEvents.$emit(`radio:update:${this.name}`,this.uid),this.$emit("input",this.checked),this.$emit("change",this.checked))},onChange(){this.disabled||(this.checked=!this.checked,this.$globalEvents.$emit(`radio:update:${this.name}`,this.uid),this.$emit("change",this.checked),this.$emit("input",this.checked))}},computed:{classes(){return{"ib-radio":!0,"has-error":this.error,"radio-filled":this.checked,"radio-disabled":this.disabled}}}},Id=t=>(i.pushScopeId("data-v-02701670"),t=t(),i.popScopeId(),t),Md=["for","aria-checked"],Pd=["name","id","value","checked","disabled"],Bd=Id(()=>i.createElementVNode("span",{class:"ib-radio-input"},null,-1)),Ld={key:0,class:"ib-radio-label"};function Rd(t,n,e,o,a,r){var s,d;return i.openBlock(),i.createElementBlock("label",{role:"radio",class:i.normalizeClass(r.classes),for:e.id,"aria-checked":a.checked,onClick:n[2]||(n[2]=i.withModifiers((...u)=>r.onClick&&r.onClick(...u),["prevent"]))},[i.createElementVNode("input",{type:"radio",name:e.name,id:e.id,value:e.value,checked:a.checked,disabled:e.disabled,ref:"radio",onInput:n[0]||(n[0]=i.withModifiers(()=>{},["stop"])),onChange:n[1]||(n[1]=(...u)=>r.onChange&&r.onChange(...u))},null,40,Pd),i.createElementVNode("span",{class:i.normalizeClass(["ib-radio-body",{"without-text":!((s=e.label)!=null&&s.length)}])},[Bd,(d=e.label)!=null&&d.length?(i.openBlock(),i.createElementBlock("span",Ld,i.toDisplayString(e.label),1)):i.createCommentVNode("",!0)],2)],10,Md)}const jd=_e(Dd,[["render",Rd],["__scopeId","data-v-02701670"]]),R1="",Vd={props:{characterLimit:{type:[String,Number],required:!0},characterLength:{type:[String,Number],required:!0}}},qd={class:"character-count"},Fd={key:0,class:"val-limit"},Hd={class:"val-length"},zd={class:"val-limit"},Ud={key:3,class:"val-length val-limited"};function Kd(t,n,e,o,a,r){return i.openBlock(),i.createElementBlock("div",qd,[e.characterLength?e.characterLimit>e.characterLength?(i.openBlock(),i.createElementBlock(i.Fragment,{key:1},[i.createElementVNode("p",Hd,i.toDisplayString(e.characterLimit-e.characterLength),1),i.createTextVNode(" / "),i.createElementVNode("p",zd,i.toDisplayString(e.characterLimit),1)],64)):e.characterLimit===e.characterLength?(i.openBlock(),i.createElementBlock(i.Fragment,{key:2},[i.createTextVNode("0")],64)):(i.openBlock(),i.createElementBlock("p",Ud,i.toDisplayString(e.characterLimit-e.characterLength),1)):(i.openBlock(),i.createElementBlock("p",Fd,"Max "+i.toDisplayString(e.characterLimit),1))])}const Vi=_e(Vd,[["render",Kd],["__scopeId","data-v-725f21a3"]]),j1="",Gd={name:"IbTextarea",props:{disabled:{type:Boolean,default:!1},id:{type:String,default(){return ht()}},error:{type:Boolean,default:!1},characterLimit:{type:Number,default:null},errorMessage:{type:String,default:""},characterLimitErrorMessage:{type:String,default:""}},data(){return{val:""}},methods:{onInput(){this.characterOverLimit||this.$emit("input",this.val)},onBlur(){this.characterOverLimit||this.$emit("blur",this.val)}},computed:{characterOverLimit(){return!!this.characterLimit&&this.val.length>this.characterLimit},classes(){const t=["ib-textarea"];return(this.error||this.errorMessage.length||this.characterOverLimit)&&t.push("error"),t}},components:{IbAlert:Pt,IbCharacterCount:Vi},inheritAttrs:!1},Yd=["disabled"];function Wd(t,n,e,o,a,r){const s=i.resolveComponent("ib-character-count"),d=i.resolveComponent("ib-alert");return i.openBlock(),i.createElementBlock("div",{class:i.normalizeClass(["textarea-wrapper",{disabled:e.disabled}])},[e.characterLimit?(i.openBlock(),i.createBlock(s,{key:0,"character-limit":e.characterLimit,"character-length":a.val.length},null,8,["character-limit","character-length"])):i.createCommentVNode("",!0),i.withDirectives(i.createVNode(d,null,{default:i.withCtx(()=>[i.createTextVNode(i.toDisplayString(e.errorMessage),1)]),_:1},512),[[i.vShow,e.errorMessage.length]]),i.withDirectives(i.createVNode(d,null,{default:i.withCtx(()=>[i.createTextVNode(i.toDisplayString(e.characterLimitErrorMessage),1)]),_:1},512),[[i.vShow,e.characterLimitErrorMessage.length&&r.characterOverLimit]]),i.withDirectives(i.createElementVNode("textarea",i.mergeProps(t.$attrs,{"onUpdate:modelValue":n[0]||(n[0]=u=>a.val=u),onInput:n[1]||(n[1]=(...u)=>r.onInput&&r.onInput(...u)),onBlur:n[2]||(n[2]=(...u)=>r.onBlur&&r.onBlur(...u)),class:["ib-textarea",r.classes],disabled:e.disabled}),null,16,Yd),[[i.vModelText,a.val]])],2)}const Zd=_e(Gd,[["render",Wd],["__scopeId","data-v-a0700fb0"]]);var $r=["onChange","onClose","onDayCreate","onDestroy","onKeyDown","onMonthChange","onOpen","onParseConfig","onReady","onValueUpdate","onYearChange","onPreCalendarPosition"],Jt={_disable:[],allowInput:!1,allowInvalidPreload:!1,altFormat:"F j, Y",altInput:!1,altInputClass:"form-control input",animate:typeof window=="object"&&window.navigator.userAgent.indexOf("MSIE")===-1,ariaDateFormat:"F j, Y",autoFillDefaultTime:!0,clickOpens:!0,closeOnSelect:!0,conjunction:", ",dateFormat:"Y-m-d",defaultHour:12,defaultMinute:0,defaultSeconds:0,disable:[],disableMobile:!1,enableSeconds:!1,enableTime:!1,errorHandler:function(t){return typeof console<"u"&&console.warn(t)},getWeek:function(t){var n=new Date(t.getTime());n.setHours(0,0,0,0),n.setDate(n.getDate()+3-(n.getDay()+6)%7);var e=new Date(n.getFullYear(),0,4);return 1+Math.round(((n.getTime()-e.getTime())/864e5-3+(e.getDay()+6)%7)/7)},hourIncrement:1,ignoredFocusElements:[],inline:!1,locale:"default",minuteIncrement:5,mode:"single",monthSelectorType:"dropdown",nextArrow:"<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 17 17'><g></g><path d='M13.207 8.472l-7.854 7.854-0.707-0.707 7.146-7.146-7.146-7.148 0.707-0.707 7.854 7.854z' /></svg>",noCalendar:!1,now:new Date,onChange:[],onClose:[],onDayCreate:[],onDestroy:[],onKeyDown:[],onMonthChange:[],onOpen:[],onParseConfig:[],onReady:[],onValueUpdate:[],onYearChange:[],onPreCalendarPosition:[],plugins:[],position:"auto",positionElement:void 0,prevArrow:"<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 17 17'><g></g><path d='M5.207 8.471l7.146 7.147-0.707 0.707-7.853-7.854 7.854-7.853 0.707 0.707-7.147 7.146z' /></svg>",shorthandCurrentMonth:!1,showMonths:1,static:!1,time_24hr:!1,weekNumbers:!1,wrap:!1},un={weekdays:{shorthand:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],longhand:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"]},months:{shorthand:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],longhand:["January","February","March","April","May","June","July","August","September","October","November","December"]},daysInMonth:[31,28,31,30,31,30,31,31,30,31,30,31],firstDayOfWeek:0,ordinal:function(t){var n=t%100;if(n>3&&n<21)return"th";switch(n%10){case 1:return"st";case 2:return"nd";case 3:return"rd";default:return"th"}},rangeSeparator:" to ",weekAbbreviation:"Wk",scrollTitle:"Scroll to increment",toggleTitle:"Click to toggle",amPM:["AM","PM"],yearAriaLabel:"Year",monthAriaLabel:"Month",hourAriaLabel:"Hour",minuteAriaLabel:"Minute",time_24hr:!1},ot=function(t,n){return n===void 0&&(n=2),("000"+t).slice(n*-1)},ft=function(t){return t===!0?1:0};function qi(t,n){var e;return function(){var o=this,a=arguments;clearTimeout(e),e=setTimeout(function(){return t.apply(o,a)},n)}}var wr=function(t){return t instanceof Array?t:[t]};function Qe(t,n,e){if(e===!0)return t.classList.add(n);t.classList.remove(n)}function Ae(t,n,e){var o=window.document.createElement(t);return n=n||"",e=e||"",o.className=n,e!==void 0&&(o.textContent=e),o}function Vn(t){for(;t.firstChild;)t.removeChild(t.firstChild)}function Fi(t,n){if(n(t))return t;if(t.parentNode)return Fi(t.parentNode,n)}function qn(t,n){var e=Ae("div","numInputWrapper"),o=Ae("input","numInput "+t),a=Ae("span","arrowUp"),r=Ae("span","arrowDown");if(navigator.userAgent.indexOf("MSIE 9.0")===-1?o.type="number":(o.type="text",o.pattern="\\d*"),n!==void 0)for(var s in n)o.setAttribute(s,n[s]);return e.appendChild(o),e.appendChild(a),e.appendChild(r),e}function dt(t){try{if(typeof t.composedPath=="function"){var n=t.composedPath();return n[0]}return t.target}catch{return t.target}}var kr=function(){},Fn=function(t,n,e){return e.months[n?"shorthand":"longhand"][t]},Jd={D:kr,F:function(t,n,e){t.setMonth(e.months.longhand.indexOf(n))},G:function(t,n){t.setHours((t.getHours()>=12?12:0)+parseFloat(n))},H:function(t,n){t.setHours(parseFloat(n))},J:function(t,n){t.setDate(parseFloat(n))},K:function(t,n,e){t.setHours(t.getHours()%12+12*ft(new RegExp(e.amPM[1],"i").test(n)))},M:function(t,n,e){t.setMonth(e.months.shorthand.indexOf(n))},S:function(t,n){t.setSeconds(parseFloat(n))},U:function(t,n){return new Date(parseFloat(n)*1e3)},W:function(t,n,e){var o=parseInt(n),a=new Date(t.getFullYear(),0,2+(o-1)*7,0,0,0,0);return a.setDate(a.getDate()-a.getDay()+e.firstDayOfWeek),a},Y:function(t,n){t.setFullYear(parseFloat(n))},Z:function(t,n){return new Date(n)},d:function(t,n){t.setDate(parseFloat(n))},h:function(t,n){t.setHours((t.getHours()>=12?12:0)+parseFloat(n))},i:function(t,n){t.setMinutes(parseFloat(n))},j:function(t,n){t.setDate(parseFloat(n))},l:kr,m:function(t,n){t.setMonth(parseFloat(n)-1)},n:function(t,n){t.setMonth(parseFloat(n)-1)},s:function(t,n){t.setSeconds(parseFloat(n))},u:function(t,n){return new Date(parseFloat(n))},w:kr,y:function(t,n){t.setFullYear(2e3+parseFloat(n))}},qt={D:"",F:"",G:"(\\d\\d|\\d)",H:"(\\d\\d|\\d)",J:"(\\d\\d|\\d)\\w+",K:"",M:"",S:"(\\d\\d|\\d)",U:"(.+)",W:"(\\d\\d|\\d)",Y:"(\\d{4})",Z:"(.+)",d:"(\\d\\d|\\d)",h:"(\\d\\d|\\d)",i:"(\\d\\d|\\d)",j:"(\\d\\d|\\d)",l:"",m:"(\\d\\d|\\d)",n:"(\\d\\d|\\d)",s:"(\\d\\d|\\d)",u:"(.+)",w:"(\\d\\d|\\d)",y:"(\\d{2})"},fn={Z:function(t){return t.toISOString()},D:function(t,n,e){return n.weekdays.shorthand[fn.w(t,n,e)]},F:function(t,n,e){return Fn(fn.n(t,n,e)-1,!1,n)},G:function(t,n,e){return ot(fn.h(t,n,e))},H:function(t){return ot(t.getHours())},J:function(t,n){return n.ordinal!==void 0?t.getDate()+n.ordinal(t.getDate()):t.getDate()},K:function(t,n){return n.amPM[ft(t.getHours()>11)]},M:function(t,n){return Fn(t.getMonth(),!0,n)},S:function(t){return ot(t.getSeconds())},U:function(t){return t.getTime()/1e3},W:function(t,n,e){return e.getWeek(t)},Y:function(t){return ot(t.getFullYear(),4)},d:function(t){return ot(t.getDate())},h:function(t){return t.getHours()%12?t.getHours()%12:12},i:function(t){return ot(t.getMinutes())},j:function(t){return t.getDate()},l:function(t,n){return n.weekdays.longhand[t.getDay()]},m:function(t){return ot(t.getMonth()+1)},n:function(t){return t.getMonth()+1},s:function(t){return t.getSeconds()},u:function(t){return t.getTime()},w:function(t){return t.getDay()},y:function(t){return String(t.getFullYear()).substring(2)}},Hi=function(t){var n=t.config,e=n===void 0?Jt:n,o=t.l10n,a=o===void 0?un:o,r=t.isMobile,s=r===void 0?!1:r;return function(d,u,p){var h=p||a;return e.formatDate!==void 0&&!s?e.formatDate(d,u,h):u.split("").map(function(f,l,c){return fn[f]&&c[l-1]!=="\\"?fn[f](d,h,e):f!=="\\"?f:""}).join("")}},Cr=function(t){var n=t.config,e=n===void 0?Jt:n,o=t.l10n,a=o===void 0?un:o;return function(r,s,d,u){if(!(r!==0&&!r)){var p=u||a,h,f=r;if(r instanceof Date)h=new Date(r.getTime());else if(typeof r!="string"&&r.toFixed!==void 0)h=new Date(r);else if(typeof r=="string"){var l=s||(e||Jt).dateFormat,c=String(r).trim();if(c==="today")h=new Date,d=!0;else if(e&&e.parseDate)h=e.parseDate(r,l);else if(/Z$/.test(c)||/GMT$/.test(c))h=new Date(r);else{for(var _=void 0,v=[],b=0,g=0,y="";b<l.length;b++){var w=l[b],m=w==="\\",k=l[b-1]==="\\"||m;if(qt[w]&&!k){y+=qt[w];var N=new RegExp(y).exec(r);N&&(_=!0)&&v[w!=="Y"?"push":"unshift"]({fn:Jd[w],val:N[++g]})}else m||(y+=".")}h=!e||!e.noCalendar?new Date(new Date().getFullYear(),0,1,0,0,0,0):new Date(new Date().setHours(0,0,0,0)),v.forEach(function(S){var T=S.fn,M=S.val;return h=T(h,M,p)||h}),h=_?h:void 0}}if(!(h instanceof Date&&!isNaN(h.getTime()))){e.errorHandler(new Error("Invalid date provided: "+f));return}return d===!0&&h.setHours(0,0,0,0),h}}};function ct(t,n,e){return e===void 0&&(e=!0),e!==!1?new Date(t.getTime()).setHours(0,0,0,0)-new Date(n.getTime()).setHours(0,0,0,0):t.getTime()-n.getTime()}var Xd=function(t,n,e){return t>Math.min(n,e)&&t<Math.max(n,e)},Or=function(t,n,e){return t*3600+n*60+e},Qd=function(t){var n=Math.floor(t/3600),e=(t-n*3600)/60;return[n,e,t-n*3600-e*60]},ec={DAY:864e5};function Er(t){var n=t.defaultHour,e=t.defaultMinute,o=t.defaultSeconds;if(t.minDate!==void 0){var a=t.minDate.getHours(),r=t.minDate.getMinutes(),s=t.minDate.getSeconds();n<a&&(n=a),n===a&&e<r&&(e=r),n===a&&e===r&&o<s&&(o=t.minDate.getSeconds())}if(t.maxDate!==void 0){var d=t.maxDate.getHours(),u=t.maxDate.getMinutes();n=Math.min(n,d),n===d&&(e=Math.min(u,e)),n===d&&e===u&&(o=t.maxDate.getSeconds())}return{hours:n,minutes:e,seconds:o}}typeof Object.assign!="function"&&(Object.assign=function(t){for(var n=[],e=1;e<arguments.length;e++)n[e-1]=arguments[e];if(!t)throw TypeError("Cannot convert undefined or null to object");for(var o=function(d){d&&Object.keys(d).forEach(function(u){return t[u]=d[u]})},a=0,r=n;a<r.length;a++){var s=r[a];o(s)}return t});var Ye=globalThis&&globalThis.__assign||function(){return Ye=Object.assign||function(t){for(var n,e=1,o=arguments.length;e<o;e++){n=arguments[e];for(var a in n)Object.prototype.hasOwnProperty.call(n,a)&&(t[a]=n[a])}return t},Ye.apply(this,arguments)},zi=globalThis&&globalThis.__spreadArrays||function(){for(var t=0,n=0,e=arguments.length;n<e;n++)t+=arguments[n].length;for(var o=Array(t),a=0,n=0;n<e;n++)for(var r=arguments[n],s=0,d=r.length;s<d;s++,a++)o[a]=r[s];return o},tc=300;function nc(t,n){var e={config:Ye(Ye({},Jt),Re.defaultConfig),l10n:un};e.parseDate=Cr({config:e.config,l10n:e.l10n}),e._handlers=[],e.pluginElements=[],e.loadedPlugins=[],e._bind=v,e._setHoursFromDate=l,e._positionCalendar=te,e.changeMonth=A,e.changeYear=z,e.clear=j,e.close=V,e.onMouseOver=he,e._createElement=Ae,e.createDay=N,e.destroy=Y,e.isEnabled=Z,e.jumpToDate=y,e.updateValue=rt,e.open=ke,e.redraw=re,e.set=He,e.setDate=xe,e.toggle=zt;function o(){e.utils={getDaysInMonth:function(I,L){return I===void 0&&(I=e.currentMonth),L===void 0&&(L=e.currentYear),I===1&&(L%4===0&&L%100!==0||L%400===0)?29:e.l10n.daysInMonth[I]}}}function a(){e.element=e.input=t,e.isOpen=!1,Be(),Q(),nt(),Ee(),o(),e.isMobile||k(),g(),(e.selectedDates.length||e.config.noCalendar)&&(e.config.enableTime&&l(e.config.noCalendar?e.latestSelectedDateObj:void 0),rt(!1)),d();var I=/^((?!chrome|android).)*safari/i.test(navigator.userAgent);!e.isMobile&&I&&te(),De("onReady")}function r(){var I;return((I=e.calendarContainer)===null||I===void 0?void 0:I.getRootNode()).activeElement||document.activeElement}function s(I){return I.bind(e)}function d(){var I=e.config;I.weekNumbers===!1&&I.showMonths===1||I.noCalendar!==!0&&window.requestAnimationFrame(function(){if(e.calendarContainer!==void 0&&(e.calendarContainer.style.visibility="hidden",e.calendarContainer.style.display="block"),e.daysContainer!==void 0){var L=(e.days.offsetWidth+1)*I.showMonths;e.daysContainer.style.width=L+"px",e.calendarContainer.style.width=L+(e.weekWrapper!==void 0?e.weekWrapper.offsetWidth:0)+"px",e.calendarContainer.style.removeProperty("visibility"),e.calendarContainer.style.removeProperty("display")}})}function u(I){if(e.selectedDates.length===0){var L=e.config.minDate===void 0||ct(new Date,e.config.minDate)>=0?new Date:new Date(e.config.minDate.getTime()),K=Er(e.config);L.setHours(K.hours,K.minutes,K.seconds,L.getMilliseconds()),e.selectedDates=[L],e.latestSelectedDateObj=L}I!==void 0&&I.type!=="blur"&&Ut(I);var X=e._input.value;f(),rt(),e._input.value!==X&&e._debouncedChange()}function p(I,L){return I%12+12*ft(L===e.l10n.amPM[1])}function h(I){switch(I%24){case 0:case 12:return 12;default:return I%12}}function f(){if(!(e.hourElement===void 0||e.minuteElement===void 0)){var I=(parseInt(e.hourElement.value.slice(-2),10)||0)%24,L=(parseInt(e.minuteElement.value,10)||0)%60,K=e.secondElement!==void 0?(parseInt(e.secondElement.value,10)||0)%60:0;e.amPM!==void 0&&(I=p(I,e.amPM.textContent));var X=e.config.minTime!==void 0||e.config.minDate&&e.minDateHasTime&&e.latestSelectedDateObj&&ct(e.latestSelectedDateObj,e.config.minDate,!0)===0,oe=e.config.maxTime!==void 0||e.config.maxDate&&e.maxDateHasTime&&e.latestSelectedDateObj&&ct(e.latestSelectedDateObj,e.config.maxDate,!0)===0;if(e.config.maxTime!==void 0&&e.config.minTime!==void 0&&e.config.minTime>e.config.maxTime){var se=Or(e.config.minTime.getHours(),e.config.minTime.getMinutes(),e.config.minTime.getSeconds()),ye=Or(e.config.maxTime.getHours(),e.config.maxTime.getMinutes(),e.config.maxTime.getSeconds()),ue=Or(I,L,K);if(ue>ye&&ue<se){var Ce=Qd(se);I=Ce[0],L=Ce[1],K=Ce[2]}}else{if(oe){var ce=e.config.maxTime!==void 0?e.config.maxTime:e.config.maxDate;I=Math.min(I,ce.getHours()),I===ce.getHours()&&(L=Math.min(L,ce.getMinutes())),L===ce.getMinutes()&&(K=Math.min(K,ce.getSeconds()))}if(X){var ge=e.config.minTime!==void 0?e.config.minTime:e.config.minDate;I=Math.max(I,ge.getHours()),I===ge.getHours()&&L<ge.getMinutes()&&(L=ge.getMinutes()),L===ge.getMinutes()&&(K=Math.max(K,ge.getSeconds()))}}c(I,L,K)}}function l(I){var L=I||e.latestSelectedDateObj;L&&L instanceof Date&&c(L.getHours(),L.getMinutes(),L.getSeconds())}function c(I,L,K){e.latestSelectedDateObj!==void 0&&e.latestSelectedDateObj.setHours(I%24,L,K||0,0),!(!e.hourElement||!e.minuteElement||e.isMobile)&&(e.hourElement.value=ot(e.config.time_24hr?I:(12+I)%12+12*ft(I%12===0)),e.minuteElement.value=ot(L),e.amPM!==void 0&&(e.amPM.textContent=e.l10n.amPM[ft(I>=12)]),e.secondElement!==void 0&&(e.secondElement.value=ot(K)))}function _(I){var L=dt(I),K=parseInt(L.value)+(I.delta||0);(K/1e3>1||I.key==="Enter"&&!/[^\d]/.test(K.toString()))&&z(K)}function v(I,L,K,X){if(L instanceof Array)return L.forEach(function(oe){return v(I,oe,K,X)});if(I instanceof Array)return I.forEach(function(oe){return v(oe,L,K,X)});I.addEventListener(L,K,X),e._handlers.push({remove:function(){return I.removeEventListener(L,K,X)}})}function b(){De("onChange")}function g(){if(e.config.wrap&&["open","close","toggle","clear"].forEach(function(K){Array.prototype.forEach.call(e.element.querySelectorAll("[data-"+K+"]"),function(X){return v(X,"click",e[K])})}),e.isMobile){vn();return}var I=qi(ve,50);if(e._debouncedChange=qi(b,tc),e.daysContainer&&!/iPhone|iPad|iPod/i.test(navigator.userAgent)&&v(e.daysContainer,"mouseover",function(K){e.config.mode==="range"&&he(dt(K))}),v(e._input,"keydown",de),e.calendarContainer!==void 0&&v(e.calendarContainer,"keydown",de),!e.config.inline&&!e.config.static&&v(window,"resize",I),window.ontouchstart!==void 0?v(window.document,"touchstart",B):v(window.document,"mousedown",B),v(window.document,"focus",B,{capture:!0}),e.config.clickOpens===!0&&(v(e._input,"focus",e.open),v(e._input,"click",e.open)),e.daysContainer!==void 0&&(v(e.monthNav,"click",xt),v(e.monthNav,["keyup","increment"],_),v(e.daysContainer,"click",me)),e.timeContainer!==void 0&&e.minuteElement!==void 0&&e.hourElement!==void 0){var L=function(K){return dt(K).select()};v(e.timeContainer,["increment"],u),v(e.timeContainer,"blur",u,{capture:!0}),v(e.timeContainer,"click",w),v([e.hourElement,e.minuteElement],["focus","click"],L),e.secondElement!==void 0&&v(e.secondElement,"focus",function(){return e.secondElement&&e.secondElement.select()}),e.amPM!==void 0&&v(e.amPM,"click",function(K){u(K)})}e.config.allowInput&&v(e._input,"blur",ne)}function y(I,L){var K=I!==void 0?e.parseDate(I):e.latestSelectedDateObj||(e.config.minDate&&e.config.minDate>e.now?e.config.minDate:e.config.maxDate&&e.config.maxDate<e.now?e.config.maxDate:e.now),X=e.currentYear,oe=e.currentMonth;try{K!==void 0&&(e.currentYear=K.getFullYear(),e.currentMonth=K.getMonth())}catch(se){se.message="Invalid date supplied: "+K,e.config.errorHandler(se)}L&&e.currentYear!==X&&(De("onYearChange"),x()),L&&(e.currentYear!==X||e.currentMonth!==oe)&&De("onMonthChange"),e.redraw()}function w(I){var L=dt(I);~L.className.indexOf("arrow")&&m(I,L.classList.contains("arrowUp")?1:-1)}function m(I,L,K){var X=I&&dt(I),oe=K||X&&X.parentNode&&X.parentNode.firstChild,se=Bt("increment");se.delta=L,oe&&oe.dispatchEvent(se)}function k(){var I=window.document.createDocumentFragment();if(e.calendarContainer=Ae("div","flatpickr-calendar"),e.calendarContainer.tabIndex=-1,!e.config.noCalendar){if(I.appendChild(G()),e.innerContainer=Ae("div","flatpickr-innerContainer"),e.config.weekNumbers){var L=R(),K=L.weekWrapper,X=L.weekNumbers;e.innerContainer.appendChild(K),e.weekNumbers=X,e.weekWrapper=K}e.rContainer=Ae("div","flatpickr-rContainer"),e.rContainer.appendChild(ie()),e.daysContainer||(e.daysContainer=Ae("div","flatpickr-days"),e.daysContainer.tabIndex=-1),O(),e.rContainer.appendChild(e.daysContainer),e.innerContainer.appendChild(e.rContainer),I.appendChild(e.innerContainer)}e.config.enableTime&&I.appendChild(W()),Qe(e.calendarContainer,"rangeMode",e.config.mode==="range"),Qe(e.calendarContainer,"animate",e.config.animate===!0),Qe(e.calendarContainer,"multiMonth",e.config.showMonths>1),e.calendarContainer.appendChild(I);var oe=e.config.appendTo!==void 0&&e.config.appendTo.nodeType!==void 0;if((e.config.inline||e.config.static)&&(e.calendarContainer.classList.add(e.config.inline?"inline":"static"),e.config.inline&&(!oe&&e.element.parentNode?e.element.parentNode.insertBefore(e.calendarContainer,e._input.nextSibling):e.config.appendTo!==void 0&&e.config.appendTo.appendChild(e.calendarContainer)),e.config.static)){var se=Ae("div","flatpickr-wrapper");e.element.parentNode&&e.element.parentNode.insertBefore(se,e.element),se.appendChild(e.element),e.altInput&&se.appendChild(e.altInput),se.appendChild(e.calendarContainer)}!e.config.static&&!e.config.inline&&(e.config.appendTo!==void 0?e.config.appendTo:window.document.body).appendChild(e.calendarContainer)}function N(I,L,K,X){var oe=Z(L,!0),se=Ae("span",I,L.getDate().toString());return se.dateObj=L,se.$i=X,se.setAttribute("aria-label",e.formatDate(L,e.config.ariaDateFormat)),I.indexOf("hidden")===-1&&ct(L,e.now)===0&&(e.todayDateElem=se,se.classList.add("today"),se.setAttribute("aria-current","date")),oe?(se.tabIndex=-1,_t(L)&&(se.classList.add("selected"),e.selectedDateElem=se,e.config.mode==="range"&&(Qe(se,"startRange",e.selectedDates[0]&&ct(L,e.selectedDates[0],!0)===0),Qe(se,"endRange",e.selectedDates[1]&&ct(L,e.selectedDates[1],!0)===0),I==="nextMonthDay"&&se.classList.add("inRange")))):se.classList.add("flatpickr-disabled"),e.config.mode==="range"&&Nt(L)&&!_t(L)&&se.classList.add("inRange"),e.weekNumbers&&e.config.showMonths===1&&I!=="prevMonthDay"&&X%7===6&&e.weekNumbers.insertAdjacentHTML("beforeend","<span class='flatpickr-day'>"+e.config.getWeek(L)+"</span>"),De("onDayCreate",se),se}function S(I){I.focus(),e.config.mode==="range"&&he(I)}function T(I){for(var L=I>0?0:e.config.showMonths-1,K=I>0?e.config.showMonths:-1,X=L;X!=K;X+=I)for(var oe=e.daysContainer.children[X],se=I>0?0:oe.children.length-1,ye=I>0?oe.children.length:-1,ue=se;ue!=ye;ue+=I){var Ce=oe.children[ue];if(Ce.className.indexOf("hidden")===-1&&Z(Ce.dateObj))return Ce}}function M(I,L){for(var K=I.className.indexOf("Month")===-1?I.dateObj.getMonth():e.currentMonth,X=L>0?e.config.showMonths:-1,oe=L>0?1:-1,se=K-e.currentMonth;se!=X;se+=oe)for(var ye=e.daysContainer.children[se],ue=K-e.currentMonth===se?I.$i+L:L<0?ye.children.length-1:0,Ce=ye.children.length,ce=ue;ce>=0&&ce<Ce&&ce!=(L>0?Ce:-1);ce+=oe){var ge=ye.children[ce];if(ge.className.indexOf("hidden")===-1&&Z(ge.dateObj)&&Math.abs(I.$i-ce)>=Math.abs(L))return S(ge)}e.changeMonth(oe),E(T(oe),0)}function E(I,L){var K=r(),X=J(K||document.body),oe=I!==void 0?I:X?K:e.selectedDateElem!==void 0&&J(e.selectedDateElem)?e.selectedDateElem:e.todayDateElem!==void 0&&J(e.todayDateElem)?e.todayDateElem:T(L>0?1:-1);oe===void 0?e._input.focus():X?M(oe,L):S(oe)}function C(I,L){for(var K=(new Date(I,L,1).getDay()-e.l10n.firstDayOfWeek+7)%7,X=e.utils.getDaysInMonth((L-1+12)%12,I),oe=e.utils.getDaysInMonth(L,I),se=window.document.createDocumentFragment(),ye=e.config.showMonths>1,ue=ye?"prevMonthDay hidden":"prevMonthDay",Ce=ye?"nextMonthDay hidden":"nextMonthDay",ce=X+1-K,ge=0;ce<=X;ce++,ge++)se.appendChild(N("flatpickr-day "+ue,new Date(I,L-1,ce),ce,ge));for(ce=1;ce<=oe;ce++,ge++)se.appendChild(N("flatpickr-day",new Date(I,L,ce),ce,ge));for(var Te=oe+1;Te<=42-K&&(e.config.showMonths===1||ge%7!==0);Te++,ge++)se.appendChild(N("flatpickr-day "+Ce,new Date(I,L+1,Te%oe),Te,ge));var Me=Ae("div","dayContainer");return Me.appendChild(se),Me}function O(){if(e.daysContainer!==void 0){Vn(e.daysContainer),e.weekNumbers&&Vn(e.weekNumbers);for(var I=document.createDocumentFragment(),L=0;L<e.config.showMonths;L++){var K=new Date(e.currentYear,e.currentMonth,1);K.setMonth(e.currentMonth+L),I.appendChild(C(K.getFullYear(),K.getMonth()))}e.daysContainer.appendChild(I),e.days=e.daysContainer.firstChild,e.config.mode==="range"&&e.selectedDates.length===1&&he()}}function x(){if(!(e.config.showMonths>1||e.config.monthSelectorType!=="dropdown")){var I=function(X){return e.config.minDate!==void 0&&e.currentYear===e.config.minDate.getFullYear()&&X<e.config.minDate.getMonth()?!1:!(e.config.maxDate!==void 0&&e.currentYear===e.config.maxDate.getFullYear()&&X>e.config.maxDate.getMonth())};e.monthsDropdownContainer.tabIndex=-1,e.monthsDropdownContainer.innerHTML="";for(var L=0;L<12;L++)if(I(L)){var K=Ae("option","flatpickr-monthDropdown-month");K.value=new Date(e.currentYear,L).getMonth().toString(),K.textContent=Fn(L,e.config.shorthandCurrentMonth,e.l10n),K.tabIndex=-1,e.currentMonth===L&&(K.selected=!0),e.monthsDropdownContainer.appendChild(K)}}}function P(){var I=Ae("div","flatpickr-month"),L=window.document.createDocumentFragment(),K;e.config.showMonths>1||e.config.monthSelectorType==="static"?K=Ae("span","cur-month"):(e.monthsDropdownContainer=Ae("select","flatpickr-monthDropdown-months"),e.monthsDropdownContainer.setAttribute("aria-label",e.l10n.monthAriaLabel),v(e.monthsDropdownContainer,"change",function(ye){var ue=dt(ye),Ce=parseInt(ue.value,10);e.changeMonth(Ce-e.currentMonth),De("onMonthChange")}),x(),K=e.monthsDropdownContainer);var X=qn("cur-year",{tabindex:"-1"}),oe=X.getElementsByTagName("input")[0];oe.setAttribute("aria-label",e.l10n.yearAriaLabel),e.config.minDate&&oe.setAttribute("min",e.config.minDate.getFullYear().toString()),e.config.maxDate&&(oe.setAttribute("max",e.config.maxDate.getFullYear().toString()),oe.disabled=!!e.config.minDate&&e.config.minDate.getFullYear()===e.config.maxDate.getFullYear());var se=Ae("div","flatpickr-current-month");return se.appendChild(K),se.appendChild(X),L.appendChild(se),I.appendChild(L),{container:I,yearElement:oe,monthElement:K}}function q(){Vn(e.monthNav),e.monthNav.appendChild(e.prevMonthNav),e.config.showMonths&&(e.yearElements=[],e.monthElements=[]);for(var I=e.config.showMonths;I--;){var L=P();e.yearElements.push(L.yearElement),e.monthElements.push(L.monthElement),e.monthNav.appendChild(L.container)}e.monthNav.appendChild(e.nextMonthNav)}function G(){return e.monthNav=Ae("div","flatpickr-months"),e.yearElements=[],e.monthElements=[],e.prevMonthNav=Ae("span","flatpickr-prev-month"),e.prevMonthNav.innerHTML=e.config.prevArrow,e.nextMonthNav=Ae("span","flatpickr-next-month"),e.nextMonthNav.innerHTML=e.config.nextArrow,q(),Object.defineProperty(e,"_hidePrevMonthArrow",{get:function(){return e.__hidePrevMonthArrow},set:function(I){e.__hidePrevMonthArrow!==I&&(Qe(e.prevMonthNav,"flatpickr-disabled",I),e.__hidePrevMonthArrow=I)}}),Object.defineProperty(e,"_hideNextMonthArrow",{get:function(){return e.__hideNextMonthArrow},set:function(I){e.__hideNextMonthArrow!==I&&(Qe(e.nextMonthNav,"flatpickr-disabled",I),e.__hideNextMonthArrow=I)}}),e.currentYearElement=e.yearElements[0],We(),e.monthNav}function W(){e.calendarContainer.classList.add("hasTime"),e.config.noCalendar&&e.calendarContainer.classList.add("noCalendar");var I=Er(e.config);e.timeContainer=Ae("div","flatpickr-time"),e.timeContainer.tabIndex=-1;var L=Ae("span","flatpickr-time-separator",":"),K=qn("flatpickr-hour",{"aria-label":e.l10n.hourAriaLabel});e.hourElement=K.getElementsByTagName("input")[0];var X=qn("flatpickr-minute",{"aria-label":e.l10n.minuteAriaLabel});if(e.minuteElement=X.getElementsByTagName("input")[0],e.hourElement.tabIndex=e.minuteElement.tabIndex=-1,e.hourElement.value=ot(e.latestSelectedDateObj?e.latestSelectedDateObj.getHours():e.config.time_24hr?I.hours:h(I.hours)),e.minuteElement.value=ot(e.latestSelectedDateObj?e.latestSelectedDateObj.getMinutes():I.minutes),e.hourElement.setAttribute("step",e.config.hourIncrement.toString()),e.minuteElement.setAttribute("step",e.config.minuteIncrement.toString()),e.hourElement.setAttribute("min",e.config.time_24hr?"0":"1"),e.hourElement.setAttribute("max",e.config.time_24hr?"23":"12"),e.hourElement.setAttribute("maxlength","2"),e.minuteElement.setAttribute("min","0"),e.minuteElement.setAttribute("max","59"),e.minuteElement.setAttribute("maxlength","2"),e.timeContainer.appendChild(K),e.timeContainer.appendChild(L),e.timeContainer.appendChild(X),e.config.time_24hr&&e.timeContainer.classList.add("time24hr"),e.config.enableSeconds){e.timeContainer.classList.add("hasSeconds");var oe=qn("flatpickr-second");e.secondElement=oe.getElementsByTagName("input")[0],e.secondElement.value=ot(e.latestSelectedDateObj?e.latestSelectedDateObj.getSeconds():I.seconds),e.secondElement.setAttribute("step",e.minuteElement.getAttribute("step")),e.secondElement.setAttribute("min","0"),e.secondElement.setAttribute("max","59"),e.secondElement.setAttribute("maxlength","2"),e.timeContainer.appendChild(Ae("span","flatpickr-time-separator",":")),e.timeContainer.appendChild(oe)}return e.config.time_24hr||(e.amPM=Ae("span","flatpickr-am-pm",e.l10n.amPM[ft((e.latestSelectedDateObj?e.hourElement.value:e.config.defaultHour)>11)]),e.amPM.title=e.l10n.toggleTitle,e.amPM.tabIndex=-1,e.timeContainer.appendChild(e.amPM)),e.timeContainer}function ie(){e.weekdayContainer?Vn(e.weekdayContainer):e.weekdayContainer=Ae("div","flatpickr-weekdays");for(var I=e.config.showMonths;I--;){var L=Ae("div","flatpickr-weekdaycontainer");e.weekdayContainer.appendChild(L)}return U(),e.weekdayContainer}function U(){if(e.weekdayContainer){var I=e.l10n.firstDayOfWeek,L=zi(e.l10n.weekdays.shorthand);I>0&&I<L.length&&(L=zi(L.splice(I,L.length),L.splice(0,I)));for(var K=e.config.showMonths;K--;)e.weekdayContainer.children[K].innerHTML=`
|
|
60
|
+
`},Sp="",Hd={props:{type:{type:String,default:"success"}},data(){return{icons:Fd}}},zd={class:"status-indicator"},Ud=["innerHTML"];function Kd(t,n,e,o,a,r){return i.openBlock(),i.createElementBlock("div",zd,[i.createElementVNode("div",{class:i.normalizeClass(["status-indicator-icon",e.type]),innerHTML:a.icons[e.type]},null,10,Ud),i.renderSlot(t.$slots,"default",{},void 0,!0)])}const Gd=_e(Hd,[["render",Kd],["__scopeId","data-v-e696394e"]]),xp="",Tp="",Wd={name:"IbPanel",mixins:[Fi],props:{showExpandButton:{type:Boolean,default:!1},expandButtonTooltip:{type:String,default:""},isOpen:{type:Boolean,default:!0},error:{type:Boolean,default:!1},hideHeaderDivider:{type:Boolean,default:!1}},watch:{isOpen(){this.isOpenVal=this.isOpen},isOpenVal(){this.$emit("update:isOpen",this.isOpenVal)}},data(){return{isOpenVal:this.isOpen}},components:{IconButton:ut,Icon:Le},directives:{Tooltip:Wt},emits:["update:isOpen"]},Yd={class:"panel-head"},Zd={class:"head-title"},Jd={class:"divider"},Xd={class:"head-content"},Qd={class:"panel-body"};function eu(t,n,e,o,a,r){const s=i.resolveComponent("icon"),l=i.resolveComponent("icon-button"),u=i.resolveDirective("tooltip");return i.openBlock(),i.createElementBlock("div",{class:i.normalizeClass(["ib-panel",{"panel-error":e.error}])},[i.createElementVNode("div",Yd,[i.createElementVNode("div",Zd,[i.renderSlot(t.$slots,"title",{},void 0,!0)]),i.withDirectives(i.createElementVNode("div",Jd,null,512),[[i.vShow,!e.hideHeaderDivider]]),i.createElementVNode("div",Xd,[i.renderSlot(t.$slots,"head-content",{},void 0,!0)]),e.showExpandButton?i.withDirectives((i.openBlock(),i.createBlock(l,{key:0,class:i.normalizeClass({"toggle-visible-button":!0,active:a.isOpenVal}),kind:"ghost",type:"button",onClick:n[0]||(n[0]=d=>a.isOpenVal=!a.isOpenVal)},{default:i.withCtx(()=>[i.createVNode(s,{name:"chevron-down-outline"})]),_:1},8,["class"])),[[u,e.expandButtonTooltip]]):i.createCommentVNode("",!0)]),i.createVNode(i.Transition,{name:"expand",onEnter:t.enter,onAfterEnter:t.afterEnter,onLeave:t.leave},{default:i.withCtx(()=>[i.withDirectives(i.createElementVNode("div",Qd,[i.renderSlot(t.$slots,"body",{},void 0,!0)],512),[[i.vShow,a.isOpenVal]])]),_:3},8,["onEnter","onAfterEnter","onLeave"])],2)}const tu=_e(Wd,[["render",eu],["__scopeId","data-v-1f178fc0"]]),Np="",nu={props:{showCloseIcon:{type:Boolean,default:!1},active:{type:Boolean,default:!1},error:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1}},computed:{hasIcon(){var t;return(t=this.$slots)==null?void 0:t.icon}},components:{Icon:Le}},ru=["disabled"],iu={key:0,class:"ib-chips-icon-wrapper"},ou={key:1,class:"ib-chips-close-wrapper"};function au(t,n,e,o,a,r){const s=i.resolveComponent("icon");return i.openBlock(),i.createElementBlock("button",{class:i.normalizeClass({"ib-chips":!0,"ib-chips-active":e.active,"ib-chips-error":e.error,"ib-chips-disabled":e.disabled}),disabled:e.disabled},[r.hasIcon?(i.openBlock(),i.createElementBlock("span",iu,[i.renderSlot(t.$slots,"icon",{class:"ib-chips-icon"},void 0,!0)])):i.createCommentVNode("",!0),i.renderSlot(t.$slots,"default",{},void 0,!0),e.showCloseIcon?(i.openBlock(),i.createElementBlock("span",ou,[i.createVNode(s,{class:"ib-chips-icon",name:"close-outline"})])):i.createCommentVNode("",!0)],10,ru)}const lu=_e(nu,[["render",au],["__scopeId","data-v-7f6d49d7"]]),Ap="",su={name:"IbInputGroup",props:{supportText:{type:String,default:""},disabled:{type:Boolean,default:!1}}},cu={key:0,class:"support-text"};function du(t,n,e,o,a,r){return i.openBlock(),i.createElementBlock("div",{class:i.normalizeClass(["ib-form-group",{disabled:e.disabled}])},[i.renderSlot(t.$slots,"default"),e.supportText.length?(i.openBlock(),i.createElementBlock("p",cu,i.toDisplayString(e.supportText),1)):i.createCommentVNode("",!0)],2)}const uu=_e(su,[["render",du]]),Dp="",Hr={name:"IbInputGroup",props:{labelText:{type:String,default:""},required:{type:Boolean,required:!1},horizontal:{type:Boolean,default:!1},errorMessage:{type:String,default:""},infoText:{type:String,default:""},height:{type:String,default:"290px"},tooltipPosition:{type:String}},components:{IbLabel:kn,IbAlert:Ft}},Po=()=>{i.useCssVars(t=>({f99cce84:t.height}))},Io=Hr.setup;Hr.setup=Io?(t,n)=>(Po(),Io(t,n)):Po;const fu={class:"ib-checkbox-group-content"};function hu(t,n,e,o,a,r){const s=i.resolveComponent("ib-label"),l=i.resolveComponent("ib-alert");return i.openBlock(),i.createElementBlock("div",{class:i.normalizeClass(["ib-checkbox-group",{"ib-checkbox-group-horizontal":e.horizontal}])},[e.labelText.length?(i.openBlock(),i.createBlock(s,{key:0,class:"ib-checkbox-group-label",required:e.required,"info-text":e.infoText,"tooltip-position":e.tooltipPosition},{default:i.withCtx(()=>[i.createTextVNode(i.toDisplayString(e.labelText),1)]),_:1},8,["required","info-text","tooltip-position"])):i.createCommentVNode("",!0),e.errorMessage.length?(i.openBlock(),i.createBlock(l,{key:1,class:"ib-error-message"},{default:i.withCtx(()=>[i.createTextVNode(i.toDisplayString(e.errorMessage),1)]),_:1})):i.createCommentVNode("",!0),i.createElementVNode("div",fu,[i.renderSlot(t.$slots,"default")])],2)}const pu=_e(Hr,[["render",hu]]),Pp="",mu={name:"IbRadio",props:{modelValue:"",label:String,error:{type:Boolean,default:!1},name:{type:String},id:{type:String,default(){return pt()}},value:{type:[String,Number],required:!0},disabled:{type:Boolean,default:!1}},emits:["update:modelValue"],data(){return{uid:pt()}},mounted(){this.checked=this.isChecked},methods:{checkHandler(){this.$emit("update:modelValue",this.value)}},computed:{classes(){return{"ib-radio":!0,"has-error":this.error,"radio-filled":this.isChecked,"radio-disabled":this.disabled}},isChecked(){return this.modelValue===this.value}}},gu=t=>(i.pushScopeId("data-v-903afa0e"),t=t(),i.popScopeId(),t),yu=["for","aria-checked"],bu=["name","id","value","checked","disabled"],vu=gu(()=>i.createElementVNode("span",{class:"ib-radio-input"},null,-1)),_u={key:0,class:"ib-radio-label"};function $u(t,n,e,o,a,r){var s,l;return i.openBlock(),i.createElementBlock("label",{role:"radio",class:i.normalizeClass(r.classes),for:e.id,"aria-checked":r.isChecked},[i.createElementVNode("input",{type:"radio",name:e.name,id:e.id,value:e.value,checked:r.isChecked,disabled:e.disabled,ref:"radio",onChange:n[0]||(n[0]=(...u)=>r.checkHandler&&r.checkHandler(...u))},null,40,bu),i.createElementVNode("span",{class:i.normalizeClass(["ib-radio-body",{"without-text":!((s=e.label)!=null&&s.length)}])},[vu,(l=e.label)!=null&&l.length?(i.openBlock(),i.createElementBlock("span",_u,i.toDisplayString(e.label),1)):i.createCommentVNode("",!0)],2)],10,yu)}const wu=_e(mu,[["render",$u],["__scopeId","data-v-903afa0e"]]),Ip="",ku={props:{characterLimit:{type:[String,Number],required:!0},characterLength:{type:[String,Number],required:!0}}},Cu={class:"character-count"},Ou={key:0,class:"val-limit"},Eu={class:"val-length"},Su={class:"val-limit"},xu={key:2,class:"val-length error"};function Tu(t,n,e,o,a,r){return i.openBlock(),i.createElementBlock("div",Cu,[e.characterLength?e.characterLimit>=e.characterLength?(i.openBlock(),i.createElementBlock(i.Fragment,{key:1},[i.createElementVNode("p",Eu,i.toDisplayString(e.characterLength),1),i.createTextVNode(" / "),i.createElementVNode("p",Su,i.toDisplayString(e.characterLimit),1)],64)):(i.openBlock(),i.createElementBlock("p",xu,i.toDisplayString(e.characterLimit-e.characterLength),1)):(i.openBlock(),i.createElementBlock("p",Ou,"Max "+i.toDisplayString(e.characterLimit),1))])}const zr=_e(ku,[["render",Tu],["__scopeId","data-v-be1f2629"]]),Mp="",Nu={name:"IbTextarea",props:{disabled:{type:Boolean,default:!1},id:{type:String,default(){return pt()}},error:{type:Boolean,default:!1},characterLimit:{type:Number,default:null},errorMessage:{type:String,default:""},characterLimitErrorMessage:{type:String,default:""},value:{type:String,default:""}},watch:{value(){this.val=this.value},val(){this.$emit("update:value",this.val)}},data(){return{val:this.value}},methods:{onInput(){this.$emit("input",this.val)},onBlur(){this.$emit("blur",this.val)}},computed:{characterOverLimit(){return!!this.characterLimit&&this.val.length>this.characterLimit},classes(){const t=["ib-textarea"];return(this.error||this.errorMessage.length||this.characterOverLimit)&&t.push("error"),t}},components:{IbAlert:Ft,IbCharacterCount:zr},emits:["input","blur","update:value"],inheritAttrs:!1},Au=["disabled"],Du={class:"textarea-actions"};function Pu(t,n,e,o,a,r){const s=i.resolveComponent("ib-character-count"),l=i.resolveComponent("ib-alert");return i.openBlock(),i.createElementBlock("div",{class:i.normalizeClass(["textarea-wrapper",{disabled:e.disabled,hasActins:t.$slots.actions}])},[e.characterLimit?(i.openBlock(),i.createBlock(s,{key:0,"character-limit":e.characterLimit,"character-length":a.val.length},null,8,["character-limit","character-length"])):i.createCommentVNode("",!0),i.withDirectives(i.createVNode(l,null,{default:i.withCtx(()=>[i.createTextVNode(i.toDisplayString(e.errorMessage),1)]),_:1},512),[[i.vShow,e.errorMessage.length]]),i.withDirectives(i.createVNode(l,null,{default:i.withCtx(()=>[i.createTextVNode(i.toDisplayString(e.characterLimitErrorMessage),1)]),_:1},512),[[i.vShow,e.characterLimitErrorMessage.length&&r.characterOverLimit]]),i.withDirectives(i.createElementVNode("textarea",i.mergeProps(t.$attrs,{"onUpdate:modelValue":n[0]||(n[0]=u=>a.val=u),onInput:n[1]||(n[1]=(...u)=>r.onInput&&r.onInput(...u)),onBlur:n[2]||(n[2]=(...u)=>r.onBlur&&r.onBlur(...u)),class:["ib-textarea",r.classes],disabled:e.disabled}),null,16,Au),[[i.vModelText,a.val]]),i.createElementVNode("div",Du,[i.renderSlot(t.$slots,"actions",{},void 0,!0)])],2)}const Iu=_e(Nu,[["render",Pu],["__scopeId","data-v-8cf7f825"]]);var Ur=["onChange","onClose","onDayCreate","onDestroy","onKeyDown","onMonthChange","onOpen","onParseConfig","onReady","onValueUpdate","onYearChange","onPreCalendarPosition"],cn={_disable:[],allowInput:!1,allowInvalidPreload:!1,altFormat:"F j, Y",altInput:!1,altInputClass:"form-control input",animate:typeof window=="object"&&window.navigator.userAgent.indexOf("MSIE")===-1,ariaDateFormat:"F j, Y",autoFillDefaultTime:!0,clickOpens:!0,closeOnSelect:!0,conjunction:", ",dateFormat:"Y-m-d",defaultHour:12,defaultMinute:0,defaultSeconds:0,disable:[],disableMobile:!1,enableSeconds:!1,enableTime:!1,errorHandler:function(t){return typeof console<"u"&&console.warn(t)},getWeek:function(t){var n=new Date(t.getTime());n.setHours(0,0,0,0),n.setDate(n.getDate()+3-(n.getDay()+6)%7);var e=new Date(n.getFullYear(),0,4);return 1+Math.round(((n.getTime()-e.getTime())/864e5-3+(e.getDay()+6)%7)/7)},hourIncrement:1,ignoredFocusElements:[],inline:!1,locale:"default",minuteIncrement:5,mode:"single",monthSelectorType:"dropdown",nextArrow:"<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 17 17'><g></g><path d='M13.207 8.472l-7.854 7.854-0.707-0.707 7.146-7.146-7.146-7.148 0.707-0.707 7.854 7.854z' /></svg>",noCalendar:!1,now:new Date,onChange:[],onClose:[],onDayCreate:[],onDestroy:[],onKeyDown:[],onMonthChange:[],onOpen:[],onParseConfig:[],onReady:[],onValueUpdate:[],onYearChange:[],onPreCalendarPosition:[],plugins:[],position:"auto",positionElement:void 0,prevArrow:"<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 17 17'><g></g><path d='M5.207 8.471l7.146 7.147-0.707 0.707-7.853-7.854 7.854-7.853 0.707 0.707-7.147 7.146z' /></svg>",shorthandCurrentMonth:!1,showMonths:1,static:!1,time_24hr:!1,weekNumbers:!1,wrap:!1},En={weekdays:{shorthand:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],longhand:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"]},months:{shorthand:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],longhand:["January","February","March","April","May","June","July","August","September","October","November","December"]},daysInMonth:[31,28,31,30,31,30,31,31,30,31,30,31],firstDayOfWeek:0,ordinal:function(t){var n=t%100;if(n>3&&n<21)return"th";switch(n%10){case 1:return"st";case 2:return"nd";case 3:return"rd";default:return"th"}},rangeSeparator:" to ",weekAbbreviation:"Wk",scrollTitle:"Scroll to increment",toggleTitle:"Click to toggle",amPM:["AM","PM"],yearAriaLabel:"Year",monthAriaLabel:"Month",hourAriaLabel:"Hour",minuteAriaLabel:"Minute",time_24hr:!1},at=function(t,n){return n===void 0&&(n=2),("000"+t).slice(n*-1)},gt=function(t){return t===!0?1:0};function Mo(t,n){var e;return function(){var o=this,a=arguments;clearTimeout(e),e=setTimeout(function(){return t.apply(o,a)},n)}}var Kr=function(t){return t instanceof Array?t:[t]};function et(t,n,e){if(e===!0)return t.classList.add(n);t.classList.remove(n)}function De(t,n,e){var o=window.document.createElement(t);return n=n||"",e=e||"",o.className=n,e!==void 0&&(o.textContent=e),o}function ar(t){for(;t.firstChild;)t.removeChild(t.firstChild)}function Bo(t,n){if(n(t))return t;if(t.parentNode)return Bo(t.parentNode,n)}function lr(t,n){var e=De("div","numInputWrapper"),o=De("input","numInput "+t),a=De("span","arrowUp"),r=De("span","arrowDown");if(navigator.userAgent.indexOf("MSIE 9.0")===-1?o.type="number":(o.type="text",o.pattern="\\d*"),n!==void 0)for(var s in n)o.setAttribute(s,n[s]);return e.appendChild(o),e.appendChild(a),e.appendChild(r),e}function ft(t){try{if(typeof t.composedPath=="function"){var n=t.composedPath();return n[0]}return t.target}catch{return t.target}}var Gr=function(){},sr=function(t,n,e){return e.months[n?"shorthand":"longhand"][t]},Mu={D:Gr,F:function(t,n,e){t.setMonth(e.months.longhand.indexOf(n))},G:function(t,n){t.setHours((t.getHours()>=12?12:0)+parseFloat(n))},H:function(t,n){t.setHours(parseFloat(n))},J:function(t,n){t.setDate(parseFloat(n))},K:function(t,n,e){t.setHours(t.getHours()%12+12*gt(new RegExp(e.amPM[1],"i").test(n)))},M:function(t,n,e){t.setMonth(e.months.shorthand.indexOf(n))},S:function(t,n){t.setSeconds(parseFloat(n))},U:function(t,n){return new Date(parseFloat(n)*1e3)},W:function(t,n,e){var o=parseInt(n),a=new Date(t.getFullYear(),0,2+(o-1)*7,0,0,0,0);return a.setDate(a.getDate()-a.getDay()+e.firstDayOfWeek),a},Y:function(t,n){t.setFullYear(parseFloat(n))},Z:function(t,n){return new Date(n)},d:function(t,n){t.setDate(parseFloat(n))},h:function(t,n){t.setHours((t.getHours()>=12?12:0)+parseFloat(n))},i:function(t,n){t.setMinutes(parseFloat(n))},j:function(t,n){t.setDate(parseFloat(n))},l:Gr,m:function(t,n){t.setMonth(parseFloat(n)-1)},n:function(t,n){t.setMonth(parseFloat(n)-1)},s:function(t,n){t.setSeconds(parseFloat(n))},u:function(t,n){return new Date(parseFloat(n))},w:Gr,y:function(t,n){t.setFullYear(2e3+parseFloat(n))}},Yt={D:"",F:"",G:"(\\d\\d|\\d)",H:"(\\d\\d|\\d)",J:"(\\d\\d|\\d)\\w+",K:"",M:"",S:"(\\d\\d|\\d)",U:"(.+)",W:"(\\d\\d|\\d)",Y:"(\\d{4})",Z:"(.+)",d:"(\\d\\d|\\d)",h:"(\\d\\d|\\d)",i:"(\\d\\d|\\d)",j:"(\\d\\d|\\d)",l:"",m:"(\\d\\d|\\d)",n:"(\\d\\d|\\d)",s:"(\\d\\d|\\d)",u:"(.+)",w:"(\\d\\d|\\d)",y:"(\\d{2})"},Sn={Z:function(t){return t.toISOString()},D:function(t,n,e){return n.weekdays.shorthand[Sn.w(t,n,e)]},F:function(t,n,e){return sr(Sn.n(t,n,e)-1,!1,n)},G:function(t,n,e){return at(Sn.h(t,n,e))},H:function(t){return at(t.getHours())},J:function(t,n){return n.ordinal!==void 0?t.getDate()+n.ordinal(t.getDate()):t.getDate()},K:function(t,n){return n.amPM[gt(t.getHours()>11)]},M:function(t,n){return sr(t.getMonth(),!0,n)},S:function(t){return at(t.getSeconds())},U:function(t){return t.getTime()/1e3},W:function(t,n,e){return e.getWeek(t)},Y:function(t){return at(t.getFullYear(),4)},d:function(t){return at(t.getDate())},h:function(t){return t.getHours()%12?t.getHours()%12:12},i:function(t){return at(t.getMinutes())},j:function(t){return t.getDate()},l:function(t,n){return n.weekdays.longhand[t.getDay()]},m:function(t){return at(t.getMonth()+1)},n:function(t){return t.getMonth()+1},s:function(t){return t.getSeconds()},u:function(t){return t.getTime()},w:function(t){return t.getDay()},y:function(t){return String(t.getFullYear()).substring(2)}},Lo=function(t){var n=t.config,e=n===void 0?cn:n,o=t.l10n,a=o===void 0?En:o,r=t.isMobile,s=r===void 0?!1:r;return function(l,u,d){var p=d||a;return e.formatDate!==void 0&&!s?e.formatDate(l,u,p):u.split("").map(function(f,c,h){return Sn[f]&&h[c-1]!=="\\"?Sn[f](l,p,e):f!=="\\"?f:""}).join("")}},Wr=function(t){var n=t.config,e=n===void 0?cn:n,o=t.l10n,a=o===void 0?En:o;return function(r,s,l,u){if(!(r!==0&&!r)){var d=u||a,p,f=r;if(r instanceof Date)p=new Date(r.getTime());else if(typeof r!="string"&&r.toFixed!==void 0)p=new Date(r);else if(typeof r=="string"){var c=s||(e||cn).dateFormat,h=String(r).trim();if(h==="today")p=new Date,l=!0;else if(e&&e.parseDate)p=e.parseDate(r,c);else if(/Z$/.test(h)||/GMT$/.test(h))p=new Date(r);else{for(var v=void 0,m=[],_=0,y=0,g="";_<c.length;_++){var w=c[_],b=w==="\\",k=c[_-1]==="\\"||b;if(Yt[w]&&!k){g+=Yt[w];var T=new RegExp(g).exec(r);T&&(v=!0)&&m[w!=="Y"?"push":"unshift"]({fn:Mu[w],val:T[++y]})}else b||(g+=".")}p=!e||!e.noCalendar?new Date(new Date().getFullYear(),0,1,0,0,0,0):new Date(new Date().setHours(0,0,0,0)),m.forEach(function(S){var x=S.fn,B=S.val;return p=x(p,B,d)||p}),p=v?p:void 0}}if(!(p instanceof Date&&!isNaN(p.getTime()))){e.errorHandler(new Error("Invalid date provided: "+f));return}return l===!0&&p.setHours(0,0,0,0),p}}};function ht(t,n,e){return e===void 0&&(e=!0),e!==!1?new Date(t.getTime()).setHours(0,0,0,0)-new Date(n.getTime()).setHours(0,0,0,0):t.getTime()-n.getTime()}var Bu=function(t,n,e){return t>Math.min(n,e)&&t<Math.max(n,e)},Yr=function(t,n,e){return t*3600+n*60+e},Lu=function(t){var n=Math.floor(t/3600),e=(t-n*3600)/60;return[n,e,t-n*3600-e*60]},Ru={DAY:864e5};function Zr(t){var n=t.defaultHour,e=t.defaultMinute,o=t.defaultSeconds;if(t.minDate!==void 0){var a=t.minDate.getHours(),r=t.minDate.getMinutes(),s=t.minDate.getSeconds();n<a&&(n=a),n===a&&e<r&&(e=r),n===a&&e===r&&o<s&&(o=t.minDate.getSeconds())}if(t.maxDate!==void 0){var l=t.maxDate.getHours(),u=t.maxDate.getMinutes();n=Math.min(n,l),n===l&&(e=Math.min(u,e)),n===l&&e===u&&(o=t.maxDate.getSeconds())}return{hours:n,minutes:e,seconds:o}}typeof Object.assign!="function"&&(Object.assign=function(t){for(var n=[],e=1;e<arguments.length;e++)n[e-1]=arguments[e];if(!t)throw TypeError("Cannot convert undefined or null to object");for(var o=function(l){l&&Object.keys(l).forEach(function(u){return t[u]=l[u]})},a=0,r=n;a<r.length;a++){var s=r[a];o(s)}return t});var Ye=globalThis&&globalThis.__assign||function(){return Ye=Object.assign||function(t){for(var n,e=1,o=arguments.length;e<o;e++){n=arguments[e];for(var a in n)Object.prototype.hasOwnProperty.call(n,a)&&(t[a]=n[a])}return t},Ye.apply(this,arguments)},Ro=globalThis&&globalThis.__spreadArrays||function(){for(var t=0,n=0,e=arguments.length;n<e;n++)t+=arguments[n].length;for(var o=Array(t),a=0,n=0;n<e;n++)for(var r=arguments[n],s=0,l=r.length;s<l;s++,a++)o[a]=r[s];return o},ju=300;function Vu(t,n){var e={config:Ye(Ye({},cn),Ve.defaultConfig),l10n:En};e.parseDate=Wr({config:e.config,l10n:e.l10n}),e._handlers=[],e.pluginElements=[],e.loadedPlugins=[],e._bind=m,e._setHoursFromDate=c,e._positionCalendar=te,e.changeMonth=D,e.changeYear=z,e.clear=A,e.close=I,e.onMouseOver=he,e._createElement=De,e.createDay=T,e.destroy=U,e.isEnabled=Z,e.jumpToDate=g,e.updateValue=it,e.open=ke,e.redraw=ie,e.set=ze,e.setDate=Ae,e.toggle=Xt;function o(){e.utils={getDaysInMonth:function(M,j){return M===void 0&&(M=e.currentMonth),j===void 0&&(j=e.currentYear),M===1&&(j%4===0&&j%100!==0||j%400===0)?29:e.l10n.daysInMonth[M]}}}function a(){e.element=e.input=t,e.isOpen=!1,Re(),Q(),rt(),Ee(),o(),e.isMobile||k(),y(),(e.selectedDates.length||e.config.noCalendar)&&(e.config.enableTime&&c(e.config.noCalendar?e.latestSelectedDateObj:void 0),it(!1)),l();var M=/^((?!chrome|android).)*safari/i.test(navigator.userAgent);!e.isMobile&&M&&te(),Pe("onReady")}function r(){var M;return((M=e.calendarContainer)===null||M===void 0?void 0:M.getRootNode()).activeElement||document.activeElement}function s(M){return M.bind(e)}function l(){var M=e.config;M.weekNumbers===!1&&M.showMonths===1||M.noCalendar!==!0&&window.requestAnimationFrame(function(){if(e.calendarContainer!==void 0&&(e.calendarContainer.style.visibility="hidden",e.calendarContainer.style.display="block"),e.daysContainer!==void 0){var j=(e.days.offsetWidth+1)*M.showMonths;e.daysContainer.style.width=j+"px",e.calendarContainer.style.width=j+(e.weekWrapper!==void 0?e.weekWrapper.offsetWidth:0)+"px",e.calendarContainer.style.removeProperty("visibility"),e.calendarContainer.style.removeProperty("display")}})}function u(M){if(e.selectedDates.length===0){var j=e.config.minDate===void 0||ht(new Date,e.config.minDate)>=0?new Date:new Date(e.config.minDate.getTime()),G=Zr(e.config);j.setHours(G.hours,G.minutes,G.seconds,j.getMilliseconds()),e.selectedDates=[j],e.latestSelectedDateObj=j}M!==void 0&&M.type!=="blur"&&Qt(M);var X=e._input.value;f(),it(),e._input.value!==X&&e._debouncedChange()}function d(M,j){return M%12+12*gt(j===e.l10n.amPM[1])}function p(M){switch(M%24){case 0:case 12:return 12;default:return M%12}}function f(){if(!(e.hourElement===void 0||e.minuteElement===void 0)){var M=(parseInt(e.hourElement.value.slice(-2),10)||0)%24,j=(parseInt(e.minuteElement.value,10)||0)%60,G=e.secondElement!==void 0?(parseInt(e.secondElement.value,10)||0)%60:0;e.amPM!==void 0&&(M=d(M,e.amPM.textContent));var X=e.config.minTime!==void 0||e.config.minDate&&e.minDateHasTime&&e.latestSelectedDateObj&&ht(e.latestSelectedDateObj,e.config.minDate,!0)===0,oe=e.config.maxTime!==void 0||e.config.maxDate&&e.maxDateHasTime&&e.latestSelectedDateObj&&ht(e.latestSelectedDateObj,e.config.maxDate,!0)===0;if(e.config.maxTime!==void 0&&e.config.minTime!==void 0&&e.config.minTime>e.config.maxTime){var se=Yr(e.config.minTime.getHours(),e.config.minTime.getMinutes(),e.config.minTime.getSeconds()),ye=Yr(e.config.maxTime.getHours(),e.config.maxTime.getMinutes(),e.config.maxTime.getSeconds()),ue=Yr(M,j,G);if(ue>ye&&ue<se){var Ce=Lu(se);M=Ce[0],j=Ce[1],G=Ce[2]}}else{if(oe){var de=e.config.maxTime!==void 0?e.config.maxTime:e.config.maxDate;M=Math.min(M,de.getHours()),M===de.getHours()&&(j=Math.min(j,de.getMinutes())),j===de.getMinutes()&&(G=Math.min(G,de.getSeconds()))}if(X){var ge=e.config.minTime!==void 0?e.config.minTime:e.config.minDate;M=Math.max(M,ge.getHours()),M===ge.getHours()&&j<ge.getMinutes()&&(j=ge.getMinutes()),j===ge.getMinutes()&&(G=Math.max(G,ge.getSeconds()))}}h(M,j,G)}}function c(M){var j=M||e.latestSelectedDateObj;j&&j instanceof Date&&h(j.getHours(),j.getMinutes(),j.getSeconds())}function h(M,j,G){e.latestSelectedDateObj!==void 0&&e.latestSelectedDateObj.setHours(M%24,j,G||0,0),!(!e.hourElement||!e.minuteElement||e.isMobile)&&(e.hourElement.value=at(e.config.time_24hr?M:(12+M)%12+12*gt(M%12===0)),e.minuteElement.value=at(j),e.amPM!==void 0&&(e.amPM.textContent=e.l10n.amPM[gt(M>=12)]),e.secondElement!==void 0&&(e.secondElement.value=at(G)))}function v(M){var j=ft(M),G=parseInt(j.value)+(M.delta||0);(G/1e3>1||M.key==="Enter"&&!/[^\d]/.test(G.toString()))&&z(G)}function m(M,j,G,X){if(j instanceof Array)return j.forEach(function(oe){return m(M,oe,G,X)});if(M instanceof Array)return M.forEach(function(oe){return m(oe,j,G,X)});M.addEventListener(j,G,X),e._handlers.push({remove:function(){return M.removeEventListener(j,G,X)}})}function _(){Pe("onChange")}function y(){if(e.config.wrap&&["open","close","toggle","clear"].forEach(function(G){Array.prototype.forEach.call(e.element.querySelectorAll("[data-"+G+"]"),function(X){return m(X,"click",e[G])})}),e.isMobile){Mn();return}var M=Mo(be,50);if(e._debouncedChange=Mo(_,ju),e.daysContainer&&!/iPhone|iPad|iPod/i.test(navigator.userAgent)&&m(e.daysContainer,"mouseover",function(G){e.config.mode==="range"&&he(ft(G))}),m(e._input,"keydown",ce),e.calendarContainer!==void 0&&m(e.calendarContainer,"keydown",ce),!e.config.inline&&!e.config.static&&m(window,"resize",M),window.ontouchstart!==void 0?m(window.document,"touchstart",L):m(window.document,"mousedown",L),m(window.document,"focus",L,{capture:!0}),e.config.clickOpens===!0&&(m(e._input,"focus",e.open),m(e._input,"click",e.open)),e.daysContainer!==void 0&&(m(e.monthNav,"click",It),m(e.monthNav,["keyup","increment"],v),m(e.daysContainer,"click",me)),e.timeContainer!==void 0&&e.minuteElement!==void 0&&e.hourElement!==void 0){var j=function(G){return ft(G).select()};m(e.timeContainer,["increment"],u),m(e.timeContainer,"blur",u,{capture:!0}),m(e.timeContainer,"click",w),m([e.hourElement,e.minuteElement],["focus","click"],j),e.secondElement!==void 0&&m(e.secondElement,"focus",function(){return e.secondElement&&e.secondElement.select()}),e.amPM!==void 0&&m(e.amPM,"click",function(G){u(G)})}e.config.allowInput&&m(e._input,"blur",ne)}function g(M,j){var G=M!==void 0?e.parseDate(M):e.latestSelectedDateObj||(e.config.minDate&&e.config.minDate>e.now?e.config.minDate:e.config.maxDate&&e.config.maxDate<e.now?e.config.maxDate:e.now),X=e.currentYear,oe=e.currentMonth;try{G!==void 0&&(e.currentYear=G.getFullYear(),e.currentMonth=G.getMonth())}catch(se){se.message="Invalid date supplied: "+G,e.config.errorHandler(se)}j&&e.currentYear!==X&&(Pe("onYearChange"),N()),j&&(e.currentYear!==X||e.currentMonth!==oe)&&Pe("onMonthChange"),e.redraw()}function w(M){var j=ft(M);~j.className.indexOf("arrow")&&b(M,j.classList.contains("arrowUp")?1:-1)}function b(M,j,G){var X=M&&ft(M),oe=G||X&&X.parentNode&&X.parentNode.firstChild,se=zt("increment");se.delta=j,oe&&oe.dispatchEvent(se)}function k(){var M=window.document.createDocumentFragment();if(e.calendarContainer=De("div","flatpickr-calendar"),e.calendarContainer.tabIndex=-1,!e.config.noCalendar){if(M.appendChild(W()),e.innerContainer=De("div","flatpickr-innerContainer"),e.config.weekNumbers){var j=V(),G=j.weekWrapper,X=j.weekNumbers;e.innerContainer.appendChild(G),e.weekNumbers=X,e.weekWrapper=G}e.rContainer=De("div","flatpickr-rContainer"),e.rContainer.appendChild(re()),e.daysContainer||(e.daysContainer=De("div","flatpickr-days"),e.daysContainer.tabIndex=-1),O(),e.rContainer.appendChild(e.daysContainer),e.innerContainer.appendChild(e.rContainer),M.appendChild(e.innerContainer)}e.config.enableTime&&M.appendChild(Y()),et(e.calendarContainer,"rangeMode",e.config.mode==="range"),et(e.calendarContainer,"animate",e.config.animate===!0),et(e.calendarContainer,"multiMonth",e.config.showMonths>1),e.calendarContainer.appendChild(M);var oe=e.config.appendTo!==void 0&&e.config.appendTo.nodeType!==void 0;if((e.config.inline||e.config.static)&&(e.calendarContainer.classList.add(e.config.inline?"inline":"static"),e.config.inline&&(!oe&&e.element.parentNode?e.element.parentNode.insertBefore(e.calendarContainer,e._input.nextSibling):e.config.appendTo!==void 0&&e.config.appendTo.appendChild(e.calendarContainer)),e.config.static)){var se=De("div","flatpickr-wrapper");e.element.parentNode&&e.element.parentNode.insertBefore(se,e.element),se.appendChild(e.element),e.altInput&&se.appendChild(e.altInput),se.appendChild(e.calendarContainer)}!e.config.static&&!e.config.inline&&(e.config.appendTo!==void 0?e.config.appendTo:window.document.body).appendChild(e.calendarContainer)}function T(M,j,G,X){var oe=Z(j,!0),se=De("span",M,j.getDate().toString());return se.dateObj=j,se.$i=X,se.setAttribute("aria-label",e.formatDate(j,e.config.ariaDateFormat)),M.indexOf("hidden")===-1&&ht(j,e.now)===0&&(e.todayDateElem=se,se.classList.add("today"),se.setAttribute("aria-current","date")),oe?(se.tabIndex=-1,kt(j)&&(se.classList.add("selected"),e.selectedDateElem=se,e.config.mode==="range"&&(et(se,"startRange",e.selectedDates[0]&&ht(j,e.selectedDates[0],!0)===0),et(se,"endRange",e.selectedDates[1]&&ht(j,e.selectedDates[1],!0)===0),M==="nextMonthDay"&&se.classList.add("inRange")))):se.classList.add("flatpickr-disabled"),e.config.mode==="range"&&Pt(j)&&!kt(j)&&se.classList.add("inRange"),e.weekNumbers&&e.config.showMonths===1&&M!=="prevMonthDay"&&X%7===6&&e.weekNumbers.insertAdjacentHTML("beforeend","<span class='flatpickr-day'>"+e.config.getWeek(j)+"</span>"),Pe("onDayCreate",se),se}function S(M){M.focus(),e.config.mode==="range"&&he(M)}function x(M){for(var j=M>0?0:e.config.showMonths-1,G=M>0?e.config.showMonths:-1,X=j;X!=G;X+=M)for(var oe=e.daysContainer.children[X],se=M>0?0:oe.children.length-1,ye=M>0?oe.children.length:-1,ue=se;ue!=ye;ue+=M){var Ce=oe.children[ue];if(Ce.className.indexOf("hidden")===-1&&Z(Ce.dateObj))return Ce}}function B(M,j){for(var G=M.className.indexOf("Month")===-1?M.dateObj.getMonth():e.currentMonth,X=j>0?e.config.showMonths:-1,oe=j>0?1:-1,se=G-e.currentMonth;se!=X;se+=oe)for(var ye=e.daysContainer.children[se],ue=G-e.currentMonth===se?M.$i+j:j<0?ye.children.length-1:0,Ce=ye.children.length,de=ue;de>=0&&de<Ce&&de!=(j>0?Ce:-1);de+=oe){var ge=ye.children[de];if(ge.className.indexOf("hidden")===-1&&Z(ge.dateObj)&&Math.abs(M.$i-de)>=Math.abs(j))return S(ge)}e.changeMonth(oe),E(x(oe),0)}function E(M,j){var G=r(),X=J(G||document.body),oe=M!==void 0?M:X?G:e.selectedDateElem!==void 0&&J(e.selectedDateElem)?e.selectedDateElem:e.todayDateElem!==void 0&&J(e.todayDateElem)?e.todayDateElem:x(j>0?1:-1);oe===void 0?e._input.focus():X?B(oe,j):S(oe)}function C(M,j){for(var G=(new Date(M,j,1).getDay()-e.l10n.firstDayOfWeek+7)%7,X=e.utils.getDaysInMonth((j-1+12)%12,M),oe=e.utils.getDaysInMonth(j,M),se=window.document.createDocumentFragment(),ye=e.config.showMonths>1,ue=ye?"prevMonthDay hidden":"prevMonthDay",Ce=ye?"nextMonthDay hidden":"nextMonthDay",de=X+1-G,ge=0;de<=X;de++,ge++)se.appendChild(T("flatpickr-day "+ue,new Date(M,j-1,de),de,ge));for(de=1;de<=oe;de++,ge++)se.appendChild(T("flatpickr-day",new Date(M,j,de),de,ge));for(var Te=oe+1;Te<=42-G&&(e.config.showMonths===1||ge%7!==0);Te++,ge++)se.appendChild(T("flatpickr-day "+Ce,new Date(M,j+1,Te%oe),Te,ge));var Me=De("div","dayContainer");return Me.appendChild(se),Me}function O(){if(e.daysContainer!==void 0){ar(e.daysContainer),e.weekNumbers&&ar(e.weekNumbers);for(var M=document.createDocumentFragment(),j=0;j<e.config.showMonths;j++){var G=new Date(e.currentYear,e.currentMonth,1);G.setMonth(e.currentMonth+j),M.appendChild(C(G.getFullYear(),G.getMonth()))}e.daysContainer.appendChild(M),e.days=e.daysContainer.firstChild,e.config.mode==="range"&&e.selectedDates.length===1&&he()}}function N(){if(!(e.config.showMonths>1||e.config.monthSelectorType!=="dropdown")){var M=function(X){return e.config.minDate!==void 0&&e.currentYear===e.config.minDate.getFullYear()&&X<e.config.minDate.getMonth()?!1:!(e.config.maxDate!==void 0&&e.currentYear===e.config.maxDate.getFullYear()&&X>e.config.maxDate.getMonth())};e.monthsDropdownContainer.tabIndex=-1,e.monthsDropdownContainer.innerHTML="";for(var j=0;j<12;j++)if(M(j)){var G=De("option","flatpickr-monthDropdown-month");G.value=new Date(e.currentYear,j).getMonth().toString(),G.textContent=sr(j,e.config.shorthandCurrentMonth,e.l10n),G.tabIndex=-1,e.currentMonth===j&&(G.selected=!0),e.monthsDropdownContainer.appendChild(G)}}}function R(){var M=De("div","flatpickr-month"),j=window.document.createDocumentFragment(),G;e.config.showMonths>1||e.config.monthSelectorType==="static"?G=De("span","cur-month"):(e.monthsDropdownContainer=De("select","flatpickr-monthDropdown-months"),e.monthsDropdownContainer.setAttribute("aria-label",e.l10n.monthAriaLabel),m(e.monthsDropdownContainer,"change",function(ye){var ue=ft(ye),Ce=parseInt(ue.value,10);e.changeMonth(Ce-e.currentMonth),Pe("onMonthChange")}),N(),G=e.monthsDropdownContainer);var X=lr("cur-year",{tabindex:"-1"}),oe=X.getElementsByTagName("input")[0];oe.setAttribute("aria-label",e.l10n.yearAriaLabel),e.config.minDate&&oe.setAttribute("min",e.config.minDate.getFullYear().toString()),e.config.maxDate&&(oe.setAttribute("max",e.config.maxDate.getFullYear().toString()),oe.disabled=!!e.config.minDate&&e.config.minDate.getFullYear()===e.config.maxDate.getFullYear());var se=De("div","flatpickr-current-month");return se.appendChild(G),se.appendChild(X),j.appendChild(se),M.appendChild(j),{container:M,yearElement:oe,monthElement:G}}function q(){ar(e.monthNav),e.monthNav.appendChild(e.prevMonthNav),e.config.showMonths&&(e.yearElements=[],e.monthElements=[]);for(var M=e.config.showMonths;M--;){var j=R();e.yearElements.push(j.yearElement),e.monthElements.push(j.monthElement),e.monthNav.appendChild(j.container)}e.monthNav.appendChild(e.nextMonthNav)}function W(){return e.monthNav=De("div","flatpickr-months"),e.yearElements=[],e.monthElements=[],e.prevMonthNav=De("span","flatpickr-prev-month"),e.prevMonthNav.innerHTML=e.config.prevArrow,e.nextMonthNav=De("span","flatpickr-next-month"),e.nextMonthNav.innerHTML=e.config.nextArrow,q(),Object.defineProperty(e,"_hidePrevMonthArrow",{get:function(){return e.__hidePrevMonthArrow},set:function(M){e.__hidePrevMonthArrow!==M&&(et(e.prevMonthNav,"flatpickr-disabled",M),e.__hidePrevMonthArrow=M)}}),Object.defineProperty(e,"_hideNextMonthArrow",{get:function(){return e.__hideNextMonthArrow},set:function(M){e.__hideNextMonthArrow!==M&&(et(e.nextMonthNav,"flatpickr-disabled",M),e.__hideNextMonthArrow=M)}}),e.currentYearElement=e.yearElements[0],Ze(),e.monthNav}function Y(){e.calendarContainer.classList.add("hasTime"),e.config.noCalendar&&e.calendarContainer.classList.add("noCalendar");var M=Zr(e.config);e.timeContainer=De("div","flatpickr-time"),e.timeContainer.tabIndex=-1;var j=De("span","flatpickr-time-separator",":"),G=lr("flatpickr-hour",{"aria-label":e.l10n.hourAriaLabel});e.hourElement=G.getElementsByTagName("input")[0];var X=lr("flatpickr-minute",{"aria-label":e.l10n.minuteAriaLabel});if(e.minuteElement=X.getElementsByTagName("input")[0],e.hourElement.tabIndex=e.minuteElement.tabIndex=-1,e.hourElement.value=at(e.latestSelectedDateObj?e.latestSelectedDateObj.getHours():e.config.time_24hr?M.hours:p(M.hours)),e.minuteElement.value=at(e.latestSelectedDateObj?e.latestSelectedDateObj.getMinutes():M.minutes),e.hourElement.setAttribute("step",e.config.hourIncrement.toString()),e.minuteElement.setAttribute("step",e.config.minuteIncrement.toString()),e.hourElement.setAttribute("min",e.config.time_24hr?"0":"1"),e.hourElement.setAttribute("max",e.config.time_24hr?"23":"12"),e.hourElement.setAttribute("maxlength","2"),e.minuteElement.setAttribute("min","0"),e.minuteElement.setAttribute("max","59"),e.minuteElement.setAttribute("maxlength","2"),e.timeContainer.appendChild(G),e.timeContainer.appendChild(j),e.timeContainer.appendChild(X),e.config.time_24hr&&e.timeContainer.classList.add("time24hr"),e.config.enableSeconds){e.timeContainer.classList.add("hasSeconds");var oe=lr("flatpickr-second");e.secondElement=oe.getElementsByTagName("input")[0],e.secondElement.value=at(e.latestSelectedDateObj?e.latestSelectedDateObj.getSeconds():M.seconds),e.secondElement.setAttribute("step",e.minuteElement.getAttribute("step")),e.secondElement.setAttribute("min","0"),e.secondElement.setAttribute("max","59"),e.secondElement.setAttribute("maxlength","2"),e.timeContainer.appendChild(De("span","flatpickr-time-separator",":")),e.timeContainer.appendChild(oe)}return e.config.time_24hr||(e.amPM=De("span","flatpickr-am-pm",e.l10n.amPM[gt((e.latestSelectedDateObj?e.hourElement.value:e.config.defaultHour)>11)]),e.amPM.title=e.l10n.toggleTitle,e.amPM.tabIndex=-1,e.timeContainer.appendChild(e.amPM)),e.timeContainer}function re(){e.weekdayContainer?ar(e.weekdayContainer):e.weekdayContainer=De("div","flatpickr-weekdays");for(var M=e.config.showMonths;M--;){var j=De("div","flatpickr-weekdaycontainer");e.weekdayContainer.appendChild(j)}return K(),e.weekdayContainer}function K(){if(e.weekdayContainer){var M=e.l10n.firstDayOfWeek,j=Ro(e.l10n.weekdays.shorthand);M>0&&M<j.length&&(j=Ro(j.splice(M,j.length),j.splice(0,M)));for(var G=e.config.showMonths;G--;)e.weekdayContainer.children[G].innerHTML=`
|
|
58
61
|
<span class='flatpickr-weekday'>
|
|
59
|
-
`+
|
|
62
|
+
`+j.join("</span><span class='flatpickr-weekday'>")+`
|
|
60
63
|
</span>
|
|
61
|
-
`}}function R(){e.calendarContainer.classList.add("hasWeeks");var I=Ae("div","flatpickr-weekwrapper");I.appendChild(Ae("span","flatpickr-weekday",e.l10n.weekAbbreviation));var L=Ae("div","flatpickr-weeks");return I.appendChild(L),{weekWrapper:I,weekNumbers:L}}function A(I,L){L===void 0&&(L=!0);var K=L?I:I-e.currentMonth;K<0&&e._hidePrevMonthArrow===!0||K>0&&e._hideNextMonthArrow===!0||(e.currentMonth+=K,(e.currentMonth<0||e.currentMonth>11)&&(e.currentYear+=e.currentMonth>11?1:-1,e.currentMonth=(e.currentMonth+12)%12,De("onYearChange"),x()),O(),De("onMonthChange"),We())}function j(I,L){if(I===void 0&&(I=!0),L===void 0&&(L=!0),e.input.value="",e.altInput!==void 0&&(e.altInput.value=""),e.mobileInput!==void 0&&(e.mobileInput.value=""),e.selectedDates=[],e.latestSelectedDateObj=void 0,L===!0&&(e.currentYear=e._initialDate.getFullYear(),e.currentMonth=e._initialDate.getMonth()),e.config.enableTime===!0){var K=Er(e.config),X=K.hours,oe=K.minutes,se=K.seconds;c(X,oe,se)}e.redraw(),I&&De("onChange")}function V(){e.isOpen=!1,e.isMobile||(e.calendarContainer!==void 0&&e.calendarContainer.classList.remove("open"),e._input!==void 0&&e._input.classList.remove("active")),De("onClose")}function Y(){e.config!==void 0&&De("onDestroy");for(var I=e._handlers.length;I--;)e._handlers[I].remove();if(e._handlers=[],e.mobileInput)e.mobileInput.parentNode&&e.mobileInput.parentNode.removeChild(e.mobileInput),e.mobileInput=void 0;else if(e.calendarContainer&&e.calendarContainer.parentNode)if(e.config.static&&e.calendarContainer.parentNode){var L=e.calendarContainer.parentNode;if(L.lastChild&&L.removeChild(L.lastChild),L.parentNode){for(;L.firstChild;)L.parentNode.insertBefore(L.firstChild,L);L.parentNode.removeChild(L)}}else e.calendarContainer.parentNode.removeChild(e.calendarContainer);e.altInput&&(e.input.type="text",e.altInput.parentNode&&e.altInput.parentNode.removeChild(e.altInput),delete e.altInput),e.input&&(e.input.type=e.input._type,e.input.classList.remove("flatpickr-input"),e.input.removeAttribute("readonly")),["_showTimeInput","latestSelectedDateObj","_hideNextMonthArrow","_hidePrevMonthArrow","__hideNextMonthArrow","__hidePrevMonthArrow","isMobile","isOpen","selectedDateElem","minDateHasTime","maxDateHasTime","days","daysContainer","_input","_positionElement","innerContainer","rContainer","monthNav","todayDateElem","calendarContainer","weekdayContainer","prevMonthNav","nextMonthNav","monthsDropdownContainer","currentMonthElement","currentYearElement","navigationCurrentMonth","selectedDateElem","config"].forEach(function(K){try{delete e[K]}catch{}})}function H(I){return e.calendarContainer.contains(I)}function B(I){if(e.isOpen&&!e.config.inline){var L=dt(I),K=H(L),X=L===e.input||L===e.altInput||e.element.contains(L)||I.path&&I.path.indexOf&&(~I.path.indexOf(e.input)||~I.path.indexOf(e.altInput)),oe=!X&&!K&&!H(I.relatedTarget),se=!e.config.ignoredFocusElements.some(function(ye){return ye.contains(L)});oe&&se&&(e.config.allowInput&&e.setDate(e._input.value,!1,e.config.altInput?e.config.altFormat:e.config.dateFormat),e.timeContainer!==void 0&&e.minuteElement!==void 0&&e.hourElement!==void 0&&e.input.value!==""&&e.input.value!==void 0&&u(),e.close(),e.config&&e.config.mode==="range"&&e.selectedDates.length===1&&e.clear(!1))}}function z(I){if(!(!I||e.config.minDate&&I<e.config.minDate.getFullYear()||e.config.maxDate&&I>e.config.maxDate.getFullYear())){var L=I,K=e.currentYear!==L;e.currentYear=L||e.currentYear,e.config.maxDate&&e.currentYear===e.config.maxDate.getFullYear()?e.currentMonth=Math.min(e.config.maxDate.getMonth(),e.currentMonth):e.config.minDate&&e.currentYear===e.config.minDate.getFullYear()&&(e.currentMonth=Math.max(e.config.minDate.getMonth(),e.currentMonth)),K&&(e.redraw(),De("onYearChange"),x())}}function Z(I,L){var K;L===void 0&&(L=!0);var X=e.parseDate(I,void 0,L);if(e.config.minDate&&X&&ct(X,e.config.minDate,L!==void 0?L:!e.minDateHasTime)<0||e.config.maxDate&&X&&ct(X,e.config.maxDate,L!==void 0?L:!e.maxDateHasTime)>0)return!1;if(!e.config.enable&&e.config.disable.length===0)return!0;if(X===void 0)return!1;for(var oe=!!e.config.enable,se=(K=e.config.enable)!==null&&K!==void 0?K:e.config.disable,ye=0,ue=void 0;ye<se.length;ye++){if(ue=se[ye],typeof ue=="function"&&ue(X))return oe;if(ue instanceof Date&&X!==void 0&&ue.getTime()===X.getTime())return oe;if(typeof ue=="string"){var Ce=e.parseDate(ue,void 0,!0);return Ce&&Ce.getTime()===X.getTime()?oe:!oe}else if(typeof ue=="object"&&X!==void 0&&ue.from&&ue.to&&X.getTime()>=ue.from.getTime()&&X.getTime()<=ue.to.getTime())return oe}return!oe}function J(I){return e.daysContainer!==void 0?I.className.indexOf("hidden")===-1&&I.className.indexOf("flatpickr-disabled")===-1&&e.daysContainer.contains(I):!1}function ne(I){var L=I.target===e._input,K=e._input.value.trimEnd()!==$t();L&&K&&!(I.relatedTarget&&H(I.relatedTarget))&&e.setDate(e._input.value,!0,I.target===e.altInput?e.config.altFormat:e.config.dateFormat)}function de(I){var L=dt(I),K=e.config.wrap?t.contains(L):L===e._input,X=e.config.allowInput,oe=e.isOpen&&(!X||!K),se=e.config.inline&&K&&!X;if(I.keyCode===13&&K){if(X)return e.setDate(e._input.value,!0,L===e.altInput?e.config.altFormat:e.config.dateFormat),e.close(),L.blur();e.open()}else if(H(L)||oe||se){var ye=!!e.timeContainer&&e.timeContainer.contains(L);switch(I.keyCode){case 13:ye?(I.preventDefault(),u(),$e()):me(I);break;case 27:I.preventDefault(),$e();break;case 8:case 46:K&&!e.config.allowInput&&(I.preventDefault(),e.clear());break;case 37:case 39:if(!ye&&!K){I.preventDefault();var ue=r();if(e.daysContainer!==void 0&&(X===!1||ue&&J(ue))){var Ce=I.keyCode===39?1:-1;I.ctrlKey?(I.stopPropagation(),A(Ce),E(T(1),0)):E(void 0,Ce)}}else e.hourElement&&e.hourElement.focus();break;case 38:case 40:I.preventDefault();var ce=I.keyCode===40?1:-1;e.daysContainer&&L.$i!==void 0||L===e.input||L===e.altInput?I.ctrlKey?(I.stopPropagation(),z(e.currentYear-ce),E(T(1),0)):ye||E(void 0,ce*7):L===e.currentYearElement?z(e.currentYear-ce):e.config.enableTime&&(!ye&&e.hourElement&&e.hourElement.focus(),u(I),e._debouncedChange());break;case 9:if(ye){var ge=[e.hourElement,e.minuteElement,e.secondElement,e.amPM].concat(e.pluginElements).filter(function(Ke){return Ke}),Te=ge.indexOf(L);if(Te!==-1){var Me=ge[Te+(I.shiftKey?-1:1)];I.preventDefault(),(Me||e._input).focus()}}else!e.config.noCalendar&&e.daysContainer&&e.daysContainer.contains(L)&&I.shiftKey&&(I.preventDefault(),e._input.focus());break}}if(e.amPM!==void 0&&L===e.amPM)switch(I.key){case e.l10n.amPM[0].charAt(0):case e.l10n.amPM[0].charAt(0).toLowerCase():e.amPM.textContent=e.l10n.amPM[0],f(),rt();break;case e.l10n.amPM[1].charAt(0):case e.l10n.amPM[1].charAt(0).toLowerCase():e.amPM.textContent=e.l10n.amPM[1],f(),rt();break}(K||H(L))&&De("onKeyDown",I)}function he(I,L){if(L===void 0&&(L="flatpickr-day"),!(e.selectedDates.length!==1||I&&(!I.classList.contains(L)||I.classList.contains("flatpickr-disabled")))){for(var K=I?I.dateObj.getTime():e.days.firstElementChild.dateObj.getTime(),X=e.parseDate(e.selectedDates[0],void 0,!0).getTime(),oe=Math.min(K,e.selectedDates[0].getTime()),se=Math.max(K,e.selectedDates[0].getTime()),ye=!1,ue=0,Ce=0,ce=oe;ce<se;ce+=ec.DAY)Z(new Date(ce),!0)||(ye=ye||ce>oe&&ce<se,ce<X&&(!ue||ce>ue)?ue=ce:ce>X&&(!Ce||ce<Ce)&&(Ce=ce));var ge=Array.from(e.rContainer.querySelectorAll("*:nth-child(-n+"+e.config.showMonths+") > ."+L));ge.forEach(function(Te){var Me=Te.dateObj,Ke=Me.getTime(),At=ue>0&&Ke<ue||Ce>0&&Ke>Ce;if(At){Te.classList.add("notAllowed"),["inRange","startRange","endRange"].forEach(function(wt){Te.classList.remove(wt)});return}else if(ye&&!At)return;["startRange","inRange","endRange","notAllowed"].forEach(function(wt){Te.classList.remove(wt)}),I!==void 0&&(I.classList.add(K<=e.selectedDates[0].getTime()?"startRange":"endRange"),X<K&&Ke===X?Te.classList.add("startRange"):X>K&&Ke===X&&Te.classList.add("endRange"),Ke>=ue&&(Ce===0||Ke<=Ce)&&Xd(Ke,X,K)&&Te.classList.add("inRange"))})}}function ve(){e.isOpen&&!e.config.static&&!e.config.inline&&te()}function ke(I,L){if(L===void 0&&(L=e._positionElement),e.isMobile===!0){if(I){I.preventDefault();var K=dt(I);K&&K.blur()}e.mobileInput!==void 0&&(e.mobileInput.focus(),e.mobileInput.click()),De("onOpen");return}else if(e._input.disabled||e.config.inline)return;var X=e.isOpen;e.isOpen=!0,X||(e.calendarContainer.classList.add("open"),e._input.classList.add("active"),De("onOpen"),te(L)),e.config.enableTime===!0&&e.config.noCalendar===!0&&e.config.allowInput===!1&&(I===void 0||!e.timeContainer.contains(I.relatedTarget))&&setTimeout(function(){return e.hourElement.select()},50)}function Oe(I){return function(L){var K=e.config["_"+I+"Date"]=e.parseDate(L,e.config.dateFormat),X=e.config["_"+(I==="min"?"max":"min")+"Date"];K!==void 0&&(e[I==="min"?"minDateHasTime":"maxDateHasTime"]=K.getHours()>0||K.getMinutes()>0||K.getSeconds()>0),e.selectedDates&&(e.selectedDates=e.selectedDates.filter(function(oe){return Z(oe)}),!e.selectedDates.length&&I==="min"&&l(K),rt()),e.daysContainer&&(re(),K!==void 0?e.currentYearElement[I]=K.getFullYear().toString():e.currentYearElement.removeAttribute(I),e.currentYearElement.disabled=!!X&&K!==void 0&&X.getFullYear()===K.getFullYear())}}function Be(){var I=["wrap","weekNumbers","allowInput","allowInvalidPreload","clickOpens","time_24hr","enableTime","noCalendar","altInput","shorthandCurrentMonth","inline","static","enableSeconds","disableMobile"],L=Ye(Ye({},JSON.parse(JSON.stringify(t.dataset||{}))),n),K={};e.config.parseDate=L.parseDate,e.config.formatDate=L.formatDate,Object.defineProperty(e.config,"enable",{get:function(){return e.config._enable},set:function(ge){e.config._enable=bt(ge)}}),Object.defineProperty(e.config,"disable",{get:function(){return e.config._disable},set:function(ge){e.config._disable=bt(ge)}});var X=L.mode==="time";if(!L.dateFormat&&(L.enableTime||X)){var oe=Re.defaultConfig.dateFormat||Jt.dateFormat;K.dateFormat=L.noCalendar||X?"H:i"+(L.enableSeconds?":S":""):oe+" H:i"+(L.enableSeconds?":S":"")}if(L.altInput&&(L.enableTime||X)&&!L.altFormat){var se=Re.defaultConfig.altFormat||Jt.altFormat;K.altFormat=L.noCalendar||X?"h:i"+(L.enableSeconds?":S K":" K"):se+(" h:i"+(L.enableSeconds?":S":"")+" K")}Object.defineProperty(e.config,"minDate",{get:function(){return e.config._minDate},set:Oe("min")}),Object.defineProperty(e.config,"maxDate",{get:function(){return e.config._maxDate},set:Oe("max")});var ye=function(ge){return function(Te){e.config[ge==="min"?"_minTime":"_maxTime"]=e.parseDate(Te,"H:i:S")}};Object.defineProperty(e.config,"minTime",{get:function(){return e.config._minTime},set:ye("min")}),Object.defineProperty(e.config,"maxTime",{get:function(){return e.config._maxTime},set:ye("max")}),L.mode==="time"&&(e.config.noCalendar=!0,e.config.enableTime=!0),Object.assign(e.config,K,L);for(var ue=0;ue<I.length;ue++)e.config[I[ue]]=e.config[I[ue]]===!0||e.config[I[ue]]==="true";$r.filter(function(ge){return e.config[ge]!==void 0}).forEach(function(ge){e.config[ge]=wr(e.config[ge]||[]).map(s)}),e.isMobile=!e.config.disableMobile&&!e.config.inline&&e.config.mode==="single"&&!e.config.disable.length&&!e.config.enable&&!e.config.weekNumbers&&/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent);for(var ue=0;ue<e.config.plugins.length;ue++){var Ce=e.config.plugins[ue](e)||{};for(var ce in Ce)$r.indexOf(ce)>-1?e.config[ce]=wr(Ce[ce]).map(s).concat(e.config[ce]):typeof L[ce]>"u"&&(e.config[ce]=Ce[ce])}L.altInputClass||(e.config.altInputClass=Pe().className+" "+e.config.altInputClass),De("onParseConfig")}function Pe(){return e.config.wrap?t.querySelector("[data-input]"):t}function Q(){typeof e.config.locale!="object"&&typeof Re.l10ns[e.config.locale]>"u"&&e.config.errorHandler(new Error("flatpickr: invalid locale "+e.config.locale)),e.l10n=Ye(Ye({},Re.l10ns.default),typeof e.config.locale=="object"?e.config.locale:e.config.locale!=="default"?Re.l10ns[e.config.locale]:void 0),qt.D="("+e.l10n.weekdays.shorthand.join("|")+")",qt.l="("+e.l10n.weekdays.longhand.join("|")+")",qt.M="("+e.l10n.months.shorthand.join("|")+")",qt.F="("+e.l10n.months.longhand.join("|")+")",qt.K="("+e.l10n.amPM[0]+"|"+e.l10n.amPM[1]+"|"+e.l10n.amPM[0].toLowerCase()+"|"+e.l10n.amPM[1].toLowerCase()+")";var I=Ye(Ye({},n),JSON.parse(JSON.stringify(t.dataset||{})));I.time_24hr===void 0&&Re.defaultConfig.time_24hr===void 0&&(e.config.time_24hr=e.l10n.time_24hr),e.formatDate=Hi(e),e.parseDate=Cr({config:e.config,l10n:e.l10n})}function te(I){if(typeof e.config.position=="function")return void e.config.position(e,I);if(e.calendarContainer!==void 0){De("onPreCalendarPosition");var L=I||e._positionElement,K=Array.prototype.reduce.call(e.calendarContainer.children,function(Ze,On){return Ze+On.offsetHeight},0),X=e.calendarContainer.offsetWidth,oe=e.config.position.split(" "),se=oe[0],ye=oe.length>1?oe[1]:null,ue=L.getBoundingClientRect(),Ce=window.innerHeight-ue.bottom,ce=se==="above"||se!=="below"&&Ce<K&&ue.top>K,ge=window.pageYOffset+ue.top+(ce?-K-2:L.offsetHeight+2);if(Qe(e.calendarContainer,"arrowTop",!ce),Qe(e.calendarContainer,"arrowBottom",ce),!e.config.inline){var Te=window.pageXOffset+ue.left,Me=!1,Ke=!1;ye==="center"?(Te-=(X-ue.width)/2,Me=!0):ye==="right"&&(Te-=X-ue.width,Ke=!0),Qe(e.calendarContainer,"arrowLeft",!Me&&!Ke),Qe(e.calendarContainer,"arrowCenter",Me),Qe(e.calendarContainer,"arrowRight",Ke);var At=window.document.body.offsetWidth-(window.pageXOffset+ue.right),wt=Te+X>window.document.body.offsetWidth,bn=At+X>window.document.body.offsetWidth;if(Qe(e.calendarContainer,"rightMost",wt),!e.config.static)if(e.calendarContainer.style.top=ge+"px",!wt)e.calendarContainer.style.left=Te+"px",e.calendarContainer.style.right="auto";else if(!bn)e.calendarContainer.style.left="auto",e.calendarContainer.style.right=At+"px";else{var Kt=ae();if(Kt===void 0)return;var ze=window.document.body.offsetWidth,_n=Math.max(0,ze/2-X/2),$n=".flatpickr-calendar.centerMost:before",wn=".flatpickr-calendar.centerMost:after",kn=Kt.cssRules.length,Cn="{left:"+ue.left+"px;right:auto;}";Qe(e.calendarContainer,"rightMost",!1),Qe(e.calendarContainer,"centerMost",!0),Kt.insertRule($n+","+wn+Cn,kn),e.calendarContainer.style.left=_n+"px",e.calendarContainer.style.right="auto"}}}}function ae(){for(var I=null,L=0;L<document.styleSheets.length;L++){var K=document.styleSheets[L];if(K.cssRules){try{K.cssRules}catch{continue}I=K;break}}return I??le()}function le(){var I=document.createElement("style");return document.head.appendChild(I),I.sheet}function re(){e.config.noCalendar||e.isMobile||(x(),We(),O())}function $e(){e._input.focus(),window.navigator.userAgent.indexOf("MSIE")!==-1||navigator.msMaxTouchPoints!==void 0?setTimeout(e.close,0):e.close()}function me(I){I.preventDefault(),I.stopPropagation();var L=function(ge){return ge.classList&&ge.classList.contains("flatpickr-day")&&!ge.classList.contains("flatpickr-disabled")&&!ge.classList.contains("notAllowed")},K=Fi(dt(I),L);if(K!==void 0){var X=K,oe=e.latestSelectedDateObj=new Date(X.dateObj.getTime()),se=(oe.getMonth()<e.currentMonth||oe.getMonth()>e.currentMonth+e.config.showMonths-1)&&e.config.mode!=="range";if(e.selectedDateElem=X,e.config.mode==="single")e.selectedDates=[oe];else if(e.config.mode==="multiple"){var ye=_t(oe);ye?e.selectedDates.splice(parseInt(ye),1):e.selectedDates.push(oe)}else e.config.mode==="range"&&(e.selectedDates.length===2&&e.clear(!1,!1),e.latestSelectedDateObj=oe,e.selectedDates.push(oe),ct(oe,e.selectedDates[0],!0)!==0&&e.selectedDates.sort(function(ge,Te){return ge.getTime()-Te.getTime()}));if(f(),se){var ue=e.currentYear!==oe.getFullYear();e.currentYear=oe.getFullYear(),e.currentMonth=oe.getMonth(),ue&&(De("onYearChange"),x()),De("onMonthChange")}if(We(),O(),rt(),!se&&e.config.mode!=="range"&&e.config.showMonths===1?S(X):e.selectedDateElem!==void 0&&e.hourElement===void 0&&e.selectedDateElem&&e.selectedDateElem.focus(),e.hourElement!==void 0&&e.hourElement!==void 0&&e.hourElement.focus(),e.config.closeOnSelect){var Ce=e.config.mode==="single"&&!e.config.enableTime,ce=e.config.mode==="range"&&e.selectedDates.length===2&&!e.config.enableTime;(Ce||ce)&&$e()}b()}}var be={locale:[Q,U],showMonths:[q,d,ie],minDate:[y],maxDate:[y],positionElement:[Ht],clickOpens:[function(){e.config.clickOpens===!0?(v(e._input,"focus",e.open),v(e._input,"click",e.open)):(e._input.removeEventListener("focus",e.open),e._input.removeEventListener("click",e.open))}]};function He(I,L){if(I!==null&&typeof I=="object"){Object.assign(e.config,I);for(var K in I)be[K]!==void 0&&be[K].forEach(function(X){return X()})}else e.config[I]=L,be[I]!==void 0?be[I].forEach(function(X){return X()}):$r.indexOf(I)>-1&&(e.config[I]=wr(L));e.redraw(),rt(!0)}function je(I,L){var K=[];if(I instanceof Array)K=I.map(function(X){return e.parseDate(X,L)});else if(I instanceof Date||typeof I=="number")K=[e.parseDate(I,L)];else if(typeof I=="string")switch(e.config.mode){case"single":case"time":K=[e.parseDate(I,L)];break;case"multiple":K=I.split(e.config.conjunction).map(function(X){return e.parseDate(X,L)});break;case"range":K=I.split(e.l10n.rangeSeparator).map(function(X){return e.parseDate(X,L)});break}else e.config.errorHandler(new Error("Invalid date supplied: "+JSON.stringify(I)));e.selectedDates=e.config.allowInvalidPreload?K:K.filter(function(X){return X instanceof Date&&Z(X,!1)}),e.config.mode==="range"&&e.selectedDates.sort(function(X,oe){return X.getTime()-oe.getTime()})}function xe(I,L,K){if(L===void 0&&(L=!1),K===void 0&&(K=e.config.dateFormat),I!==0&&!I||I instanceof Array&&I.length===0)return e.clear(L);je(I,K),e.latestSelectedDateObj=e.selectedDates[e.selectedDates.length-1],e.redraw(),y(void 0,L),l(),e.selectedDates.length===0&&e.clear(!1),rt(L),L&&De("onChange")}function bt(I){return I.slice().map(function(L){return typeof L=="string"||typeof L=="number"||L instanceof Date?e.parseDate(L,void 0,!0):L&&typeof L=="object"&&L.from&&L.to?{from:e.parseDate(L.from,void 0),to:e.parseDate(L.to,void 0)}:L}).filter(function(L){return L})}function Ee(){e.selectedDates=[],e.now=e.parseDate(e.config.now)||new Date;var I=e.config.defaultDate||((e.input.nodeName==="INPUT"||e.input.nodeName==="TEXTAREA")&&e.input.placeholder&&e.input.value===e.input.placeholder?null:e.input.value);I&&je(I,e.config.dateFormat),e._initialDate=e.selectedDates.length>0?e.selectedDates[0]:e.config.minDate&&e.config.minDate.getTime()>e.now.getTime()?e.config.minDate:e.config.maxDate&&e.config.maxDate.getTime()<e.now.getTime()?e.config.maxDate:e.now,e.currentYear=e._initialDate.getFullYear(),e.currentMonth=e._initialDate.getMonth(),e.selectedDates.length>0&&(e.latestSelectedDateObj=e.selectedDates[0]),e.config.minTime!==void 0&&(e.config.minTime=e.parseDate(e.config.minTime,"H:i")),e.config.maxTime!==void 0&&(e.config.maxTime=e.parseDate(e.config.maxTime,"H:i")),e.minDateHasTime=!!e.config.minDate&&(e.config.minDate.getHours()>0||e.config.minDate.getMinutes()>0||e.config.minDate.getSeconds()>0),e.maxDateHasTime=!!e.config.maxDate&&(e.config.maxDate.getHours()>0||e.config.maxDate.getMinutes()>0||e.config.maxDate.getSeconds()>0)}function nt(){if(e.input=Pe(),!e.input){e.config.errorHandler(new Error("Invalid input element specified"));return}e.input._type=e.input.type,e.input.type="text",e.input.classList.add("flatpickr-input"),e._input=e.input,e.config.altInput&&(e.altInput=Ae(e.input.nodeName,e.config.altInputClass),e._input=e.altInput,e.altInput.placeholder=e.input.placeholder,e.altInput.disabled=e.input.disabled,e.altInput.required=e.input.required,e.altInput.tabIndex=e.input.tabIndex,e.altInput.type="text",e.input.setAttribute("type","hidden"),!e.config.static&&e.input.parentNode&&e.input.parentNode.insertBefore(e.altInput,e.input.nextSibling)),e.config.allowInput||e._input.setAttribute("readonly","readonly"),Ht()}function Ht(){e._positionElement=e.config.positionElement||e._input}function vn(){var I=e.config.enableTime?e.config.noCalendar?"time":"datetime-local":"date";e.mobileInput=Ae("input",e.input.className+" flatpickr-mobile"),e.mobileInput.tabIndex=1,e.mobileInput.type=I,e.mobileInput.disabled=e.input.disabled,e.mobileInput.required=e.input.required,e.mobileInput.placeholder=e.input.placeholder,e.mobileFormatStr=I==="datetime-local"?"Y-m-d\\TH:i:S":I==="date"?"Y-m-d":"H:i:S",e.selectedDates.length>0&&(e.mobileInput.defaultValue=e.mobileInput.value=e.formatDate(e.selectedDates[0],e.mobileFormatStr)),e.config.minDate&&(e.mobileInput.min=e.formatDate(e.config.minDate,"Y-m-d")),e.config.maxDate&&(e.mobileInput.max=e.formatDate(e.config.maxDate,"Y-m-d")),e.input.getAttribute("step")&&(e.mobileInput.step=String(e.input.getAttribute("step"))),e.input.type="hidden",e.altInput!==void 0&&(e.altInput.type="hidden");try{e.input.parentNode&&e.input.parentNode.insertBefore(e.mobileInput,e.input.nextSibling)}catch{}v(e.mobileInput,"change",function(L){e.setDate(dt(L).value,!1,e.mobileFormatStr),De("onChange"),De("onClose")})}function zt(I){if(e.isOpen===!0)return e.close();e.open(I)}function De(I,L){if(e.config!==void 0){var K=e.config[I];if(K!==void 0&&K.length>0)for(var X=0;K[X]&&X<K.length;X++)K[X](e.selectedDates,e.input.value,e,L);I==="onChange"&&(e.input.dispatchEvent(Bt("change")),e.input.dispatchEvent(Bt("input")))}}function Bt(I){var L=document.createEvent("Event");return L.initEvent(I,!0,!0),L}function _t(I){for(var L=0;L<e.selectedDates.length;L++){var K=e.selectedDates[L];if(K instanceof Date&&ct(K,I)===0)return""+L}return!1}function Nt(I){return e.config.mode!=="range"||e.selectedDates.length<2?!1:ct(I,e.selectedDates[0])>=0&&ct(I,e.selectedDates[1])<=0}function We(){e.config.noCalendar||e.isMobile||!e.monthNav||(e.yearElements.forEach(function(I,L){var K=new Date(e.currentYear,e.currentMonth,1);K.setMonth(e.currentMonth+L),e.config.showMonths>1||e.config.monthSelectorType==="static"?e.monthElements[L].textContent=Fn(K.getMonth(),e.config.shorthandCurrentMonth,e.l10n)+" ":e.monthsDropdownContainer.value=K.getMonth().toString(),I.value=K.getFullYear().toString()}),e._hidePrevMonthArrow=e.config.minDate!==void 0&&(e.currentYear===e.config.minDate.getFullYear()?e.currentMonth<=e.config.minDate.getMonth():e.currentYear<e.config.minDate.getFullYear()),e._hideNextMonthArrow=e.config.maxDate!==void 0&&(e.currentYear===e.config.maxDate.getFullYear()?e.currentMonth+1>e.config.maxDate.getMonth():e.currentYear>e.config.maxDate.getFullYear()))}function $t(I){var L=I||(e.config.altInput?e.config.altFormat:e.config.dateFormat);return e.selectedDates.map(function(K){return e.formatDate(K,L)}).filter(function(K,X,oe){return e.config.mode!=="range"||e.config.enableTime||oe.indexOf(K)===X}).join(e.config.mode!=="range"?e.config.conjunction:e.l10n.rangeSeparator)}function rt(I){I===void 0&&(I=!0),e.mobileInput!==void 0&&e.mobileFormatStr&&(e.mobileInput.value=e.latestSelectedDateObj!==void 0?e.formatDate(e.latestSelectedDateObj,e.mobileFormatStr):""),e.input.value=$t(e.config.dateFormat),e.altInput!==void 0&&(e.altInput.value=$t(e.config.altFormat)),I!==!1&&De("onValueUpdate")}function xt(I){var L=dt(I),K=e.prevMonthNav.contains(L),X=e.nextMonthNav.contains(L);K||X?A(K?-1:1):e.yearElements.indexOf(L)>=0?L.select():L.classList.contains("arrowUp")?e.changeYear(e.currentYear+1):L.classList.contains("arrowDown")&&e.changeYear(e.currentYear-1)}function Ut(I){I.preventDefault();var L=I.type==="keydown",K=dt(I),X=K;e.amPM!==void 0&&K===e.amPM&&(e.amPM.textContent=e.l10n.amPM[ft(e.amPM.textContent===e.l10n.amPM[0])]);var oe=parseFloat(X.getAttribute("min")),se=parseFloat(X.getAttribute("max")),ye=parseFloat(X.getAttribute("step")),ue=parseInt(X.value,10),Ce=I.delta||(L?I.which===38?1:-1:0),ce=ue+ye*Ce;if(typeof X.value<"u"&&X.value.length===2){var ge=X===e.hourElement,Te=X===e.minuteElement;ce<oe?(ce=se+ce+ft(!ge)+(ft(ge)&&ft(!e.amPM)),Te&&m(void 0,-1,e.hourElement)):ce>se&&(ce=X===e.hourElement?ce-se-ft(!e.amPM):oe,Te&&m(void 0,1,e.hourElement)),e.amPM&&ge&&(ye===1?ce+ue===23:Math.abs(ce-ue)>ye)&&(e.amPM.textContent=e.l10n.amPM[ft(e.amPM.textContent===e.l10n.amPM[0])]),X.value=ot(ce)}}return a(),e}function Xt(t,n){for(var e=Array.prototype.slice.call(t).filter(function(s){return s instanceof HTMLElement}),o=[],a=0;a<e.length;a++){var r=e[a];try{if(r.getAttribute("data-fp-omit")!==null)continue;r._flatpickr!==void 0&&(r._flatpickr.destroy(),r._flatpickr=void 0),r._flatpickr=nc(r,n||{}),o.push(r._flatpickr)}catch(s){console.error(s)}}return o.length===1?o[0]:o}typeof HTMLElement<"u"&&typeof HTMLCollection<"u"&&typeof NodeList<"u"&&(HTMLCollection.prototype.flatpickr=NodeList.prototype.flatpickr=function(t){return Xt(this,t)},HTMLElement.prototype.flatpickr=function(t){return Xt([this],t)});var Re=function(t,n){return typeof t=="string"?Xt(window.document.querySelectorAll(t),n):t instanceof Node?Xt([t],n):Xt(t,n)};Re.defaultConfig={},Re.l10ns={en:Ye({},un),default:Ye({},un)},Re.localize=function(t){Re.l10ns.default=Ye(Ye({},Re.l10ns.default),t)},Re.setDefaults=function(t){Re.defaultConfig=Ye(Ye({},Re.defaultConfig),t)},Re.parseDate=Cr({}),Re.formatDate=Hi({}),Re.compareDates=ct,typeof jQuery<"u"&&typeof jQuery.fn<"u"&&(jQuery.fn.flatpickr=function(t){return Xt(this,t)}),Date.prototype.fp_incr=function(t){return new Date(this.getFullYear(),this.getMonth(),this.getDate()+(typeof t=="string"?parseInt(t,10):t))},typeof window<"u"&&(window.flatpickr=Re);const V1="";var Ui={exports:{}};(function(t,n){(function(e,o){t.exports=o()})(qe,function(){/*! *****************************************************************************
|
|
64
|
+
`}}function V(){e.calendarContainer.classList.add("hasWeeks");var M=De("div","flatpickr-weekwrapper");M.appendChild(De("span","flatpickr-weekday",e.l10n.weekAbbreviation));var j=De("div","flatpickr-weeks");return M.appendChild(j),{weekWrapper:M,weekNumbers:j}}function D(M,j){j===void 0&&(j=!0);var G=j?M:M-e.currentMonth;G<0&&e._hidePrevMonthArrow===!0||G>0&&e._hideNextMonthArrow===!0||(e.currentMonth+=G,(e.currentMonth<0||e.currentMonth>11)&&(e.currentYear+=e.currentMonth>11?1:-1,e.currentMonth=(e.currentMonth+12)%12,Pe("onYearChange"),N()),O(),Pe("onMonthChange"),Ze())}function A(M,j){if(M===void 0&&(M=!0),j===void 0&&(j=!0),e.input.value="",e.altInput!==void 0&&(e.altInput.value=""),e.mobileInput!==void 0&&(e.mobileInput.value=""),e.selectedDates=[],e.latestSelectedDateObj=void 0,j===!0&&(e.currentYear=e._initialDate.getFullYear(),e.currentMonth=e._initialDate.getMonth()),e.config.enableTime===!0){var G=Zr(e.config),X=G.hours,oe=G.minutes,se=G.seconds;h(X,oe,se)}e.redraw(),M&&Pe("onChange")}function I(){e.isOpen=!1,e.isMobile||(e.calendarContainer!==void 0&&e.calendarContainer.classList.remove("open"),e._input!==void 0&&e._input.classList.remove("active")),Pe("onClose")}function U(){e.config!==void 0&&Pe("onDestroy");for(var M=e._handlers.length;M--;)e._handlers[M].remove();if(e._handlers=[],e.mobileInput)e.mobileInput.parentNode&&e.mobileInput.parentNode.removeChild(e.mobileInput),e.mobileInput=void 0;else if(e.calendarContainer&&e.calendarContainer.parentNode)if(e.config.static&&e.calendarContainer.parentNode){var j=e.calendarContainer.parentNode;if(j.lastChild&&j.removeChild(j.lastChild),j.parentNode){for(;j.firstChild;)j.parentNode.insertBefore(j.firstChild,j);j.parentNode.removeChild(j)}}else e.calendarContainer.parentNode.removeChild(e.calendarContainer);e.altInput&&(e.input.type="text",e.altInput.parentNode&&e.altInput.parentNode.removeChild(e.altInput),delete e.altInput),e.input&&(e.input.type=e.input._type,e.input.classList.remove("flatpickr-input"),e.input.removeAttribute("readonly")),["_showTimeInput","latestSelectedDateObj","_hideNextMonthArrow","_hidePrevMonthArrow","__hideNextMonthArrow","__hidePrevMonthArrow","isMobile","isOpen","selectedDateElem","minDateHasTime","maxDateHasTime","days","daysContainer","_input","_positionElement","innerContainer","rContainer","monthNav","todayDateElem","calendarContainer","weekdayContainer","prevMonthNav","nextMonthNav","monthsDropdownContainer","currentMonthElement","currentYearElement","navigationCurrentMonth","selectedDateElem","config"].forEach(function(G){try{delete e[G]}catch{}})}function F(M){return e.calendarContainer.contains(M)}function L(M){if(e.isOpen&&!e.config.inline){var j=ft(M),G=F(j),X=j===e.input||j===e.altInput||e.element.contains(j)||M.path&&M.path.indexOf&&(~M.path.indexOf(e.input)||~M.path.indexOf(e.altInput)),oe=!X&&!G&&!F(M.relatedTarget),se=!e.config.ignoredFocusElements.some(function(ye){return ye.contains(j)});oe&&se&&(e.config.allowInput&&e.setDate(e._input.value,!1,e.config.altInput?e.config.altFormat:e.config.dateFormat),e.timeContainer!==void 0&&e.minuteElement!==void 0&&e.hourElement!==void 0&&e.input.value!==""&&e.input.value!==void 0&&u(),e.close(),e.config&&e.config.mode==="range"&&e.selectedDates.length===1&&e.clear(!1))}}function z(M){if(!(!M||e.config.minDate&&M<e.config.minDate.getFullYear()||e.config.maxDate&&M>e.config.maxDate.getFullYear())){var j=M,G=e.currentYear!==j;e.currentYear=j||e.currentYear,e.config.maxDate&&e.currentYear===e.config.maxDate.getFullYear()?e.currentMonth=Math.min(e.config.maxDate.getMonth(),e.currentMonth):e.config.minDate&&e.currentYear===e.config.minDate.getFullYear()&&(e.currentMonth=Math.max(e.config.minDate.getMonth(),e.currentMonth)),G&&(e.redraw(),Pe("onYearChange"),N())}}function Z(M,j){var G;j===void 0&&(j=!0);var X=e.parseDate(M,void 0,j);if(e.config.minDate&&X&&ht(X,e.config.minDate,j!==void 0?j:!e.minDateHasTime)<0||e.config.maxDate&&X&&ht(X,e.config.maxDate,j!==void 0?j:!e.maxDateHasTime)>0)return!1;if(!e.config.enable&&e.config.disable.length===0)return!0;if(X===void 0)return!1;for(var oe=!!e.config.enable,se=(G=e.config.enable)!==null&&G!==void 0?G:e.config.disable,ye=0,ue=void 0;ye<se.length;ye++){if(ue=se[ye],typeof ue=="function"&&ue(X))return oe;if(ue instanceof Date&&X!==void 0&&ue.getTime()===X.getTime())return oe;if(typeof ue=="string"){var Ce=e.parseDate(ue,void 0,!0);return Ce&&Ce.getTime()===X.getTime()?oe:!oe}else if(typeof ue=="object"&&X!==void 0&&ue.from&&ue.to&&X.getTime()>=ue.from.getTime()&&X.getTime()<=ue.to.getTime())return oe}return!oe}function J(M){return e.daysContainer!==void 0?M.className.indexOf("hidden")===-1&&M.className.indexOf("flatpickr-disabled")===-1&&e.daysContainer.contains(M):!1}function ne(M){var j=M.target===e._input,G=e._input.value.trimEnd()!==Ct();j&&G&&!(M.relatedTarget&&F(M.relatedTarget))&&e.setDate(e._input.value,!0,M.target===e.altInput?e.config.altFormat:e.config.dateFormat)}function ce(M){var j=ft(M),G=e.config.wrap?t.contains(j):j===e._input,X=e.config.allowInput,oe=e.isOpen&&(!X||!G),se=e.config.inline&&G&&!X;if(M.keyCode===13&&G){if(X)return e.setDate(e._input.value,!0,j===e.altInput?e.config.altFormat:e.config.dateFormat),e.close(),j.blur();e.open()}else if(F(j)||oe||se){var ye=!!e.timeContainer&&e.timeContainer.contains(j);switch(M.keyCode){case 13:ye?(M.preventDefault(),u(),$e()):me(M);break;case 27:M.preventDefault(),$e();break;case 8:case 46:G&&!e.config.allowInput&&(M.preventDefault(),e.clear());break;case 37:case 39:if(!ye&&!G){M.preventDefault();var ue=r();if(e.daysContainer!==void 0&&(X===!1||ue&&J(ue))){var Ce=M.keyCode===39?1:-1;M.ctrlKey?(M.stopPropagation(),D(Ce),E(x(1),0)):E(void 0,Ce)}}else e.hourElement&&e.hourElement.focus();break;case 38:case 40:M.preventDefault();var de=M.keyCode===40?1:-1;e.daysContainer&&j.$i!==void 0||j===e.input||j===e.altInput?M.ctrlKey?(M.stopPropagation(),z(e.currentYear-de),E(x(1),0)):ye||E(void 0,de*7):j===e.currentYearElement?z(e.currentYear-de):e.config.enableTime&&(!ye&&e.hourElement&&e.hourElement.focus(),u(M),e._debouncedChange());break;case 9:if(ye){var ge=[e.hourElement,e.minuteElement,e.secondElement,e.amPM].concat(e.pluginElements).filter(function(Ge){return Ge}),Te=ge.indexOf(j);if(Te!==-1){var Me=ge[Te+(M.shiftKey?-1:1)];M.preventDefault(),(Me||e._input).focus()}}else!e.config.noCalendar&&e.daysContainer&&e.daysContainer.contains(j)&&M.shiftKey&&(M.preventDefault(),e._input.focus());break}}if(e.amPM!==void 0&&j===e.amPM)switch(M.key){case e.l10n.amPM[0].charAt(0):case e.l10n.amPM[0].charAt(0).toLowerCase():e.amPM.textContent=e.l10n.amPM[0],f(),it();break;case e.l10n.amPM[1].charAt(0):case e.l10n.amPM[1].charAt(0).toLowerCase():e.amPM.textContent=e.l10n.amPM[1],f(),it();break}(G||F(j))&&Pe("onKeyDown",M)}function he(M,j){if(j===void 0&&(j="flatpickr-day"),!(e.selectedDates.length!==1||M&&(!M.classList.contains(j)||M.classList.contains("flatpickr-disabled")))){for(var G=M?M.dateObj.getTime():e.days.firstElementChild.dateObj.getTime(),X=e.parseDate(e.selectedDates[0],void 0,!0).getTime(),oe=Math.min(G,e.selectedDates[0].getTime()),se=Math.max(G,e.selectedDates[0].getTime()),ye=!1,ue=0,Ce=0,de=oe;de<se;de+=Ru.DAY)Z(new Date(de),!0)||(ye=ye||de>oe&&de<se,de<X&&(!ue||de>ue)?ue=de:de>X&&(!Ce||de<Ce)&&(Ce=de));var ge=Array.from(e.rContainer.querySelectorAll("*:nth-child(-n+"+e.config.showMonths+") > ."+j));ge.forEach(function(Te){var Me=Te.dateObj,Ge=Me.getTime(),Mt=ue>0&&Ge<ue||Ce>0&&Ge>Ce;if(Mt){Te.classList.add("notAllowed"),["inRange","startRange","endRange"].forEach(function(Ot){Te.classList.remove(Ot)});return}else if(ye&&!Mt)return;["startRange","inRange","endRange","notAllowed"].forEach(function(Ot){Te.classList.remove(Ot)}),M!==void 0&&(M.classList.add(G<=e.selectedDates[0].getTime()?"startRange":"endRange"),X<G&&Ge===X?Te.classList.add("startRange"):X>G&&Ge===X&&Te.classList.add("endRange"),Ge>=ue&&(Ce===0||Ge<=Ce)&&Bu(Ge,X,G)&&Te.classList.add("inRange"))})}}function be(){e.isOpen&&!e.config.static&&!e.config.inline&&te()}function ke(M,j){if(j===void 0&&(j=e._positionElement),e.isMobile===!0){if(M){M.preventDefault();var G=ft(M);G&&G.blur()}e.mobileInput!==void 0&&(e.mobileInput.focus(),e.mobileInput.click()),Pe("onOpen");return}else if(e._input.disabled||e.config.inline)return;var X=e.isOpen;e.isOpen=!0,X||(e.calendarContainer.classList.add("open"),e._input.classList.add("active"),Pe("onOpen"),te(j)),e.config.enableTime===!0&&e.config.noCalendar===!0&&e.config.allowInput===!1&&(M===void 0||!e.timeContainer.contains(M.relatedTarget))&&setTimeout(function(){return e.hourElement.select()},50)}function Oe(M){return function(j){var G=e.config["_"+M+"Date"]=e.parseDate(j,e.config.dateFormat),X=e.config["_"+(M==="min"?"max":"min")+"Date"];G!==void 0&&(e[M==="min"?"minDateHasTime":"maxDateHasTime"]=G.getHours()>0||G.getMinutes()>0||G.getSeconds()>0),e.selectedDates&&(e.selectedDates=e.selectedDates.filter(function(oe){return Z(oe)}),!e.selectedDates.length&&M==="min"&&c(G),it()),e.daysContainer&&(ie(),G!==void 0?e.currentYearElement[M]=G.getFullYear().toString():e.currentYearElement.removeAttribute(M),e.currentYearElement.disabled=!!X&&G!==void 0&&X.getFullYear()===G.getFullYear())}}function Re(){var M=["wrap","weekNumbers","allowInput","allowInvalidPreload","clickOpens","time_24hr","enableTime","noCalendar","altInput","shorthandCurrentMonth","inline","static","enableSeconds","disableMobile"],j=Ye(Ye({},JSON.parse(JSON.stringify(t.dataset||{}))),n),G={};e.config.parseDate=j.parseDate,e.config.formatDate=j.formatDate,Object.defineProperty(e.config,"enable",{get:function(){return e.config._enable},set:function(ge){e.config._enable=wt(ge)}}),Object.defineProperty(e.config,"disable",{get:function(){return e.config._disable},set:function(ge){e.config._disable=wt(ge)}});var X=j.mode==="time";if(!j.dateFormat&&(j.enableTime||X)){var oe=Ve.defaultConfig.dateFormat||cn.dateFormat;G.dateFormat=j.noCalendar||X?"H:i"+(j.enableSeconds?":S":""):oe+" H:i"+(j.enableSeconds?":S":"")}if(j.altInput&&(j.enableTime||X)&&!j.altFormat){var se=Ve.defaultConfig.altFormat||cn.altFormat;G.altFormat=j.noCalendar||X?"h:i"+(j.enableSeconds?":S K":" K"):se+(" h:i"+(j.enableSeconds?":S":"")+" K")}Object.defineProperty(e.config,"minDate",{get:function(){return e.config._minDate},set:Oe("min")}),Object.defineProperty(e.config,"maxDate",{get:function(){return e.config._maxDate},set:Oe("max")});var ye=function(ge){return function(Te){e.config[ge==="min"?"_minTime":"_maxTime"]=e.parseDate(Te,"H:i:S")}};Object.defineProperty(e.config,"minTime",{get:function(){return e.config._minTime},set:ye("min")}),Object.defineProperty(e.config,"maxTime",{get:function(){return e.config._maxTime},set:ye("max")}),j.mode==="time"&&(e.config.noCalendar=!0,e.config.enableTime=!0),Object.assign(e.config,G,j);for(var ue=0;ue<M.length;ue++)e.config[M[ue]]=e.config[M[ue]]===!0||e.config[M[ue]]==="true";Ur.filter(function(ge){return e.config[ge]!==void 0}).forEach(function(ge){e.config[ge]=Kr(e.config[ge]||[]).map(s)}),e.isMobile=!e.config.disableMobile&&!e.config.inline&&e.config.mode==="single"&&!e.config.disable.length&&!e.config.enable&&!e.config.weekNumbers&&/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent);for(var ue=0;ue<e.config.plugins.length;ue++){var Ce=e.config.plugins[ue](e)||{};for(var de in Ce)Ur.indexOf(de)>-1?e.config[de]=Kr(Ce[de]).map(s).concat(e.config[de]):typeof j[de]>"u"&&(e.config[de]=Ce[de])}j.altInputClass||(e.config.altInputClass=Be().className+" "+e.config.altInputClass),Pe("onParseConfig")}function Be(){return e.config.wrap?t.querySelector("[data-input]"):t}function Q(){typeof e.config.locale!="object"&&typeof Ve.l10ns[e.config.locale]>"u"&&e.config.errorHandler(new Error("flatpickr: invalid locale "+e.config.locale)),e.l10n=Ye(Ye({},Ve.l10ns.default),typeof e.config.locale=="object"?e.config.locale:e.config.locale!=="default"?Ve.l10ns[e.config.locale]:void 0),Yt.D="("+e.l10n.weekdays.shorthand.join("|")+")",Yt.l="("+e.l10n.weekdays.longhand.join("|")+")",Yt.M="("+e.l10n.months.shorthand.join("|")+")",Yt.F="("+e.l10n.months.longhand.join("|")+")",Yt.K="("+e.l10n.amPM[0]+"|"+e.l10n.amPM[1]+"|"+e.l10n.amPM[0].toLowerCase()+"|"+e.l10n.amPM[1].toLowerCase()+")";var M=Ye(Ye({},n),JSON.parse(JSON.stringify(t.dataset||{})));M.time_24hr===void 0&&Ve.defaultConfig.time_24hr===void 0&&(e.config.time_24hr=e.l10n.time_24hr),e.formatDate=Lo(e),e.parseDate=Wr({config:e.config,l10n:e.l10n})}function te(M){if(typeof e.config.position=="function")return void e.config.position(e,M);if(e.calendarContainer!==void 0){Pe("onPreCalendarPosition");var j=M||e._positionElement,G=Array.prototype.reduce.call(e.calendarContainer.children,function(Je,Fn){return Je+Fn.offsetHeight},0),X=e.calendarContainer.offsetWidth,oe=e.config.position.split(" "),se=oe[0],ye=oe.length>1?oe[1]:null,ue=j.getBoundingClientRect(),Ce=window.innerHeight-ue.bottom,de=se==="above"||se!=="below"&&Ce<G&&ue.top>G,ge=window.pageYOffset+ue.top+(de?-G-2:j.offsetHeight+2);if(et(e.calendarContainer,"arrowTop",!de),et(e.calendarContainer,"arrowBottom",de),!e.config.inline){var Te=window.pageXOffset+ue.left,Me=!1,Ge=!1;ye==="center"?(Te-=(X-ue.width)/2,Me=!0):ye==="right"&&(Te-=X-ue.width,Ge=!0),et(e.calendarContainer,"arrowLeft",!Me&&!Ge),et(e.calendarContainer,"arrowCenter",Me),et(e.calendarContainer,"arrowRight",Ge);var Mt=window.document.body.offsetWidth-(window.pageXOffset+ue.right),Ot=Te+X>window.document.body.offsetWidth,Bn=Mt+X>window.document.body.offsetWidth;if(et(e.calendarContainer,"rightMost",Ot),!e.config.static)if(e.calendarContainer.style.top=ge+"px",!Ot)e.calendarContainer.style.left=Te+"px",e.calendarContainer.style.right="auto";else if(!Bn)e.calendarContainer.style.left="auto",e.calendarContainer.style.right=Mt+"px";else{var en=ae();if(en===void 0)return;var Ue=window.document.body.offsetWidth,Ln=Math.max(0,Ue/2-X/2),Rn=".flatpickr-calendar.centerMost:before",jn=".flatpickr-calendar.centerMost:after",Vn=en.cssRules.length,qn="{left:"+ue.left+"px;right:auto;}";et(e.calendarContainer,"rightMost",!1),et(e.calendarContainer,"centerMost",!0),en.insertRule(Rn+","+jn+qn,Vn),e.calendarContainer.style.left=Ln+"px",e.calendarContainer.style.right="auto"}}}}function ae(){for(var M=null,j=0;j<document.styleSheets.length;j++){var G=document.styleSheets[j];if(G.cssRules){try{G.cssRules}catch{continue}M=G;break}}return M??le()}function le(){var M=document.createElement("style");return document.head.appendChild(M),M.sheet}function ie(){e.config.noCalendar||e.isMobile||(N(),Ze(),O())}function $e(){e._input.focus(),window.navigator.userAgent.indexOf("MSIE")!==-1||navigator.msMaxTouchPoints!==void 0?setTimeout(e.close,0):e.close()}function me(M){M.preventDefault(),M.stopPropagation();var j=function(ge){return ge.classList&&ge.classList.contains("flatpickr-day")&&!ge.classList.contains("flatpickr-disabled")&&!ge.classList.contains("notAllowed")},G=Bo(ft(M),j);if(G!==void 0){var X=G,oe=e.latestSelectedDateObj=new Date(X.dateObj.getTime()),se=(oe.getMonth()<e.currentMonth||oe.getMonth()>e.currentMonth+e.config.showMonths-1)&&e.config.mode!=="range";if(e.selectedDateElem=X,e.config.mode==="single")e.selectedDates=[oe];else if(e.config.mode==="multiple"){var ye=kt(oe);ye?e.selectedDates.splice(parseInt(ye),1):e.selectedDates.push(oe)}else e.config.mode==="range"&&(e.selectedDates.length===2&&e.clear(!1,!1),e.latestSelectedDateObj=oe,e.selectedDates.push(oe),ht(oe,e.selectedDates[0],!0)!==0&&e.selectedDates.sort(function(ge,Te){return ge.getTime()-Te.getTime()}));if(f(),se){var ue=e.currentYear!==oe.getFullYear();e.currentYear=oe.getFullYear(),e.currentMonth=oe.getMonth(),ue&&(Pe("onYearChange"),N()),Pe("onMonthChange")}if(Ze(),O(),it(),!se&&e.config.mode!=="range"&&e.config.showMonths===1?S(X):e.selectedDateElem!==void 0&&e.hourElement===void 0&&e.selectedDateElem&&e.selectedDateElem.focus(),e.hourElement!==void 0&&e.hourElement!==void 0&&e.hourElement.focus(),e.config.closeOnSelect){var Ce=e.config.mode==="single"&&!e.config.enableTime,de=e.config.mode==="range"&&e.selectedDates.length===2&&!e.config.enableTime;(Ce||de)&&$e()}_()}}var ve={locale:[Q,K],showMonths:[q,l,re],minDate:[g],maxDate:[g],positionElement:[Jt],clickOpens:[function(){e.config.clickOpens===!0?(m(e._input,"focus",e.open),m(e._input,"click",e.open)):(e._input.removeEventListener("focus",e.open),e._input.removeEventListener("click",e.open))}]};function ze(M,j){if(M!==null&&typeof M=="object"){Object.assign(e.config,M);for(var G in M)ve[G]!==void 0&&ve[G].forEach(function(X){return X()})}else e.config[M]=j,ve[M]!==void 0?ve[M].forEach(function(X){return X()}):Ur.indexOf(M)>-1&&(e.config[M]=Kr(j));e.redraw(),it(!0)}function qe(M,j){var G=[];if(M instanceof Array)G=M.map(function(X){return e.parseDate(X,j)});else if(M instanceof Date||typeof M=="number")G=[e.parseDate(M,j)];else if(typeof M=="string")switch(e.config.mode){case"single":case"time":G=[e.parseDate(M,j)];break;case"multiple":G=M.split(e.config.conjunction).map(function(X){return e.parseDate(X,j)});break;case"range":G=M.split(e.l10n.rangeSeparator).map(function(X){return e.parseDate(X,j)});break}else e.config.errorHandler(new Error("Invalid date supplied: "+JSON.stringify(M)));e.selectedDates=e.config.allowInvalidPreload?G:G.filter(function(X){return X instanceof Date&&Z(X,!1)}),e.config.mode==="range"&&e.selectedDates.sort(function(X,oe){return X.getTime()-oe.getTime()})}function Ae(M,j,G){if(j===void 0&&(j=!1),G===void 0&&(G=e.config.dateFormat),M!==0&&!M||M instanceof Array&&M.length===0)return e.clear(j);qe(M,G),e.latestSelectedDateObj=e.selectedDates[e.selectedDates.length-1],e.redraw(),g(void 0,j),c(),e.selectedDates.length===0&&e.clear(!1),it(j),j&&Pe("onChange")}function wt(M){return M.slice().map(function(j){return typeof j=="string"||typeof j=="number"||j instanceof Date?e.parseDate(j,void 0,!0):j&&typeof j=="object"&&j.from&&j.to?{from:e.parseDate(j.from,void 0),to:e.parseDate(j.to,void 0)}:j}).filter(function(j){return j})}function Ee(){e.selectedDates=[],e.now=e.parseDate(e.config.now)||new Date;var M=e.config.defaultDate||((e.input.nodeName==="INPUT"||e.input.nodeName==="TEXTAREA")&&e.input.placeholder&&e.input.value===e.input.placeholder?null:e.input.value);M&&qe(M,e.config.dateFormat),e._initialDate=e.selectedDates.length>0?e.selectedDates[0]:e.config.minDate&&e.config.minDate.getTime()>e.now.getTime()?e.config.minDate:e.config.maxDate&&e.config.maxDate.getTime()<e.now.getTime()?e.config.maxDate:e.now,e.currentYear=e._initialDate.getFullYear(),e.currentMonth=e._initialDate.getMonth(),e.selectedDates.length>0&&(e.latestSelectedDateObj=e.selectedDates[0]),e.config.minTime!==void 0&&(e.config.minTime=e.parseDate(e.config.minTime,"H:i")),e.config.maxTime!==void 0&&(e.config.maxTime=e.parseDate(e.config.maxTime,"H:i")),e.minDateHasTime=!!e.config.minDate&&(e.config.minDate.getHours()>0||e.config.minDate.getMinutes()>0||e.config.minDate.getSeconds()>0),e.maxDateHasTime=!!e.config.maxDate&&(e.config.maxDate.getHours()>0||e.config.maxDate.getMinutes()>0||e.config.maxDate.getSeconds()>0)}function rt(){if(e.input=Be(),!e.input){e.config.errorHandler(new Error("Invalid input element specified"));return}e.input._type=e.input.type,e.input.type="text",e.input.classList.add("flatpickr-input"),e._input=e.input,e.config.altInput&&(e.altInput=De(e.input.nodeName,e.config.altInputClass),e._input=e.altInput,e.altInput.placeholder=e.input.placeholder,e.altInput.disabled=e.input.disabled,e.altInput.required=e.input.required,e.altInput.tabIndex=e.input.tabIndex,e.altInput.type="text",e.input.setAttribute("type","hidden"),!e.config.static&&e.input.parentNode&&e.input.parentNode.insertBefore(e.altInput,e.input.nextSibling)),e.config.allowInput||e._input.setAttribute("readonly","readonly"),Jt()}function Jt(){e._positionElement=e.config.positionElement||e._input}function Mn(){var M=e.config.enableTime?e.config.noCalendar?"time":"datetime-local":"date";e.mobileInput=De("input",e.input.className+" flatpickr-mobile"),e.mobileInput.tabIndex=1,e.mobileInput.type=M,e.mobileInput.disabled=e.input.disabled,e.mobileInput.required=e.input.required,e.mobileInput.placeholder=e.input.placeholder,e.mobileFormatStr=M==="datetime-local"?"Y-m-d\\TH:i:S":M==="date"?"Y-m-d":"H:i:S",e.selectedDates.length>0&&(e.mobileInput.defaultValue=e.mobileInput.value=e.formatDate(e.selectedDates[0],e.mobileFormatStr)),e.config.minDate&&(e.mobileInput.min=e.formatDate(e.config.minDate,"Y-m-d")),e.config.maxDate&&(e.mobileInput.max=e.formatDate(e.config.maxDate,"Y-m-d")),e.input.getAttribute("step")&&(e.mobileInput.step=String(e.input.getAttribute("step"))),e.input.type="hidden",e.altInput!==void 0&&(e.altInput.type="hidden");try{e.input.parentNode&&e.input.parentNode.insertBefore(e.mobileInput,e.input.nextSibling)}catch{}m(e.mobileInput,"change",function(j){e.setDate(ft(j).value,!1,e.mobileFormatStr),Pe("onChange"),Pe("onClose")})}function Xt(M){if(e.isOpen===!0)return e.close();e.open(M)}function Pe(M,j){if(e.config!==void 0){var G=e.config[M];if(G!==void 0&&G.length>0)for(var X=0;G[X]&&X<G.length;X++)G[X](e.selectedDates,e.input.value,e,j);M==="onChange"&&(e.input.dispatchEvent(zt("change")),e.input.dispatchEvent(zt("input")))}}function zt(M){var j=document.createEvent("Event");return j.initEvent(M,!0,!0),j}function kt(M){for(var j=0;j<e.selectedDates.length;j++){var G=e.selectedDates[j];if(G instanceof Date&&ht(G,M)===0)return""+j}return!1}function Pt(M){return e.config.mode!=="range"||e.selectedDates.length<2?!1:ht(M,e.selectedDates[0])>=0&&ht(M,e.selectedDates[1])<=0}function Ze(){e.config.noCalendar||e.isMobile||!e.monthNav||(e.yearElements.forEach(function(M,j){var G=new Date(e.currentYear,e.currentMonth,1);G.setMonth(e.currentMonth+j),e.config.showMonths>1||e.config.monthSelectorType==="static"?e.monthElements[j].textContent=sr(G.getMonth(),e.config.shorthandCurrentMonth,e.l10n)+" ":e.monthsDropdownContainer.value=G.getMonth().toString(),M.value=G.getFullYear().toString()}),e._hidePrevMonthArrow=e.config.minDate!==void 0&&(e.currentYear===e.config.minDate.getFullYear()?e.currentMonth<=e.config.minDate.getMonth():e.currentYear<e.config.minDate.getFullYear()),e._hideNextMonthArrow=e.config.maxDate!==void 0&&(e.currentYear===e.config.maxDate.getFullYear()?e.currentMonth+1>e.config.maxDate.getMonth():e.currentYear>e.config.maxDate.getFullYear()))}function Ct(M){var j=M||(e.config.altInput?e.config.altFormat:e.config.dateFormat);return e.selectedDates.map(function(G){return e.formatDate(G,j)}).filter(function(G,X,oe){return e.config.mode!=="range"||e.config.enableTime||oe.indexOf(G)===X}).join(e.config.mode!=="range"?e.config.conjunction:e.l10n.rangeSeparator)}function it(M){M===void 0&&(M=!0),e.mobileInput!==void 0&&e.mobileFormatStr&&(e.mobileInput.value=e.latestSelectedDateObj!==void 0?e.formatDate(e.latestSelectedDateObj,e.mobileFormatStr):""),e.input.value=Ct(e.config.dateFormat),e.altInput!==void 0&&(e.altInput.value=Ct(e.config.altFormat)),M!==!1&&Pe("onValueUpdate")}function It(M){var j=ft(M),G=e.prevMonthNav.contains(j),X=e.nextMonthNav.contains(j);G||X?D(G?-1:1):e.yearElements.indexOf(j)>=0?j.select():j.classList.contains("arrowUp")?e.changeYear(e.currentYear+1):j.classList.contains("arrowDown")&&e.changeYear(e.currentYear-1)}function Qt(M){M.preventDefault();var j=M.type==="keydown",G=ft(M),X=G;e.amPM!==void 0&&G===e.amPM&&(e.amPM.textContent=e.l10n.amPM[gt(e.amPM.textContent===e.l10n.amPM[0])]);var oe=parseFloat(X.getAttribute("min")),se=parseFloat(X.getAttribute("max")),ye=parseFloat(X.getAttribute("step")),ue=parseInt(X.value,10),Ce=M.delta||(j?M.which===38?1:-1:0),de=ue+ye*Ce;if(typeof X.value<"u"&&X.value.length===2){var ge=X===e.hourElement,Te=X===e.minuteElement;de<oe?(de=se+de+gt(!ge)+(gt(ge)&>(!e.amPM)),Te&&b(void 0,-1,e.hourElement)):de>se&&(de=X===e.hourElement?de-se-gt(!e.amPM):oe,Te&&b(void 0,1,e.hourElement)),e.amPM&&ge&&(ye===1?de+ue===23:Math.abs(de-ue)>ye)&&(e.amPM.textContent=e.l10n.amPM[gt(e.amPM.textContent===e.l10n.amPM[0])]),X.value=at(de)}}return a(),e}function dn(t,n){for(var e=Array.prototype.slice.call(t).filter(function(s){return s instanceof HTMLElement}),o=[],a=0;a<e.length;a++){var r=e[a];try{if(r.getAttribute("data-fp-omit")!==null)continue;r._flatpickr!==void 0&&(r._flatpickr.destroy(),r._flatpickr=void 0),r._flatpickr=Vu(r,n||{}),o.push(r._flatpickr)}catch(s){console.error(s)}}return o.length===1?o[0]:o}typeof HTMLElement<"u"&&typeof HTMLCollection<"u"&&typeof NodeList<"u"&&(HTMLCollection.prototype.flatpickr=NodeList.prototype.flatpickr=function(t){return dn(this,t)},HTMLElement.prototype.flatpickr=function(t){return dn([this],t)});var Ve=function(t,n){return typeof t=="string"?dn(window.document.querySelectorAll(t),n):t instanceof Node?dn([t],n):dn(t,n)};Ve.defaultConfig={},Ve.l10ns={en:Ye({},En),default:Ye({},En)},Ve.localize=function(t){Ve.l10ns.default=Ye(Ye({},Ve.l10ns.default),t)},Ve.setDefaults=function(t){Ve.defaultConfig=Ye(Ye({},Ve.defaultConfig),t)},Ve.parseDate=Wr({}),Ve.formatDate=Lo({}),Ve.compareDates=ht,typeof jQuery<"u"&&typeof jQuery.fn<"u"&&(jQuery.fn.flatpickr=function(t){return dn(this,t)}),Date.prototype.fp_incr=function(t){return new Date(this.getFullYear(),this.getMonth(),this.getDate()+(typeof t=="string"?parseInt(t,10):t))},typeof window<"u"&&(window.flatpickr=Ve);const Bp="";var jo={exports:{}};(function(t,n){(function(e,o){t.exports=o()})(je,function(){/*! *****************************************************************************
|
|
62
65
|
Copyright (c) Microsoft Corporation.
|
|
63
66
|
|
|
64
67
|
Permission to use, copy, modify, and/or distribute this software for any
|
|
@@ -71,62 +74,62 @@
|
|
|
71
74
|
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
72
75
|
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
73
76
|
PERFORMANCE OF THIS SOFTWARE.
|
|
74
|
-
***************************************************************************** */function e(){for(var a=0,r=0,s=arguments.length;r<s;r++)a+=arguments[r].length;for(var
|
|
77
|
+
***************************************************************************** */function e(){for(var a=0,r=0,s=arguments.length;r<s;r++)a+=arguments[r].length;for(var l=Array(a),u=0,r=0;r<s;r++)for(var d=arguments[r],p=0,f=d.length;p<f;p++,u++)l[u]=d[p];return l}function o(a){return a===void 0&&(a={}),function(r){var s="",l,u,d,p=function(){if(a.input){if(l=a.input instanceof Element?a.input:window.document.querySelector(a.input),!l){r.config.errorHandler(new Error("Invalid input element specified"));return}r.config.wrap&&(l=l.querySelector("[data-input]"))}else l=r._input.cloneNode(),l.removeAttribute("id"),l._flatpickr=void 0;if(l.value){var c=r.parseDate(l.value);c&&r.selectedDates.push(c)}l.setAttribute("data-fp-omit",""),r.config.clickOpens&&(r._bind(l,["focus","click"],function(){r.selectedDates[1]&&(r.latestSelectedDateObj=r.selectedDates[1],r._setHoursFromDate(r.selectedDates[1]),r.jumpToDate(r.selectedDates[1])),u=!0,r.isOpen=!1,r.open(void 0,a.position==="left"?r._input:l)}),r._bind(r._input,["focus","click"],function(h){h.preventDefault(),r.isOpen=!1,r.open()})),r.config.allowInput&&r._bind(l,"keydown",function(h){h.key==="Enter"&&(r.setDate([r.selectedDates[0],l.value],!0,s),l.click())}),a.input||r._input.parentNode&&r._input.parentNode.insertBefore(l,r._input.nextSibling)},f={onParseConfig:function(){r.config.mode="range",s=r.config.altInput?r.config.altFormat:r.config.dateFormat},onReady:function(){p(),r.config.ignoredFocusElements.push(l),r.config.allowInput?(r._input.removeAttribute("readonly"),l.removeAttribute("readonly")):l.setAttribute("readonly","readonly"),r._bind(r._input,"focus",function(){r.latestSelectedDateObj=r.selectedDates[0],r._setHoursFromDate(r.selectedDates[0]),u=!1,r.jumpToDate(r.selectedDates[0])}),r.config.allowInput&&r._bind(r._input,"keydown",function(c){c.key==="Enter"&&r.setDate([r._input.value,r.selectedDates[1]],!0,s)}),r.setDate(r.selectedDates,!1),f.onValueUpdate(r.selectedDates),r.loadedPlugins.push("range")},onPreCalendarPosition:function(){u&&(r._positionElement=l,setTimeout(function(){r._positionElement=r._input},0))},onChange:function(){r.selectedDates.length||setTimeout(function(){r.selectedDates.length||(l.value="",d=[])},10),u&&setTimeout(function(){l.focus()},0)},onDestroy:function(){a.input||l.parentNode&&l.parentNode.removeChild(l)},onValueUpdate:function(c){var h,v,m;if(l){if(d=!d||c.length>=d.length?e(c):d,d.length>c.length){var _=c[0],y=u?[d[0],_]:[_,d[1]];y[0].getTime()>y[1].getTime()&&(u?y[0]=y[1]:y[1]=y[0]),r.setDate(y,!1),d=e(y)}h=r.selectedDates.map(function(g){return r.formatDate(g,s)}),v=h[0],r._input.value=v===void 0?"":v,m=h[1],l.value=m===void 0?"":m}}};return f}}return o})})(jo);var qu=jo.exports;const Fu=Cn(qu),Hu=`
|
|
75
78
|
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
76
79
|
<path d="M10.25 3.5L5.75 8L10.25 12.5" stroke="#1A1A1A" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
77
80
|
</svg>
|
|
78
|
-
`,
|
|
81
|
+
`,zu=`
|
|
79
82
|
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
80
83
|
<path d="M5.75 3.5L10.25 8L5.75 12.5" stroke="#1A1A1A" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
81
84
|
</svg>
|
|
82
|
-
`,q1="",lc="single",Sr="range",sc={props:{name:{type:String,default:"Date"},modelValue:[String,Array],value:[String,Array],placeholder:{type:String,default:""},required:{type:Boolean,default:!1},config:{type:Object,default:()=>{}},mode:{type:String,default:lc},label:{type:String,default:""},endDateLabel:{type:String,default:""},supportText:{type:String,default:""},endDateSupportText:{type:String,default:""},errorMessage:{type:String,default:""}},mounted(){document.addEventListener("keyup",this.onDocumentKeyDown,!0),this.$nextTick(()=>{this.initFlatpickr()})},watch:{config(){this.initFlatpickr()},value(){this.initFlatpickr()},modelValue(){this.initFlatpickr()}},data(){return{pickerOptions:{},data:this.modelValue,flat:null,isOpen:!1,isOpenEndDate:!1}},methods:{initFlatpickr(){this.flat=new Re(this.$refs.date,this.pickerConfigs())},pickerConfigs(){const t=document.querySelectorAll(".calendar-icon");let n={dateFormat:"Y-m-d",altInput:!0,altFormat:"Y-m-d",position:"left",mode:this.mode,appendTo:this.$refs.dropdown,prevArrow:oc,nextArrow:ac,ignoredFocusElements:Array.from(t),locale:{weekdays:{shorthand:["S","M","T","W","T","F","S"],longhand:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"]}},onReady(o,a,r){r.setDate(a,!0)},onChange:(o,a)=>this.onChange(a),onClose:()=>this.onClose()};this.mode===Sr&&(n.plugins=[new ic({input:this.$refs.toDate})]),(this.value||this.modelValue)&&(this.mode===Sr?n.defaultDate=this.modelValue.length?[this.modelValue[0],this.modelValue[1]]:[this.value[0],this.value[1]]:n.defaultDate=this.modelValue?this.modelValue:this.value);const e=Object.assign({},n,this.config);return this.pickerOptions=e,e},onClose(){this.triggerChange(),this.$nextTick(()=>{this.isOpen=!1,this.isOpenEndDate=!1})},onChange(t){this.mode===Sr?this.data=t.split(" to "):this.data=t},onDocumentKeyDown(t){t.keyCode===pr&&this.close()},triggerChange(){setTimeout(()=>{if(this.pickerOptions.mode==="range"){let t=this.data;t.length<2?(this.$emit("input",""),this.$emit("update:modelValue",this.data)):(this.$emit("input",[t[0],t[1]]),this.$emit("update:modelValue",this.data))}else this.data===""?(this.$emit("input",""),this.$emit("update:modelValue",this.data)):(this.$emit("input",this.data),this.$emit("update:modelValue",this.data))})},open(){this.isOpen||(this.isOpen=!0,this.isOpenEndDate=!1,this.flat.open())},openEndDate(){this.isOpen=!1,this.isOpenEndDate=!0,this.$refs.toDate.click()}},computed:{values(){var t;return this.data?(t=this.data)==null?void 0:t.split(" to "):[]}},beforeUnmount(){document.removeEventListener("keyup",this.onDocumentKeyDown)},components:{IbIcon:Le,IbLabel:dn,IbAlert:Pt}},dc={class:"inputs-wrapper"},cc={class:"input-group-wrapper"},uc=["placeholder"],fc={ref:"dropdown",class:"dropdown"},hc={key:1,class:"support-text"},pc={key:0,class:"input-group-wrapper"},mc=["placeholder"],gc={key:1,class:"support-text"};function yc(t,n,e,o,a,r){const s=i.resolveComponent("ib-alert"),d=i.resolveComponent("ib-label"),u=i.resolveComponent("ib-icon");return i.openBlock(),i.createElementBlock("div",{class:i.normalizeClass(["flatpickr-wrapper",{"has-labels":e.label.length||e.endDateLabel.length,"has-label":e.label.length,"has-error":e.errorMessage.length,"is-range":e.mode==="range"}])},[e.errorMessage.length?(i.openBlock(),i.createBlock(s,{key:0,class:"error-message"},{default:i.withCtx(()=>[i.createTextVNode(i.toDisplayString(e.errorMessage),1)]),_:1})):i.createCommentVNode("",!0),i.createElementVNode("div",dc,[i.createElementVNode("div",cc,[e.label.length?(i.openBlock(),i.createBlock(d,{key:0,class:"label",required:e.required},{default:i.withCtx(()=>[i.createTextVNode(i.toDisplayString(e.label),1)]),_:1},8,["required"])):i.createCommentVNode("",!0),i.createElementVNode("div",{class:i.normalizeClass(["input-wrapper",{active:a.isOpen}]),onClick:n[0]||(n[0]=(...p)=>r.open&&r.open(...p))},[i.createElementVNode("input",{placeholder:e.placeholder,ref:"date",class:"date-picker-input"},null,8,uc),i.createVNode(u,{name:"today-outline",class:"calendar-icon"})],2),i.createElementVNode("div",fc,null,512),e.supportText.length?(i.openBlock(),i.createElementBlock("p",hc,i.toDisplayString(e.supportText),1)):i.createCommentVNode("",!0)]),e.mode==="range"?(i.openBlock(),i.createElementBlock("div",pc,[e.endDateLabel.length?(i.openBlock(),i.createBlock(d,{key:0,class:"end-date-label label",required:e.required},{default:i.withCtx(()=>[i.createTextVNode(i.toDisplayString(e.endDateLabel),1)]),_:1},8,["required"])):i.createCommentVNode("",!0),i.createElementVNode("div",{class:i.normalizeClass(["input-wrapper",{active:a.isOpenEndDate}]),onClick:n[1]||(n[1]=(...p)=>r.openEndDate&&r.openEndDate(...p))},[i.createElementVNode("input",{class:"date-picker-input",placeholder:e.placeholder,ref:"toDate"},null,8,mc),i.createVNode(u,{name:"today-outline",class:"calendar-icon"})],2),e.endDateSupportText.length?(i.openBlock(),i.createElementBlock("p",gc,i.toDisplayString(e.endDateSupportText),1)):i.createCommentVNode("",!0)])):i.createCommentVNode("",!0)])],2)}const vc=_e(sc,[["render",yc]]),bc=[["Afghanistan (افغانستان)","af","93"],["Albania (Shqipëri)","al","355"],["Algeria (الجزائر)","dz","213"],["American Samoa","as","1",5,["684"]],["Andorra","ad","376"],["Angola","ao","244"],["Anguilla","ai","1",6,["264"]],["Antigua and Barbuda","ag","1",7,["268"]],["Argentina","ar","54"],["Armenia (Հայաստան)","am","374"],["Aruba","aw","297"],["Ascension Island","ac","247"],["Australia","au","61",0],["Austria (Österreich)","at","43"],["Azerbaijan (Azərbaycan)","az","994"],["Bahamas","bs","1",8,["242"]],["Bahrain (البحرين)","bh","973"],["Bangladesh (বাংলাদেশ)","bd","880"],["Barbados","bb","1",9,["246"]],["Belarus (Беларусь)","by","375"],["Belgium (België)","be","32"],["Belize","bz","501"],["Benin (Bénin)","bj","229"],["Bermuda","bm","1",10,["441"]],["Bhutan (འབྲུག)","bt","975"],["Bolivia","bo","591"],["Bosnia and Herzegovina (Босна и Херцеговина)","ba","387"],["Botswana","bw","267"],["Brazil (Brasil)","br","55"],["British Indian Ocean Territory","io","246"],["British Virgin Islands","vg","1",11,["284"]],["Brunei","bn","673"],["Bulgaria (България)","bg","359"],["Burkina Faso","bf","226"],["Burundi (Uburundi)","bi","257"],["Cambodia (កម្ពុជា)","kh","855"],["Cameroon (Cameroun)","cm","237"],["Canada","ca","1",1,["204","226","236","249","250","263","289","306","343","354","365","367","368","382","387","403","416","418","428","431","437","438","450","584","468","474","506","514","519","548","579","581","584","587","604","613","639","647","672","683","705","709","742","753","778","780","782","807","819","825","867","873","902","905"]],["Cape Verde (Kabu Verdi)","cv","238"],["Caribbean Netherlands","bq","599",1,["3","4","7"]],["Cayman Islands","ky","1",12,["345"]],["Central African Republic (République centrafricaine)","cf","236"],["Chad (Tchad)","td","235"],["Chile","cl","56"],["China (中国)","cn","86"],["Christmas Island","cx","61",2,["89164"]],["Cocos (Keeling) Islands","cc","61",1,["89162"]],["Colombia","co","57"],["Comoros (جزر القمر)","km","269"],["Congo (DRC) (Jamhuri ya Kidemokrasia ya Kongo)","cd","243"],["Congo (Republic) (Congo-Brazzaville)","cg","242"],["Cook Islands","ck","682"],["Costa Rica","cr","506"],["Côte d’Ivoire","ci","225"],["Croatia (Hrvatska)","hr","385"],["Cuba","cu","53"],["Curaçao","cw","599",0],["Cyprus (Κύπρος)","cy","357"],["Czech Republic (Česká republika)","cz","420"],["Denmark (Danmark)","dk","45"],["Djibouti","dj","253"],["Dominica","dm","1",13,["767"]],["Dominican Republic (República Dominicana)","do","1",2,["809","829","849"]],["Ecuador","ec","593"],["Egypt (مصر)","eg","20"],["El Salvador","sv","503"],["Equatorial Guinea (Guinea Ecuatorial)","gq","240"],["Eritrea","er","291"],["Estonia (Eesti)","ee","372"],["Eswatini","sz","268"],["Ethiopia","et","251"],["Falkland Islands (Islas Malvinas)","fk","500"],["Faroe Islands (Føroyar)","fo","298"],["Fiji","fj","679"],["Finland (Suomi)","fi","358",0],["France","fr","33"],["French Guiana (Guyane française)","gf","594"],["French Polynesia (Polynésie française)","pf","689"],["Gabon","ga","241"],["Gambia","gm","220"],["Georgia (საქართველო)","ge","995"],["Germany (Deutschland)","de","49"],["Ghana (Gaana)","gh","233"],["Gibraltar","gi","350"],["Greece (Ελλάδα)","gr","30"],["Greenland (Kalaallit Nunaat)","gl","299"],["Grenada","gd","1",14,["473"]],["Guadeloupe","gp","590",0],["Guam","gu","1",15,["671"]],["Guatemala","gt","502"],["Guernsey","gg","44",1,["1481","7781","7839","7911"]],["Guinea (Guinée)","gn","224"],["Guinea-Bissau (Guiné Bissau)","gw","245"],["Guyana","gy","592"],["Haiti","ht","509"],["Honduras","hn","504"],["Hong Kong (香港)","hk","852"],["Hungary (Magyarország)","hu","36"],["Iceland (Ísland)","is","354"],["India (भारत)","in","91"],["Indonesia","id","62"],["Iran (ایران)","ir","98"],["Iraq (العراق)","iq","964"],["Ireland","ie","353"],["Isle of Man","im","44",2,["1624","74576","7524","7924","7624"]],["Israel (ישראל)","il","972"],["Italy (Italia)","it","39",0],["Jamaica","jm","1",4,["876","658"]],["Japan (日本)","jp","81"],["Jersey","je","44",3,["1534","7509","7700","7797","7829","7937"]],["Jordan (الأردن)","jo","962"],["Kazakhstan (Казахстан)","kz","7",1,["33","7"]],["Kenya","ke","254"],["Kiribati","ki","686"],["Kosovo","xk","383"],["Kuwait (الكويت)","kw","965"],["Kyrgyzstan (Кыргызстан)","kg","996"],["Laos (ລາວ)","la","856"],["Latvia (Latvija)","lv","371"],["Lebanon (لبنان)","lb","961"],["Lesotho","ls","266"],["Liberia","lr","231"],["Libya (ليبيا)","ly","218"],["Liechtenstein","li","423"],["Lithuania (Lietuva)","lt","370"],["Luxembourg","lu","352"],["Macau (澳門)","mo","853"],["Madagascar (Madagasikara)","mg","261"],["Malawi","mw","265"],["Malaysia","my","60"],["Maldives","mv","960"],["Mali","ml","223"],["Malta","mt","356"],["Marshall Islands","mh","692"],["Martinique","mq","596"],["Mauritania (موريتانيا)","mr","222"],["Mauritius (Moris)","mu","230"],["Mayotte","yt","262",1,["269","639"]],["Mexico (México)","mx","52"],["Micronesia","fm","691"],["Moldova (Republica Moldova)","md","373"],["Monaco","mc","377"],["Mongolia (Монгол)","mn","976"],["Montenegro (Crna Gora)","me","382"],["Montserrat","ms","1",16,["664"]],["Morocco (المغرب)","ma","212",0],["Mozambique (Moçambique)","mz","258"],["Myanmar (Burma) (မြန်မာ)","mm","95"],["Namibia (Namibië)","na","264"],["Nauru","nr","674"],["Nepal (नेपाल)","np","977"],["Netherlands (Nederland)","nl","31"],["New Caledonia (Nouvelle-Calédonie)","nc","687"],["New Zealand","nz","64"],["Nicaragua","ni","505"],["Niger (Nijar)","ne","227"],["Nigeria","ng","234"],["Niue","nu","683"],["Norfolk Island","nf","672"],["North Korea (조선 민주주의 인민 공화국)","kp","850"],["North Macedonia (Северна Македонија)","mk","389"],["Northern Mariana Islands","mp","1",17,["670"]],["Norway (Norge)","no","47",0],["Oman (عُمان)","om","968"],["Pakistan (پاکستان)","pk","92"],["Palau","pw","680"],["Palestine (فلسطين)","ps","970"],["Panama (Panamá)","pa","507"],["Papua New Guinea","pg","675"],["Paraguay","py","595"],["Peru (Perú)","pe","51"],["Philippines","ph","63"],["Poland (Polska)","pl","48"],["Portugal","pt","351"],["Puerto Rico","pr","1",3,["787","939"]],["Qatar (قطر)","qa","974"],["Réunion (La Réunion)","re","262",0],["Romania (România)","ro","40"],["Russia (Россия)","ru","7",0],["Rwanda","rw","250"],["Saint Barthélemy","bl","590",1],["Saint Helena","sh","290"],["Saint Kitts and Nevis","kn","1",18,["869"]],["Saint Lucia","lc","1",19,["758"]],["Saint Martin (Saint-Martin (partie française))","mf","590",2],["Saint Pierre and Miquelon (Saint-Pierre-et-Miquelon)","pm","508"],["Saint Vincent and the Grenadines","vc","1",20,["784"]],["Samoa","ws","685"],["San Marino","sm","378"],["São Tomé and Príncipe (São Tomé e Príncipe)","st","239"],["Saudi Arabia (المملكة العربية السعودية)","sa","966"],["Senegal (Sénégal)","sn","221"],["Serbia (Србија)","rs","381"],["Seychelles","sc","248"],["Sierra Leone","sl","232"],["Singapore","sg","65"],["Sint Maarten","sx","1",21,["721"]],["Slovakia (Slovensko)","sk","421"],["Slovenia (Slovenija)","si","386"],["Solomon Islands","sb","677"],["Somalia (Soomaaliya)","so","252"],["South Africa","za","27"],["South Korea (대한민국)","kr","82"],["South Sudan (جنوب السودان)","ss","211"],["Spain (España)","es","34"],["Sri Lanka (ශ්රී ලංකාව)","lk","94"],["Sudan (السودان)","sd","249"],["Suriname","sr","597"],["Svalbard and Jan Mayen","sj","47",1,["79"]],["Sweden (Sverige)","se","46"],["Switzerland (Schweiz)","ch","41"],["Syria (سوريا)","sy","963"],["Taiwan (台灣)","tw","886"],["Tajikistan","tj","992"],["Tanzania","tz","255"],["Thailand (ไทย)","th","66"],["Timor-Leste","tl","670"],["Togo","tg","228"],["Tokelau","tk","690"],["Tonga","to","676"],["Trinidad and Tobago","tt","1",22,["868"]],["Tunisia (تونس)","tn","216"],["Turkey (Türkiye)","tr","90"],["Turkmenistan","tm","993"],["Turks and Caicos Islands","tc","1",23,["649"]],["Tuvalu","tv","688"],["U.S. Virgin Islands","vi","1",24,["340"]],["Uganda","ug","256"],["Ukraine (Україна)","ua","380"],["United Arab Emirates (الإمارات العربية المتحدة)","ae","971"],["United Kingdom","gb","44",0],["United States","us","1",0],["Uruguay","uy","598"],["Uzbekistan (Oʻzbekiston)","uz","998"],["Vanuatu","vu","678"],["Vatican City (Città del Vaticano)","va","39",1,["06698"]],["Venezuela","ve","58"],["Vietnam (Việt Nam)","vn","84"],["Wallis and Futuna (Wallis-et-Futuna)","wf","681"],["Western Sahara (الصحراء الغربية)","eh","212",1,["5288","5289"]],["Yemen (اليمن)","ye","967"],["Zambia","zm","260"],["Zimbabwe","zw","263"],["Åland Islands","ax","358",1,["18"]]],_c=bc.map(([t,n,e,o=0,a=null])=>({name:t,iso2:n.toUpperCase(),dialCode:e,priority:o,areaCodes:a}));function $c(){return fetch("https://ip2c.org/s").then(t=>t.text()).then(t=>{const n=(t||"").toString();if(!n||n[0]!=="1")throw new Error("unable to fetch the country");return n.substr(2,2)})}function wc(t,n){if(t.setSelectionRange)t.focus(),t.setSelectionRange(n,n);else if(t.createTextRange){const e=t.createTextRange();e.collapse(!0),e.moveEnd("character",n),e.moveStart("character",n),e.select()}}const kc=[{name:"allCountries",type:Array,default:_c,description:"All countries that are used in <code>libphonenumber-js</code>, can be overridden by this prop",inDemo:!1},{name:"autoFormat",type:Boolean,default:!0,description:"Auto update the input to the formatted phone number when it's valid",inDemo:!0},{name:"customValidate",type:[Boolean,RegExp],default:!1,description:"Custom validation RegExp for input",inDemo:!1},{name:"defaultCountry",default:"",type:[String,Number],description:"Default country (by iso2 or dialCode), will override the country fetched from IP address of user",inDemo:!1},{name:"disabled",default:!1,type:Boolean,description:"Disable <code>vue-tel-input</code>, including the input & flag dropdown",inDemo:!1},{name:"autoDefaultCountry",default:!0,type:Boolean,description:"To fetch default country based on IP address of user",inDemo:!1},{name:"dropdownOptions",type:Object,description:"Options for dropdown, see below",inDemo:!1},{name:"dropdownOptions.disabled",default:!1,type:Boolean,description:"Disable dropdown",inDemo:!1},{name:"dropdownOptions.showDialCodeInList",default:!0,type:Boolean,description:"Show dial code in the dropdown list",inDemo:!0},{name:"dropdownOptions.showDialCodeInSelection",default:!1,type:Boolean,description:"Show dial code in the dropdown selection",inDemo:!0},{name:"dropdownOptions.showFlags",default:!0,type:Boolean,description:"Show flags in the dropdown selection and list",inDemo:!0},{name:"dropdownOptions.showSearchBox",default:!1,type:Boolean,description:"Show country search box",inDemo:!0},{name:"dropdownOptions.tabindex",default:0,type:Number,description:"Native dropdown <code>tabindex</code> attribute",inDemo:!1},{name:"ignoredCountries",default:[],type:Array,description:"List of countries will NOT be shown on the dropdown",inDemo:!1},{name:"inputOptions",type:Object,description:"Options for input, see below",inDemo:!1},{name:"inputOptions.autocomplete",type:String,default:"on",description:"Native input <code>autocomplete</code> attribute",inDemo:!1},{name:"inputOptions.autofocus",type:Boolean,default:!1,description:"Native input <code>autofocus</code> attribute",inDemo:!1},{name:"inputOptions.aria-describedby",default:"",type:String,description:"Native input <code>aria-describedby</code> attribute",inDemo:!1},{name:"inputOptions.id",default:"",type:String,description:"Native input <code>id</code> attribute",inDemo:!1},{name:"inputOptions.maxlength",default:25,type:Number,description:"Native input <code>maxlength</code> attribute",inDemo:!1},{name:"inputOptions.name",default:"telephone",type:String,description:"Native input <code>name</code> attribute",inDemo:!1},{name:"inputOptions.showDialCode",default:!1,type:Boolean,description:"Show dial code in input",inDemo:!1},{name:"inputOptions.placeholder",default:"Enter a phone number",type:String,description:"Placeholder for the input",inDemo:!1},{name:"inputOptions.readonly",default:!1,type:Boolean,description:"Native input <code>readonly</code> attribute",inDemo:!1},{name:"inputOptions.required",default:!1,type:Boolean,description:"Native input <code>required</code> attribute",inDemo:!1},{name:"inputOptions.tabindex",default:0,type:Number,description:"Native input <code>tabindex</code> attribute",inDemo:!1},{name:"inputOptions.type",default:"tel",type:String,description:"Native input <code>type</code> attribute",inDemo:!1},{name:"inputOptions.styleClasses",default:"",type:[String,Array,Object],description:"Custom classes for the <code>input</code>",inDemo:!1},{name:"invalidMsg",default:"",type:String,description:"",inDemo:!1},{name:"mode",default:"auto",type:String,description:"Allowed values: <code>'auto'</code> (Default set by phone), <code>'international'</code> (Format number with the dial code i.e. + 61), <code>'national'</code> (Format number without dial code i.e. 0321232)",inDemo:!0,options:["auto","national","international"]},{name:"onlyCountries",default:[],type:Array,description:"List of countries will be shown on the dropdown",inDemo:!1},{name:"preferredCountries",default:[],type:Array,description:"Preferred countries list, will be on top of the dropdown",inDemo:!1},{name:"styleClasses",default:"",type:[String,Array,Object],description:"Custom classes for the wrapper",inDemo:!1},{name:"validCharactersOnly",default:!1,type:Boolean,description:"Only allow valid characters in a phone number (will also verify in <code>mounted</code>, so phone number with invalid characters will be shown as an empty string)",inDemo:!1}],Cc=[...kc].reduce((t,n)=>{if(n.name.includes(".")){const[e,o]=n.name.split(".");t[e]?Object.assign(t[e],{[o]:n.default}):Object.assign(t,{[e]:{[o]:n.default}})}else Object.assign(t,{[n.name]:n.default});return t},{}),Ki={options:{...Cc}},Oc={version:4,country_calling_codes:{1:["US","AG","AI","AS","BB","BM","BS","CA","DM","DO","GD","GU","JM","KN","KY","LC","MP","MS","PR","SX","TC","TT","VC","VG","VI"],7:["RU","KZ"],20:["EG"],27:["ZA"],30:["GR"],31:["NL"],32:["BE"],33:["FR"],34:["ES"],36:["HU"],39:["IT","VA"],40:["RO"],41:["CH"],43:["AT"],44:["GB","GG","IM","JE"],45:["DK"],46:["SE"],47:["NO","SJ"],48:["PL"],49:["DE"],51:["PE"],52:["MX"],53:["CU"],54:["AR"],55:["BR"],56:["CL"],57:["CO"],58:["VE"],60:["MY"],61:["AU","CC","CX"],62:["ID"],63:["PH"],64:["NZ"],65:["SG"],66:["TH"],81:["JP"],82:["KR"],84:["VN"],86:["CN"],90:["TR"],91:["IN"],92:["PK"],93:["AF"],94:["LK"],95:["MM"],98:["IR"],211:["SS"],212:["MA","EH"],213:["DZ"],216:["TN"],218:["LY"],220:["GM"],221:["SN"],222:["MR"],223:["ML"],224:["GN"],225:["CI"],226:["BF"],227:["NE"],228:["TG"],229:["BJ"],230:["MU"],231:["LR"],232:["SL"],233:["GH"],234:["NG"],235:["TD"],236:["CF"],237:["CM"],238:["CV"],239:["ST"],240:["GQ"],241:["GA"],242:["CG"],243:["CD"],244:["AO"],245:["GW"],246:["IO"],247:["AC"],248:["SC"],249:["SD"],250:["RW"],251:["ET"],252:["SO"],253:["DJ"],254:["KE"],255:["TZ"],256:["UG"],257:["BI"],258:["MZ"],260:["ZM"],261:["MG"],262:["RE","YT"],263:["ZW"],264:["NA"],265:["MW"],266:["LS"],267:["BW"],268:["SZ"],269:["KM"],290:["SH","TA"],291:["ER"],297:["AW"],298:["FO"],299:["GL"],350:["GI"],351:["PT"],352:["LU"],353:["IE"],354:["IS"],355:["AL"],356:["MT"],357:["CY"],358:["FI","AX"],359:["BG"],370:["LT"],371:["LV"],372:["EE"],373:["MD"],374:["AM"],375:["BY"],376:["AD"],377:["MC"],378:["SM"],380:["UA"],381:["RS"],382:["ME"],383:["XK"],385:["HR"],386:["SI"],387:["BA"],389:["MK"],420:["CZ"],421:["SK"],423:["LI"],500:["FK"],501:["BZ"],502:["GT"],503:["SV"],504:["HN"],505:["NI"],506:["CR"],507:["PA"],508:["PM"],509:["HT"],590:["GP","BL","MF"],591:["BO"],592:["GY"],593:["EC"],594:["GF"],595:["PY"],596:["MQ"],597:["SR"],598:["UY"],599:["CW","BQ"],670:["TL"],672:["NF"],673:["BN"],674:["NR"],675:["PG"],676:["TO"],677:["SB"],678:["VU"],679:["FJ"],680:["PW"],681:["WF"],682:["CK"],683:["NU"],685:["WS"],686:["KI"],687:["NC"],688:["TV"],689:["PF"],690:["TK"],691:["FM"],692:["MH"],850:["KP"],852:["HK"],853:["MO"],855:["KH"],856:["LA"],880:["BD"],886:["TW"],960:["MV"],961:["LB"],962:["JO"],963:["SY"],964:["IQ"],965:["KW"],966:["SA"],967:["YE"],968:["OM"],970:["PS"],971:["AE"],972:["IL"],973:["BH"],974:["QA"],975:["BT"],976:["MN"],977:["NP"],992:["TJ"],993:["TM"],994:["AZ"],995:["GE"],996:["KG"],998:["UZ"]},countries:{AC:["247","00","(?:[01589]\\d|[46])\\d{4}",[5,6]],AD:["376","00","(?:1|6\\d)\\d{7}|[135-9]\\d{5}",[6,8,9],[["(\\d{3})(\\d{3})","$1 $2",["[135-9]"]],["(\\d{4})(\\d{4})","$1 $2",["1"]],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["6"]]]],AE:["971","00","(?:[4-7]\\d|9[0-689])\\d{7}|800\\d{2,9}|[2-4679]\\d{7}",[5,6,7,8,9,10,11,12],[["(\\d{3})(\\d{2,9})","$1 $2",["60|8"]],["(\\d)(\\d{3})(\\d{4})","$1 $2 $3",["[236]|[479][2-8]"],"0$1"],["(\\d{3})(\\d)(\\d{5})","$1 $2 $3",["[479]"]],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["5"],"0$1"]],"0"],AF:["93","00","[2-7]\\d{8}",[9],[["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["[2-7]"],"0$1"]],"0"],AG:["1","011","(?:268|[58]\\d\\d|900)\\d{7}",[10],0,"1",0,"([457]\\d{6})$|1","268$1",0,"268"],AI:["1","011","(?:264|[58]\\d\\d|900)\\d{7}",[10],0,"1",0,"([2457]\\d{6})$|1","264$1",0,"264"],AL:["355","00","(?:700\\d\\d|900)\\d{3}|8\\d{5,7}|(?:[2-5]|6\\d)\\d{7}",[6,7,8,9],[["(\\d{3})(\\d{3,4})","$1 $2",["80|9"],"0$1"],["(\\d)(\\d{3})(\\d{4})","$1 $2 $3",["4[2-6]"],"0$1"],["(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3",["[2358][2-5]|4"],"0$1"],["(\\d{3})(\\d{5})","$1 $2",["[23578]"],"0$1"],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["6"],"0$1"]],"0"],AM:["374","00","(?:[1-489]\\d|55|60|77)\\d{6}",[8],[["(\\d{3})(\\d{2})(\\d{3})","$1 $2 $3",["[89]0"],"0 $1"],["(\\d{3})(\\d{5})","$1 $2",["2|3[12]"],"(0$1)"],["(\\d{2})(\\d{6})","$1 $2",["1|47"],"(0$1)"],["(\\d{2})(\\d{6})","$1 $2",["[3-9]"],"0$1"]],"0"],AO:["244","00","[29]\\d{8}",[9],[["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[29]"]]]],AR:["54","00","(?:11|[89]\\d\\d)\\d{8}|[2368]\\d{9}",[10,11],[["(\\d{4})(\\d{2})(\\d{4})","$1 $2-$3",["2(?:2[024-9]|3[0-59]|47|6[245]|9[02-8])|3(?:3[28]|4[03-9]|5[2-46-8]|7[1-578]|8[2-9])","2(?:[23]02|6(?:[25]|4[6-8])|9(?:[02356]|4[02568]|72|8[23]))|3(?:3[28]|4(?:[04679]|3[5-8]|5[4-68]|8[2379])|5(?:[2467]|3[237]|8[2-5])|7[1-578]|8(?:[2469]|3[2578]|5[4-8]|7[36-8]|8[5-8]))|2(?:2[24-9]|3[1-59]|47)","2(?:[23]02|6(?:[25]|4(?:64|[78]))|9(?:[02356]|4(?:[0268]|5[2-6])|72|8[23]))|3(?:3[28]|4(?:[04679]|3[78]|5(?:4[46]|8)|8[2379])|5(?:[2467]|3[237]|8[23])|7[1-578]|8(?:[2469]|3[278]|5[56][46]|86[3-6]))|2(?:2[24-9]|3[1-59]|47)|38(?:[58][78]|7[378])|3(?:4[35][56]|58[45]|8(?:[38]5|54|76))[4-6]","2(?:[23]02|6(?:[25]|4(?:64|[78]))|9(?:[02356]|4(?:[0268]|5[2-6])|72|8[23]))|3(?:3[28]|4(?:[04679]|3(?:5(?:4[0-25689]|[56])|[78])|58|8[2379])|5(?:[2467]|3[237]|8(?:[23]|4(?:[45]|60)|5(?:4[0-39]|5|64)))|7[1-578]|8(?:[2469]|3[278]|54(?:4|5[13-7]|6[89])|86[3-6]))|2(?:2[24-9]|3[1-59]|47)|38(?:[58][78]|7[378])|3(?:454|85[56])[46]|3(?:4(?:36|5[56])|8(?:[38]5|76))[4-6]"],"0$1",1],["(\\d{2})(\\d{4})(\\d{4})","$1 $2-$3",["1"],"0$1",1],["(\\d{3})(\\d{3})(\\d{4})","$1-$2-$3",["[68]"],"0$1"],["(\\d{3})(\\d{3})(\\d{4})","$1 $2-$3",["[23]"],"0$1",1],["(\\d)(\\d{4})(\\d{2})(\\d{4})","$2 15-$3-$4",["9(?:2[2-469]|3[3-578])","9(?:2(?:2[024-9]|3[0-59]|47|6[245]|9[02-8])|3(?:3[28]|4[03-9]|5[2-46-8]|7[1-578]|8[2-9]))","9(?:2(?:[23]02|6(?:[25]|4[6-8])|9(?:[02356]|4[02568]|72|8[23]))|3(?:3[28]|4(?:[04679]|3[5-8]|5[4-68]|8[2379])|5(?:[2467]|3[237]|8[2-5])|7[1-578]|8(?:[2469]|3[2578]|5[4-8]|7[36-8]|8[5-8])))|92(?:2[24-9]|3[1-59]|47)","9(?:2(?:[23]02|6(?:[25]|4(?:64|[78]))|9(?:[02356]|4(?:[0268]|5[2-6])|72|8[23]))|3(?:3[28]|4(?:[04679]|3[78]|5(?:4[46]|8)|8[2379])|5(?:[2467]|3[237]|8[23])|7[1-578]|8(?:[2469]|3[278]|5(?:[56][46]|[78])|7[378]|8(?:6[3-6]|[78]))))|92(?:2[24-9]|3[1-59]|47)|93(?:4[35][56]|58[45]|8(?:[38]5|54|76))[4-6]","9(?:2(?:[23]02|6(?:[25]|4(?:64|[78]))|9(?:[02356]|4(?:[0268]|5[2-6])|72|8[23]))|3(?:3[28]|4(?:[04679]|3(?:5(?:4[0-25689]|[56])|[78])|5(?:4[46]|8)|8[2379])|5(?:[2467]|3[237]|8(?:[23]|4(?:[45]|60)|5(?:4[0-39]|5|64)))|7[1-578]|8(?:[2469]|3[278]|5(?:4(?:4|5[13-7]|6[89])|[56][46]|[78])|7[378]|8(?:6[3-6]|[78]))))|92(?:2[24-9]|3[1-59]|47)|93(?:4(?:36|5[56])|8(?:[38]5|76))[4-6]"],"0$1",0,"$1 $2 $3-$4"],["(\\d)(\\d{2})(\\d{4})(\\d{4})","$2 15-$3-$4",["91"],"0$1",0,"$1 $2 $3-$4"],["(\\d{3})(\\d{3})(\\d{5})","$1-$2-$3",["8"],"0$1"],["(\\d)(\\d{3})(\\d{3})(\\d{4})","$2 15-$3-$4",["9"],"0$1",0,"$1 $2 $3-$4"]],"0",0,"0?(?:(11|2(?:2(?:02?|[13]|2[13-79]|4[1-6]|5[2457]|6[124-8]|7[1-4]|8[13-6]|9[1267])|3(?:02?|1[467]|2[03-6]|3[13-8]|[49][2-6]|5[2-8]|[67])|4(?:7[3-578]|9)|6(?:[0136]|2[24-6]|4[6-8]?|5[15-8])|80|9(?:0[1-3]|[19]|2\\d|3[1-6]|4[02568]?|5[2-4]|6[2-46]|72?|8[23]?))|3(?:3(?:2[79]|6|8[2578])|4(?:0[0-24-9]|[12]|3[5-8]?|4[24-7]|5[4-68]?|6[02-9]|7[126]|8[2379]?|9[1-36-8])|5(?:1|2[1245]|3[237]?|4[1-46-9]|6[2-4]|7[1-6]|8[2-5]?)|6[24]|7(?:[069]|1[1568]|2[15]|3[145]|4[13]|5[14-8]|7[2-57]|8[126])|8(?:[01]|2[15-7]|3[2578]?|4[13-6]|5[4-8]?|6[1-357-9]|7[36-8]?|8[5-8]?|9[124])))15)?","9$1"],AS:["1","011","(?:[58]\\d\\d|684|900)\\d{7}",[10],0,"1",0,"([267]\\d{6})$|1","684$1",0,"684"],AT:["43","00","1\\d{3,12}|2\\d{6,12}|43(?:(?:0\\d|5[02-9])\\d{3,9}|2\\d{4,5}|[3467]\\d{4}|8\\d{4,6}|9\\d{4,7})|5\\d{4,12}|8\\d{7,12}|9\\d{8,12}|(?:[367]\\d|4[0-24-9])\\d{4,11}",[4,5,6,7,8,9,10,11,12,13],[["(\\d)(\\d{3,12})","$1 $2",["1(?:11|[2-9])"],"0$1"],["(\\d{3})(\\d{2})","$1 $2",["517"],"0$1"],["(\\d{2})(\\d{3,5})","$1 $2",["5[079]"],"0$1"],["(\\d{3})(\\d{3,10})","$1 $2",["(?:31|4)6|51|6(?:5[0-3579]|[6-9])|7(?:20|32|8)|[89]"],"0$1"],["(\\d{4})(\\d{3,9})","$1 $2",["[2-467]|5[2-6]"],"0$1"],["(\\d{2})(\\d{3})(\\d{3,4})","$1 $2 $3",["5"],"0$1"],["(\\d{2})(\\d{4})(\\d{4,7})","$1 $2 $3",["5"],"0$1"]],"0"],AU:["61","001[14-689]|14(?:1[14]|34|4[17]|[56]6|7[47]|88)0011","1(?:[0-79]\\d{7}(?:\\d(?:\\d{2})?)?|8[0-24-9]\\d{7})|[2-478]\\d{8}|1\\d{4,7}",[5,6,7,8,9,10,12],[["(\\d{2})(\\d{3,4})","$1 $2",["16"],"0$1"],["(\\d{2})(\\d{3})(\\d{2,4})","$1 $2 $3",["16"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["14|4"],"0$1"],["(\\d)(\\d{4})(\\d{4})","$1 $2 $3",["[2378]"],"(0$1)"],["(\\d{4})(\\d{3})(\\d{3})","$1 $2 $3",["1(?:30|[89])"]]],"0",0,"(183[12])|0",0,0,0,[["(?:(?:2(?:[0-26-9]\\d|3[0-8]|4[02-9]|5[0135-9])|3(?:[0-3589]\\d|4[0-578]|6[1-9]|7[0-35-9])|7(?:[013-57-9]\\d|2[0-8]))\\d{3}|8(?:51(?:0(?:0[03-9]|[12479]\\d|3[2-9]|5[0-8]|6[1-9]|8[0-7])|1(?:[0235689]\\d|1[0-69]|4[0-589]|7[0-47-9])|2(?:0[0-79]|[18][13579]|2[14-9]|3[0-46-9]|[4-6]\\d|7[89]|9[0-4]))|(?:6[0-8]|[78]\\d)\\d{3}|9(?:[02-9]\\d{3}|1(?:(?:[0-58]\\d|6[0135-9])\\d|7(?:0[0-24-9]|[1-9]\\d)|9(?:[0-46-9]\\d|5[0-79])))))\\d{3}",[9]],["4(?:(?:79|94)[01]|83[0-389])\\d{5}|4(?:[0-3]\\d|4[047-9]|5[0-25-9]|6[0-26-9]|7[02-8]|8[0-24-9]|9[0-37-9])\\d{6}",[9]],["180(?:0\\d{3}|2)\\d{3}",[7,10]],["190[0-26]\\d{6}",[10]],0,0,0,["163\\d{2,6}",[5,6,7,8,9]],["14(?:5(?:1[0458]|[23][458])|71\\d)\\d{4}",[9]],["13(?:00\\d{6}(?:\\d{2})?|45[0-4]\\d{3})|13\\d{4}",[6,8,10,12]]],"0011"],AW:["297","00","(?:[25-79]\\d\\d|800)\\d{4}",[7],[["(\\d{3})(\\d{4})","$1 $2",["[25-9]"]]]],AX:["358","00|99(?:[01469]|5(?:[14]1|3[23]|5[59]|77|88|9[09]))","2\\d{4,9}|35\\d{4,5}|(?:60\\d\\d|800)\\d{4,6}|7\\d{5,11}|(?:[14]\\d|3[0-46-9]|50)\\d{4,8}",[5,6,7,8,9,10,11,12],0,"0",0,0,0,0,"18",0,"00"],AZ:["994","00","365\\d{6}|(?:[124579]\\d|60|88)\\d{7}",[9],[["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["90"],"0$1"],["(\\d{2})(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3 $4",["1[28]|2|365|46","1[28]|2|365[45]|46","1[28]|2|365(?:4|5[02])|46"],"(0$1)"],["(\\d{2})(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[13-9]"],"0$1"]],"0"],BA:["387","00","6\\d{8}|(?:[35689]\\d|49|70)\\d{6}",[8,9],[["(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3",["6[1-3]|[7-9]"],"0$1"],["(\\d{2})(\\d{3})(\\d{3})","$1 $2-$3",["[3-5]|6[56]"],"0$1"],["(\\d{2})(\\d{2})(\\d{2})(\\d{3})","$1 $2 $3 $4",["6"],"0$1"]],"0"],BB:["1","011","(?:246|[58]\\d\\d|900)\\d{7}",[10],0,"1",0,"([2-9]\\d{6})$|1","246$1",0,"246"],BD:["880","00","[1-469]\\d{9}|8[0-79]\\d{7,8}|[2-79]\\d{8}|[2-9]\\d{7}|[3-9]\\d{6}|[57-9]\\d{5}",[6,7,8,9,10],[["(\\d{2})(\\d{4,6})","$1-$2",["31[5-8]|[459]1"],"0$1"],["(\\d{3})(\\d{3,7})","$1-$2",["3(?:[67]|8[013-9])|4(?:6[168]|7|[89][18])|5(?:6[128]|9)|6(?:[15]|28|4[14])|7[2-589]|8(?:0[014-9]|[12])|9[358]|(?:3[2-5]|4[235]|5[2-578]|6[0389]|76|8[3-7]|9[24])1|(?:44|66)[01346-9]"],"0$1"],["(\\d{4})(\\d{3,6})","$1-$2",["[13-9]|22"],"0$1"],["(\\d)(\\d{7,8})","$1-$2",["2"],"0$1"]],"0"],BE:["32","00","4\\d{8}|[1-9]\\d{7}",[8,9],[["(\\d{3})(\\d{2})(\\d{3})","$1 $2 $3",["(?:80|9)0"],"0$1"],["(\\d)(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[239]|4[23]"],"0$1"],["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[15-8]"],"0$1"],["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["4"],"0$1"]],"0"],BF:["226","00","[025-7]\\d{7}",[8],[["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[025-7]"]]]],BG:["359","00","00800\\d{7}|[2-7]\\d{6,7}|[89]\\d{6,8}|2\\d{5}",[6,7,8,9,12],[["(\\d)(\\d)(\\d{2})(\\d{2})","$1 $2 $3 $4",["2"],"0$1"],["(\\d{3})(\\d{4})","$1 $2",["43[1-6]|70[1-9]"],"0$1"],["(\\d)(\\d{3})(\\d{3,4})","$1 $2 $3",["2"],"0$1"],["(\\d{2})(\\d{3})(\\d{2,3})","$1 $2 $3",["[356]|4[124-7]|7[1-9]|8[1-6]|9[1-7]"],"0$1"],["(\\d{3})(\\d{2})(\\d{3})","$1 $2 $3",["(?:70|8)0"],"0$1"],["(\\d{3})(\\d{3})(\\d{2})","$1 $2 $3",["43[1-7]|7"],"0$1"],["(\\d{2})(\\d{3})(\\d{3,4})","$1 $2 $3",["[48]|9[08]"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["9"],"0$1"]],"0"],BH:["973","00","[136-9]\\d{7}",[8],[["(\\d{4})(\\d{4})","$1 $2",["[13679]|8[02-4679]"]]]],BI:["257","00","(?:[267]\\d|31)\\d{6}",[8],[["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[2367]"]]]],BJ:["229","00","[24-689]\\d{7}",[8],[["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[24-689]"]]]],BL:["590","00","590\\d{6}|(?:69|80|9\\d)\\d{7}",[9],0,"0",0,0,0,0,0,[["590(?:2[7-9]|3[3-7]|5[12]|87)\\d{4}"],["69(?:0\\d\\d|1(?:2[2-9]|3[0-5]))\\d{4}"],["80[0-5]\\d{6}"],0,0,0,0,0,["9(?:(?:395|76[018])\\d|475[0-5])\\d{4}"]]],BM:["1","011","(?:441|[58]\\d\\d|900)\\d{7}",[10],0,"1",0,"([2-9]\\d{6})$|1","441$1",0,"441"],BN:["673","00","[2-578]\\d{6}",[7],[["(\\d{3})(\\d{4})","$1 $2",["[2-578]"]]]],BO:["591","00(?:1\\d)?","(?:[2-467]\\d\\d|8001)\\d{5}",[8,9],[["(\\d)(\\d{7})","$1 $2",["[23]|4[46]"]],["(\\d{8})","$1",["[67]"]],["(\\d{3})(\\d{2})(\\d{4})","$1 $2 $3",["8"]]],"0",0,"0(1\\d)?"],BQ:["599","00","(?:[34]1|7\\d)\\d{5}",[7],0,0,0,0,0,0,"[347]"],BR:["55","00(?:1[245]|2[1-35]|31|4[13]|[56]5|99)","(?:[1-46-9]\\d\\d|5(?:[0-46-9]\\d|5[0-46-9]))\\d{8}|[1-9]\\d{9}|[3589]\\d{8}|[34]\\d{7}",[8,9,10,11],[["(\\d{4})(\\d{4})","$1-$2",["300|4(?:0[02]|37)","4(?:02|37)0|[34]00"]],["(\\d{3})(\\d{2,3})(\\d{4})","$1 $2 $3",["(?:[358]|90)0"],"0$1"],["(\\d{2})(\\d{4})(\\d{4})","$1 $2-$3",["(?:[14689][1-9]|2[12478]|3[1-578]|5[13-5]|7[13-579])[2-57]"],"($1)"],["(\\d{2})(\\d{5})(\\d{4})","$1 $2-$3",["[16][1-9]|[2-57-9]"],"($1)"]],"0",0,"(?:0|90)(?:(1[245]|2[1-35]|31|4[13]|[56]5|99)(\\d{10,11}))?","$2"],BS:["1","011","(?:242|[58]\\d\\d|900)\\d{7}",[10],0,"1",0,"([3-8]\\d{6})$|1","242$1",0,"242"],BT:["975","00","[17]\\d{7}|[2-8]\\d{6}",[7,8],[["(\\d)(\\d{3})(\\d{3})","$1 $2 $3",["[2-68]|7[246]"]],["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["1[67]|7"]]]],BW:["267","00","(?:0800|(?:[37]|800)\\d)\\d{6}|(?:[2-6]\\d|90)\\d{5}",[7,8,10],[["(\\d{2})(\\d{5})","$1 $2",["90"]],["(\\d{3})(\\d{4})","$1 $2",["[24-6]|3[15-9]"]],["(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3",["[37]"]],["(\\d{4})(\\d{3})(\\d{3})","$1 $2 $3",["0"]],["(\\d{3})(\\d{4})(\\d{3})","$1 $2 $3",["8"]]]],BY:["375","810","(?:[12]\\d|33|44|902)\\d{7}|8(?:0[0-79]\\d{5,7}|[1-7]\\d{9})|8(?:1[0-489]|[5-79]\\d)\\d{7}|8[1-79]\\d{6,7}|8[0-79]\\d{5}|8\\d{5}",[6,7,8,9,10,11],[["(\\d{3})(\\d{3})","$1 $2",["800"],"8 $1"],["(\\d{3})(\\d{2})(\\d{2,4})","$1 $2 $3",["800"],"8 $1"],["(\\d{4})(\\d{2})(\\d{3})","$1 $2-$3",["1(?:5[169]|6[3-5]|7[179])|2(?:1[35]|2[34]|3[3-5])","1(?:5[169]|6(?:3[1-3]|4|5[125])|7(?:1[3-9]|7[0-24-6]|9[2-7]))|2(?:1[35]|2[34]|3[3-5])"],"8 0$1"],["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2-$3-$4",["1(?:[56]|7[467])|2[1-3]"],"8 0$1"],["(\\d{2})(\\d{3})(\\d{2})(\\d{2})","$1 $2-$3-$4",["[1-4]"],"8 0$1"],["(\\d{3})(\\d{3,4})(\\d{4})","$1 $2 $3",["[89]"],"8 $1"]],"8",0,"0|80?",0,0,0,0,"8~10"],BZ:["501","00","(?:0800\\d|[2-8])\\d{6}",[7,11],[["(\\d{3})(\\d{4})","$1-$2",["[2-8]"]],["(\\d)(\\d{3})(\\d{4})(\\d{3})","$1-$2-$3-$4",["0"]]]],CA:["1","011","(?:[2-8]\\d|90)\\d{8}|3\\d{6}",[7,10],0,"1",0,0,0,0,0,[["(?:2(?:04|[23]6|[48]9|50|63)|3(?:06|43|54|6[578]|82)|4(?:03|1[68]|[26]8|3[178]|50|74)|5(?:06|1[49]|48|79|8[147])|6(?:04|[18]3|39|47|72)|7(?:0[59]|42|53|78|8[02])|8(?:[06]7|19|25|73)|90[25])[2-9]\\d{6}",[10]],["",[10]],["8(?:00|33|44|55|66|77|88)[2-9]\\d{6}",[10]],["900[2-9]\\d{6}",[10]],["52(?:3(?:[2-46-9][02-9]\\d|5(?:[02-46-9]\\d|5[0-46-9]))|4(?:[2-478][02-9]\\d|5(?:[034]\\d|2[024-9]|5[0-46-9])|6(?:0[1-9]|[2-9]\\d)|9(?:[05-9]\\d|2[0-5]|49)))\\d{4}|52[34][2-9]1[02-9]\\d{4}|(?:5(?:00|2[125-9]|33|44|66|77|88)|622)[2-9]\\d{6}",[10]],0,["310\\d{4}",[7]],0,["600[2-9]\\d{6}",[10]]]],CC:["61","001[14-689]|14(?:1[14]|34|4[17]|[56]6|7[47]|88)0011","1(?:[0-79]\\d{8}(?:\\d{2})?|8[0-24-9]\\d{7})|[148]\\d{8}|1\\d{5,7}",[6,7,8,9,10,12],0,"0",0,"([59]\\d{7})$|0","8$1",0,0,[["8(?:51(?:0(?:02|31|60|89)|1(?:18|76)|223)|91(?:0(?:1[0-2]|29)|1(?:[28]2|50|79)|2(?:10|64)|3(?:[06]8|22)|4[29]8|62\\d|70[23]|959))\\d{3}",[9]],["4(?:(?:79|94)[01]|83[0-389])\\d{5}|4(?:[0-3]\\d|4[047-9]|5[0-25-9]|6[0-26-9]|7[02-8]|8[0-24-9]|9[0-37-9])\\d{6}",[9]],["180(?:0\\d{3}|2)\\d{3}",[7,10]],["190[0-26]\\d{6}",[10]],0,0,0,0,["14(?:5(?:1[0458]|[23][458])|71\\d)\\d{4}",[9]],["13(?:00\\d{6}(?:\\d{2})?|45[0-4]\\d{3})|13\\d{4}",[6,8,10,12]]],"0011"],CD:["243","00","[189]\\d{8}|[1-68]\\d{6}",[7,9],[["(\\d{2})(\\d{2})(\\d{3})","$1 $2 $3",["88"],"0$1"],["(\\d{2})(\\d{5})","$1 $2",["[1-6]"],"0$1"],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["1"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[89]"],"0$1"]],"0"],CF:["236","00","(?:[27]\\d{3}|8776)\\d{4}",[8],[["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[278]"]]]],CG:["242","00","222\\d{6}|(?:0\\d|80)\\d{7}",[9],[["(\\d)(\\d{4})(\\d{4})","$1 $2 $3",["8"]],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["[02]"]]]],CH:["41","00","8\\d{11}|[2-9]\\d{8}",[9],[["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["8[047]|90"],"0$1"],["(\\d{2})(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[2-79]|81"],"0$1"],["(\\d{3})(\\d{2})(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3 $4 $5",["8"],"0$1"]],"0"],CI:["225","00","[02]\\d{9}",[10],[["(\\d{2})(\\d{2})(\\d)(\\d{5})","$1 $2 $3 $4",["2"]],["(\\d{2})(\\d{2})(\\d{2})(\\d{4})","$1 $2 $3 $4",["0"]]]],CK:["682","00","[2-578]\\d{4}",[5],[["(\\d{2})(\\d{3})","$1 $2",["[2-578]"]]]],CL:["56","(?:0|1(?:1[0-69]|2[02-5]|5[13-58]|69|7[0167]|8[018]))0","12300\\d{6}|6\\d{9,10}|[2-9]\\d{8}",[9,10,11],[["(\\d{5})(\\d{4})","$1 $2",["219","2196"],"($1)"],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["44"]],["(\\d)(\\d{4})(\\d{4})","$1 $2 $3",["2[1-36]"],"($1)"],["(\\d)(\\d{4})(\\d{4})","$1 $2 $3",["9[2-9]"]],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["3[2-5]|[47]|5[1-3578]|6[13-57]|8(?:0[1-9]|[1-9])"],"($1)"],["(\\d{3})(\\d{3})(\\d{3,4})","$1 $2 $3",["60|8"]],["(\\d{4})(\\d{3})(\\d{4})","$1 $2 $3",["1"]],["(\\d{3})(\\d{3})(\\d{2})(\\d{3})","$1 $2 $3 $4",["60"]]]],CM:["237","00","[26]\\d{8}|88\\d{6,7}",[8,9],[["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["88"]],["(\\d)(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4 $5",["[26]|88"]]]],CN:["86","00|1(?:[12]\\d|79)\\d\\d00","1[127]\\d{8,9}|2\\d{9}(?:\\d{2})?|[12]\\d{6,7}|86\\d{6}|(?:1[03-689]\\d|6)\\d{7,9}|(?:[3-579]\\d|8[0-57-9])\\d{6,9}",[7,8,9,10,11,12],[["(\\d{2})(\\d{5,6})","$1 $2",["(?:10|2[0-57-9])[19]","(?:10|2[0-57-9])(?:10|9[56])","10(?:10|9[56])|2[0-57-9](?:100|9[56])"],"0$1"],["(\\d{3})(\\d{5,6})","$1 $2",["3(?:[157]|35|49|9[1-68])|4(?:[17]|2[179]|6[47-9]|8[23])|5(?:[1357]|2[37]|4[36]|6[1-46]|80)|6(?:3[1-5]|6[0238]|9[12])|7(?:01|[1579]|2[248]|3[014-9]|4[3-6]|6[023689])|8(?:1[236-8]|2[5-7]|[37]|8[36-8]|9[1-8])|9(?:0[1-3689]|1[1-79]|[379]|4[13]|5[1-5])|(?:4[35]|59|85)[1-9]","(?:3(?:[157]\\d|35|49|9[1-68])|4(?:[17]\\d|2[179]|[35][1-9]|6[47-9]|8[23])|5(?:[1357]\\d|2[37]|4[36]|6[1-46]|80|9[1-9])|6(?:3[1-5]|6[0238]|9[12])|7(?:01|[1579]\\d|2[248]|3[014-9]|4[3-6]|6[023689])|8(?:1[236-8]|2[5-7]|[37]\\d|5[1-9]|8[36-8]|9[1-8])|9(?:0[1-3689]|1[1-79]|[379]\\d|4[13]|5[1-5]))[19]","85[23](?:10|95)|(?:3(?:[157]\\d|35|49|9[1-68])|4(?:[17]\\d|2[179]|[35][1-9]|6[47-9]|8[23])|5(?:[1357]\\d|2[37]|4[36]|6[1-46]|80|9[1-9])|6(?:3[1-5]|6[0238]|9[12])|7(?:01|[1579]\\d|2[248]|3[014-9]|4[3-6]|6[023689])|8(?:1[236-8]|2[5-7]|[37]\\d|5[14-9]|8[36-8]|9[1-8])|9(?:0[1-3689]|1[1-79]|[379]\\d|4[13]|5[1-5]))(?:10|9[56])","85[23](?:100|95)|(?:3(?:[157]\\d|35|49|9[1-68])|4(?:[17]\\d|2[179]|[35][1-9]|6[47-9]|8[23])|5(?:[1357]\\d|2[37]|4[36]|6[1-46]|80|9[1-9])|6(?:3[1-5]|6[0238]|9[12])|7(?:01|[1579]\\d|2[248]|3[014-9]|4[3-6]|6[023689])|8(?:1[236-8]|2[5-7]|[37]\\d|5[14-9]|8[36-8]|9[1-8])|9(?:0[1-3689]|1[1-79]|[379]\\d|4[13]|5[1-5]))(?:100|9[56])"],"0$1"],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["(?:4|80)0"]],["(\\d{2})(\\d{4})(\\d{4})","$1 $2 $3",["10|2(?:[02-57-9]|1[1-9])","10|2(?:[02-57-9]|1[1-9])","10[0-79]|2(?:[02-57-9]|1[1-79])|(?:10|21)8(?:0[1-9]|[1-9])"],"0$1",1],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["3(?:[3-59]|7[02-68])|4(?:[26-8]|3[3-9]|5[2-9])|5(?:3[03-9]|[468]|7[028]|9[2-46-9])|6|7(?:[0-247]|3[04-9]|5[0-4689]|6[2368])|8(?:[1-358]|9[1-7])|9(?:[013479]|5[1-5])|(?:[34]1|55|79|87)[02-9]"],"0$1",1],["(\\d{3})(\\d{7,8})","$1 $2",["9"]],["(\\d{4})(\\d{3})(\\d{4})","$1 $2 $3",["80"],"0$1",1],["(\\d{3})(\\d{4})(\\d{4})","$1 $2 $3",["[3-578]"],"0$1",1],["(\\d{3})(\\d{4})(\\d{4})","$1 $2 $3",["1[3-9]"]],["(\\d{2})(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3 $4",["[12]"],"0$1",1]],"0",0,"(1(?:[12]\\d|79)\\d\\d)|0",0,0,0,0,"00"],CO:["57","00(?:4(?:[14]4|56)|[579])","(?:60\\d\\d|9101)\\d{6}|(?:1\\d|3)\\d{9}",[10,11],[["(\\d{3})(\\d{7})","$1 $2",["6"],"($1)"],["(\\d{3})(\\d{7})","$1 $2",["3[0-357]|91"]],["(\\d)(\\d{3})(\\d{7})","$1-$2-$3",["1"],"0$1",0,"$1 $2 $3"]],"0",0,"0([3579]|4(?:[14]4|56))?"],CR:["506","00","(?:8\\d|90)\\d{8}|(?:[24-8]\\d{3}|3005)\\d{4}",[8,10],[["(\\d{4})(\\d{4})","$1 $2",["[2-7]|8[3-9]"]],["(\\d{3})(\\d{3})(\\d{4})","$1-$2-$3",["[89]"]]],0,0,"(19(?:0[0-2468]|1[09]|20|66|77|99))"],CU:["53","119","[27]\\d{6,7}|[34]\\d{5,7}|63\\d{6}|(?:5|8\\d\\d)\\d{7}",[6,7,8,10],[["(\\d{2})(\\d{4,6})","$1 $2",["2[1-4]|[34]"],"(0$1)"],["(\\d)(\\d{6,7})","$1 $2",["7"],"(0$1)"],["(\\d)(\\d{7})","$1 $2",["[56]"],"0$1"],["(\\d{3})(\\d{7})","$1 $2",["8"],"0$1"]],"0"],CV:["238","0","(?:[2-59]\\d\\d|800)\\d{4}",[7],[["(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3",["[2-589]"]]]],CW:["599","00","(?:[34]1|60|(?:7|9\\d)\\d)\\d{5}",[7,8],[["(\\d{3})(\\d{4})","$1 $2",["[3467]"]],["(\\d)(\\d{3})(\\d{4})","$1 $2 $3",["9[4-8]"]]],0,0,0,0,0,"[69]"],CX:["61","001[14-689]|14(?:1[14]|34|4[17]|[56]6|7[47]|88)0011","1(?:[0-79]\\d{8}(?:\\d{2})?|8[0-24-9]\\d{7})|[148]\\d{8}|1\\d{5,7}",[6,7,8,9,10,12],0,"0",0,"([59]\\d{7})$|0","8$1",0,0,[["8(?:51(?:0(?:01|30|59|88)|1(?:17|46|75)|2(?:22|35))|91(?:00[6-9]|1(?:[28]1|49|78)|2(?:09|63)|3(?:12|26|75)|4(?:56|97)|64\\d|7(?:0[01]|1[0-2])|958))\\d{3}",[9]],["4(?:(?:79|94)[01]|83[0-389])\\d{5}|4(?:[0-3]\\d|4[047-9]|5[0-25-9]|6[0-26-9]|7[02-8]|8[0-24-9]|9[0-37-9])\\d{6}",[9]],["180(?:0\\d{3}|2)\\d{3}",[7,10]],["190[0-26]\\d{6}",[10]],0,0,0,0,["14(?:5(?:1[0458]|[23][458])|71\\d)\\d{4}",[9]],["13(?:00\\d{6}(?:\\d{2})?|45[0-4]\\d{3})|13\\d{4}",[6,8,10,12]]],"0011"],CY:["357","00","(?:[279]\\d|[58]0)\\d{6}",[8],[["(\\d{2})(\\d{6})","$1 $2",["[257-9]"]]]],CZ:["420","00","(?:[2-578]\\d|60)\\d{7}|9\\d{8,11}",[9],[["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[2-8]|9[015-7]"]],["(\\d{2})(\\d{3})(\\d{3})(\\d{2})","$1 $2 $3 $4",["96"]],["(\\d{2})(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3 $4",["9"]],["(\\d{3})(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3 $4",["9"]]]],DE:["49","00","[2579]\\d{5,14}|49(?:[34]0|69|8\\d)\\d\\d?|49(?:37|49|60|7[089]|9\\d)\\d{1,3}|49(?:2[024-9]|3[2-689]|7[1-7])\\d{1,8}|(?:1|[368]\\d|4[0-8])\\d{3,13}|49(?:[015]\\d|2[13]|31|[46][1-8])\\d{1,9}",[4,5,6,7,8,9,10,11,12,13,14,15],[["(\\d{2})(\\d{3,13})","$1 $2",["3[02]|40|[68]9"],"0$1"],["(\\d{3})(\\d{3,12})","$1 $2",["2(?:0[1-389]|1[124]|2[18]|3[14])|3(?:[35-9][15]|4[015])|906|(?:2[4-9]|4[2-9]|[579][1-9]|[68][1-8])1","2(?:0[1-389]|12[0-8])|3(?:[35-9][15]|4[015])|906|2(?:[13][14]|2[18])|(?:2[4-9]|4[2-9]|[579][1-9]|[68][1-8])1"],"0$1"],["(\\d{4})(\\d{2,11})","$1 $2",["[24-6]|3(?:[3569][02-46-9]|4[2-4679]|7[2-467]|8[2-46-8])|70[2-8]|8(?:0[2-9]|[1-8])|90[7-9]|[79][1-9]","[24-6]|3(?:3(?:0[1-467]|2[127-9]|3[124578]|7[1257-9]|8[1256]|9[145])|4(?:2[135]|4[13578]|9[1346])|5(?:0[14]|2[1-3589]|6[1-4]|7[13468]|8[13568])|6(?:2[1-489]|3[124-6]|6[13]|7[12579]|8[1-356]|9[135])|7(?:2[1-7]|4[145]|6[1-5]|7[1-4])|8(?:21|3[1468]|6|7[1467]|8[136])|9(?:0[12479]|2[1358]|4[134679]|6[1-9]|7[136]|8[147]|9[1468]))|70[2-8]|8(?:0[2-9]|[1-8])|90[7-9]|[79][1-9]|3[68]4[1347]|3(?:47|60)[1356]|3(?:3[46]|46|5[49])[1246]|3[4579]3[1357]"],"0$1"],["(\\d{3})(\\d{4})","$1 $2",["138"],"0$1"],["(\\d{5})(\\d{2,10})","$1 $2",["3"],"0$1"],["(\\d{3})(\\d{5,11})","$1 $2",["181"],"0$1"],["(\\d{3})(\\d)(\\d{4,10})","$1 $2 $3",["1(?:3|80)|9"],"0$1"],["(\\d{3})(\\d{7,8})","$1 $2",["1[67]"],"0$1"],["(\\d{3})(\\d{7,12})","$1 $2",["8"],"0$1"],["(\\d{5})(\\d{6})","$1 $2",["185","1850","18500"],"0$1"],["(\\d{3})(\\d{4})(\\d{4})","$1 $2 $3",["7"],"0$1"],["(\\d{4})(\\d{7})","$1 $2",["18[68]"],"0$1"],["(\\d{5})(\\d{6})","$1 $2",["15[0568]"],"0$1"],["(\\d{4})(\\d{7})","$1 $2",["15[1279]"],"0$1"],["(\\d{3})(\\d{8})","$1 $2",["18"],"0$1"],["(\\d{3})(\\d{2})(\\d{7,8})","$1 $2 $3",["1(?:6[023]|7)"],"0$1"],["(\\d{4})(\\d{2})(\\d{7})","$1 $2 $3",["15[279]"],"0$1"],["(\\d{3})(\\d{2})(\\d{8})","$1 $2 $3",["15"],"0$1"]],"0"],DJ:["253","00","(?:2\\d|77)\\d{6}",[8],[["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[27]"]]]],DK:["45","00","[2-9]\\d{7}",[8],[["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[2-9]"]]]],DM:["1","011","(?:[58]\\d\\d|767|900)\\d{7}",[10],0,"1",0,"([2-7]\\d{6})$|1","767$1",0,"767"],DO:["1","011","(?:[58]\\d\\d|900)\\d{7}",[10],0,"1",0,0,0,0,"8001|8[024]9"],DZ:["213","00","(?:[1-4]|[5-79]\\d|80)\\d{7}",[8,9],[["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[1-4]"],"0$1"],["(\\d{2})(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3 $4",["9"],"0$1"],["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[5-8]"],"0$1"]],"0"],EC:["593","00","1\\d{9,10}|(?:[2-7]|9\\d)\\d{7}",[8,9,10,11],[["(\\d)(\\d{3})(\\d{4})","$1 $2-$3",["[2-7]"],"(0$1)",0,"$1-$2-$3"],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["9"],"0$1"],["(\\d{4})(\\d{3})(\\d{3,4})","$1 $2 $3",["1"]]],"0"],EE:["372","00","8\\d{9}|[4578]\\d{7}|(?:[3-8]\\d|90)\\d{5}",[7,8,10],[["(\\d{3})(\\d{4})","$1 $2",["[369]|4[3-8]|5(?:[0-2]|5[0-478]|6[45])|7[1-9]|88","[369]|4[3-8]|5(?:[02]|1(?:[0-8]|95)|5[0-478]|6(?:4[0-4]|5[1-589]))|7[1-9]|88"]],["(\\d{4})(\\d{3,4})","$1 $2",["[45]|8(?:00|[1-49])","[45]|8(?:00[1-9]|[1-49])"]],["(\\d{2})(\\d{2})(\\d{4})","$1 $2 $3",["7"]],["(\\d{4})(\\d{3})(\\d{3})","$1 $2 $3",["8"]]]],EG:["20","00","[189]\\d{8,9}|[24-6]\\d{8}|[135]\\d{7}",[8,9,10],[["(\\d)(\\d{7,8})","$1 $2",["[23]"],"0$1"],["(\\d{2})(\\d{6,7})","$1 $2",["1[35]|[4-6]|8[2468]|9[235-7]"],"0$1"],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["[89]"],"0$1"],["(\\d{2})(\\d{8})","$1 $2",["1"],"0$1"]],"0"],EH:["212","00","[5-8]\\d{8}",[9],0,"0",0,0,0,0,"528[89]"],ER:["291","00","[178]\\d{6}",[7],[["(\\d)(\\d{3})(\\d{3})","$1 $2 $3",["[178]"],"0$1"]],"0"],ES:["34","00","[5-9]\\d{8}",[9],[["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[89]00"]],["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[5-9]"]]]],ET:["251","00","(?:11|[2-579]\\d)\\d{7}",[9],[["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["[1-579]"],"0$1"]],"0"],FI:["358","00|99(?:[01469]|5(?:[14]1|3[23]|5[59]|77|88|9[09]))","[1-35689]\\d{4}|7\\d{10,11}|(?:[124-7]\\d|3[0-46-9])\\d{8}|[1-9]\\d{5,8}",[5,6,7,8,9,10,11,12],[["(\\d)(\\d{4,9})","$1 $2",["[2568][1-8]|3(?:0[1-9]|[1-9])|9"],"0$1"],["(\\d{3})(\\d{3,7})","$1 $2",["[12]00|[368]|70[07-9]"],"0$1"],["(\\d{2})(\\d{4,8})","$1 $2",["[1245]|7[135]"],"0$1"],["(\\d{2})(\\d{6,10})","$1 $2",["7"],"0$1"]],"0",0,0,0,0,"1[03-79]|[2-9]",0,"00"],FJ:["679","0(?:0|52)","45\\d{5}|(?:0800\\d|[235-9])\\d{6}",[7,11],[["(\\d{3})(\\d{4})","$1 $2",["[235-9]|45"]],["(\\d{4})(\\d{3})(\\d{4})","$1 $2 $3",["0"]]],0,0,0,0,0,0,0,"00"],FK:["500","00","[2-7]\\d{4}",[5]],FM:["691","00","(?:[39]\\d\\d|820)\\d{4}",[7],[["(\\d{3})(\\d{4})","$1 $2",["[389]"]]]],FO:["298","00","[2-9]\\d{5}",[6],[["(\\d{6})","$1",["[2-9]"]]],0,0,"(10(?:01|[12]0|88))"],FR:["33","00","[1-9]\\d{8}",[9],[["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["8"],"0 $1"],["(\\d)(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4 $5",["[1-79]"],"0$1"]],"0"],GA:["241","00","(?:[067]\\d|11)\\d{6}|[2-7]\\d{6}",[7,8],[["(\\d)(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[2-7]"],"0$1"],["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["0"]],["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["11|[67]"],"0$1"]],0,0,"0(11\\d{6}|60\\d{6}|61\\d{6}|6[256]\\d{6}|7[467]\\d{6})","$1"],GB:["44","00","[1-357-9]\\d{9}|[18]\\d{8}|8\\d{6}",[7,9,10],[["(\\d{3})(\\d{4})","$1 $2",["800","8001","80011","800111","8001111"],"0$1"],["(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3",["845","8454","84546","845464"],"0$1"],["(\\d{3})(\\d{6})","$1 $2",["800"],"0$1"],["(\\d{5})(\\d{4,5})","$1 $2",["1(?:38|5[23]|69|76|94)","1(?:(?:38|69)7|5(?:24|39)|768|946)","1(?:3873|5(?:242|39[4-6])|(?:697|768)[347]|9467)"],"0$1"],["(\\d{4})(\\d{5,6})","$1 $2",["1(?:[2-69][02-9]|[78])"],"0$1"],["(\\d{2})(\\d{4})(\\d{4})","$1 $2 $3",["[25]|7(?:0|6[02-9])","[25]|7(?:0|6(?:[03-9]|2[356]))"],"0$1"],["(\\d{4})(\\d{6})","$1 $2",["7"],"0$1"],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["[1389]"],"0$1"]],"0",0,0,0,0,0,[["(?:1(?:1(?:3(?:[0-58]\\d\\d|73[0235])|4(?:[0-5]\\d\\d|69[7-9]|70[0-79])|(?:(?:5[0-26-9]|[78][0-49])\\d|6(?:[0-4]\\d|50))\\d)|(?:2(?:(?:0[024-9]|2[3-9]|3[3-79]|4[1-689]|[58][02-9]|6[0-47-9]|7[013-9]|9\\d)\\d|1(?:[0-7]\\d|8[0-2]))|(?:3(?:0\\d|1[0-8]|[25][02-9]|3[02-579]|[468][0-46-9]|7[1-35-79]|9[2-578])|4(?:0[03-9]|[137]\\d|[28][02-57-9]|4[02-69]|5[0-8]|[69][0-79])|5(?:0[1-35-9]|[16]\\d|2[024-9]|3[015689]|4[02-9]|5[03-9]|7[0-35-9]|8[0-468]|9[0-57-9])|6(?:0[034689]|1\\d|2[0-35689]|[38][013-9]|4[1-467]|5[0-69]|6[13-9]|7[0-8]|9[0-24578])|7(?:0[0246-9]|2\\d|3[0236-8]|4[03-9]|5[0-46-9]|6[013-9]|7[0-35-9]|8[024-9]|9[02-9])|8(?:0[35-9]|2[1-57-9]|3[02-578]|4[0-578]|5[124-9]|6[2-69]|7\\d|8[02-9]|9[02569])|9(?:0[02-589]|[18]\\d|2[02-689]|3[1-57-9]|4[2-9]|5[0-579]|6[2-47-9]|7[0-24578]|9[2-57]))\\d)\\d)|2(?:0[013478]|3[0189]|4[017]|8[0-46-9]|9[0-2])\\d{3})\\d{4}|1(?:2(?:0(?:46[1-4]|87[2-9])|545[1-79]|76(?:2\\d|3[1-8]|6[1-6])|9(?:7(?:2[0-4]|3[2-5])|8(?:2[2-8]|7[0-47-9]|8[3-5])))|3(?:6(?:38[2-5]|47[23])|8(?:47[04-9]|64[0157-9]))|4(?:044[1-7]|20(?:2[23]|8\\d)|6(?:0(?:30|5[2-57]|6[1-8]|7[2-8])|140)|8(?:052|87[1-3]))|5(?:2(?:4(?:3[2-79]|6\\d)|76\\d)|6(?:26[06-9]|686))|6(?:06(?:4\\d|7[4-79])|295[5-7]|35[34]\\d|47(?:24|61)|59(?:5[08]|6[67]|74)|9(?:55[0-4]|77[23]))|7(?:26(?:6[13-9]|7[0-7])|(?:442|688)\\d|50(?:2[0-3]|[3-68]2|76))|8(?:27[56]\\d|37(?:5[2-5]|8[239])|843[2-58])|9(?:0(?:0(?:6[1-8]|85)|52\\d)|3583|4(?:66[1-8]|9(?:2[01]|81))|63(?:23|3[1-4])|9561))\\d{3}",[9,10]],["7(?:457[0-57-9]|700[01]|911[028])\\d{5}|7(?:[1-3]\\d\\d|4(?:[0-46-9]\\d|5[0-689])|5(?:0[0-8]|[13-9]\\d|2[0-35-9])|7(?:0[1-9]|[1-7]\\d|8[02-9]|9[0-689])|8(?:[014-9]\\d|[23][0-8])|9(?:[024-9]\\d|1[02-9]|3[0-689]))\\d{6}",[10]],["80[08]\\d{7}|800\\d{6}|8001111"],["(?:8(?:4[2-5]|7[0-3])|9(?:[01]\\d|8[2-49]))\\d{7}|845464\\d",[7,10]],["70\\d{8}",[10]],0,["(?:3[0347]|55)\\d{8}",[10]],["76(?:464|652)\\d{5}|76(?:0[0-28]|2[356]|34|4[01347]|5[49]|6[0-369]|77|8[14]|9[139])\\d{6}",[10]],["56\\d{8}",[10]]],0," x"],GD:["1","011","(?:473|[58]\\d\\d|900)\\d{7}",[10],0,"1",0,"([2-9]\\d{6})$|1","473$1",0,"473"],GE:["995","00","(?:[3-57]\\d\\d|800)\\d{6}",[9],[["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["70"],"0$1"],["(\\d{2})(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3 $4",["32"],"0$1"],["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[57]"]],["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[348]"],"0$1"]],"0"],GF:["594","00","[56]94\\d{6}|(?:80|9\\d)\\d{7}",[9],[["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[56]|9[47]"],"0$1"],["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[89]"],"0$1"]],"0"],GG:["44","00","(?:1481|[357-9]\\d{3})\\d{6}|8\\d{6}(?:\\d{2})?",[7,9,10],0,"0",0,"([25-9]\\d{5})$|0","1481$1",0,0,[["1481[25-9]\\d{5}",[10]],["7(?:(?:781|839)\\d|911[17])\\d{5}",[10]],["80[08]\\d{7}|800\\d{6}|8001111"],["(?:8(?:4[2-5]|7[0-3])|9(?:[01]\\d|8[0-3]))\\d{7}|845464\\d",[7,10]],["70\\d{8}",[10]],0,["(?:3[0347]|55)\\d{8}",[10]],["76(?:464|652)\\d{5}|76(?:0[0-28]|2[356]|34|4[01347]|5[49]|6[0-369]|77|8[14]|9[139])\\d{6}",[10]],["56\\d{8}",[10]]]],GH:["233","00","(?:[235]\\d{3}|800)\\d{5}",[8,9],[["(\\d{3})(\\d{5})","$1 $2",["8"],"0$1"],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["[235]"],"0$1"]],"0"],GI:["350","00","(?:[25]\\d|60)\\d{6}",[8],[["(\\d{3})(\\d{5})","$1 $2",["2"]]]],GL:["299","00","(?:19|[2-689]\\d|70)\\d{4}",[6],[["(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3",["19|[2-9]"]]]],GM:["220","00","[2-9]\\d{6}",[7],[["(\\d{3})(\\d{4})","$1 $2",["[2-9]"]]]],GN:["224","00","722\\d{6}|(?:3|6\\d)\\d{7}",[8,9],[["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["3"]],["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[67]"]]]],GP:["590","00","590\\d{6}|(?:69|80|9\\d)\\d{7}",[9],[["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[569]"],"0$1"],["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["8"],"0$1"]],"0",0,0,0,0,0,[["590(?:0[1-68]|[14][0-24-9]|2[0-68]|3[1-9]|5[3-579]|[68][0-689]|7[08]|9\\d)\\d{4}"],["69(?:0\\d\\d|1(?:2[2-9]|3[0-5]))\\d{4}"],["80[0-5]\\d{6}"],0,0,0,0,0,["9(?:(?:395|76[018])\\d|475[0-5])\\d{4}"]]],GQ:["240","00","222\\d{6}|(?:3\\d|55|[89]0)\\d{7}",[9],[["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[235]"]],["(\\d{3})(\\d{6})","$1 $2",["[89]"]]]],GR:["30","00","5005000\\d{3}|8\\d{9,11}|(?:[269]\\d|70)\\d{8}",[10,11,12],[["(\\d{2})(\\d{4})(\\d{4})","$1 $2 $3",["21|7"]],["(\\d{4})(\\d{6})","$1 $2",["2(?:2|3[2-57-9]|4[2-469]|5[2-59]|6[2-9]|7[2-69]|8[2-49])|5"]],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["[2689]"]],["(\\d{3})(\\d{3,4})(\\d{5})","$1 $2 $3",["8"]]]],GT:["502","00","80\\d{6}|(?:1\\d{3}|[2-7])\\d{7}",[8,11],[["(\\d{4})(\\d{4})","$1 $2",["[2-8]"]],["(\\d{4})(\\d{3})(\\d{4})","$1 $2 $3",["1"]]]],GU:["1","011","(?:[58]\\d\\d|671|900)\\d{7}",[10],0,"1",0,"([2-9]\\d{6})$|1","671$1",0,"671"],GW:["245","00","[49]\\d{8}|4\\d{6}",[7,9],[["(\\d{3})(\\d{4})","$1 $2",["40"]],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[49]"]]]],GY:["592","001","(?:[2-8]\\d{3}|9008)\\d{3}",[7],[["(\\d{3})(\\d{4})","$1 $2",["[2-9]"]]]],HK:["852","00(?:30|5[09]|[126-9]?)","8[0-46-9]\\d{6,7}|9\\d{4,7}|(?:[2-7]|9\\d{3})\\d{7}",[5,6,7,8,9,11],[["(\\d{3})(\\d{2,5})","$1 $2",["900","9003"]],["(\\d{4})(\\d{4})","$1 $2",["[2-7]|8[1-4]|9(?:0[1-9]|[1-8])"]],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["8"]],["(\\d{3})(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3 $4",["9"]]],0,0,0,0,0,0,0,"00"],HN:["504","00","8\\d{10}|[237-9]\\d{7}",[8,11],[["(\\d{4})(\\d{4})","$1-$2",["[237-9]"]]]],HR:["385","00","(?:[24-69]\\d|3[0-79])\\d{7}|80\\d{5,7}|[1-79]\\d{7}|6\\d{5,6}",[6,7,8,9],[["(\\d{2})(\\d{2})(\\d{2,3})","$1 $2 $3",["6[01]"],"0$1"],["(\\d{3})(\\d{2})(\\d{2,3})","$1 $2 $3",["8"],"0$1"],["(\\d)(\\d{4})(\\d{3})","$1 $2 $3",["1"],"0$1"],["(\\d{2})(\\d{3})(\\d{3,4})","$1 $2 $3",["[67]"],"0$1"],["(\\d{2})(\\d{3})(\\d{3,4})","$1 $2 $3",["9"],"0$1"],["(\\d{2})(\\d{3})(\\d{3,4})","$1 $2 $3",["[2-5]"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["8"],"0$1"]],"0"],HT:["509","00","(?:[2-489]\\d|55)\\d{6}",[8],[["(\\d{2})(\\d{2})(\\d{4})","$1 $2 $3",["[2-589]"]]]],HU:["36","00","[235-7]\\d{8}|[1-9]\\d{7}",[8,9],[["(\\d)(\\d{3})(\\d{4})","$1 $2 $3",["1"],"(06 $1)"],["(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3",["[27][2-9]|3[2-7]|4[24-9]|5[2-79]|6|8[2-57-9]|9[2-69]"],"(06 $1)"],["(\\d{2})(\\d{3})(\\d{3,4})","$1 $2 $3",["[2-9]"],"06 $1"]],"06"],ID:["62","00[89]","(?:(?:00[1-9]|8\\d)\\d{4}|[1-36])\\d{6}|00\\d{10}|[1-9]\\d{8,10}|[2-9]\\d{7}",[7,8,9,10,11,12,13],[["(\\d)(\\d{3})(\\d{3})","$1 $2 $3",["15"]],["(\\d{2})(\\d{5,9})","$1 $2",["2[124]|[36]1"],"(0$1)"],["(\\d{3})(\\d{5,7})","$1 $2",["800"],"0$1"],["(\\d{3})(\\d{5,8})","$1 $2",["[2-79]"],"(0$1)"],["(\\d{3})(\\d{3,4})(\\d{3})","$1-$2-$3",["8[1-35-9]"],"0$1"],["(\\d{3})(\\d{6,8})","$1 $2",["1"],"0$1"],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["804"],"0$1"],["(\\d{3})(\\d)(\\d{3})(\\d{3})","$1 $2 $3 $4",["80"],"0$1"],["(\\d{3})(\\d{4})(\\d{4,5})","$1-$2-$3",["8"],"0$1"]],"0"],IE:["353","00","(?:1\\d|[2569])\\d{6,8}|4\\d{6,9}|7\\d{8}|8\\d{8,9}",[7,8,9,10],[["(\\d{2})(\\d{5})","$1 $2",["2[24-9]|47|58|6[237-9]|9[35-9]"],"(0$1)"],["(\\d{3})(\\d{5})","$1 $2",["[45]0"],"(0$1)"],["(\\d)(\\d{3,4})(\\d{4})","$1 $2 $3",["1"],"(0$1)"],["(\\d{2})(\\d{3})(\\d{3,4})","$1 $2 $3",["[2569]|4[1-69]|7[14]"],"(0$1)"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["70"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["81"],"(0$1)"],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["[78]"],"0$1"],["(\\d{4})(\\d{3})(\\d{3})","$1 $2 $3",["1"]],["(\\d{2})(\\d{4})(\\d{4})","$1 $2 $3",["4"],"(0$1)"],["(\\d{2})(\\d)(\\d{3})(\\d{4})","$1 $2 $3 $4",["8"],"0$1"]],"0"],IL:["972","0(?:0|1[2-9])","1\\d{6}(?:\\d{3,5})?|[57]\\d{8}|[1-489]\\d{7}",[7,8,9,10,11,12],[["(\\d{4})(\\d{3})","$1-$2",["125"]],["(\\d{4})(\\d{2})(\\d{2})","$1-$2-$3",["121"]],["(\\d)(\\d{3})(\\d{4})","$1-$2-$3",["[2-489]"],"0$1"],["(\\d{2})(\\d{3})(\\d{4})","$1-$2-$3",["[57]"],"0$1"],["(\\d{4})(\\d{3})(\\d{3})","$1-$2-$3",["12"]],["(\\d{4})(\\d{6})","$1-$2",["159"]],["(\\d)(\\d{3})(\\d{3})(\\d{3})","$1-$2-$3-$4",["1[7-9]"]],["(\\d{3})(\\d{1,2})(\\d{3})(\\d{4})","$1-$2 $3-$4",["15"]]],"0"],IM:["44","00","1624\\d{6}|(?:[3578]\\d|90)\\d{8}",[10],0,"0",0,"([25-8]\\d{5})$|0","1624$1",0,"74576|(?:16|7[56])24"],IN:["91","00","(?:000800|[2-9]\\d\\d)\\d{7}|1\\d{7,12}",[8,9,10,11,12,13],[["(\\d{8})","$1",["5(?:0|2[23]|3[03]|[67]1|88)","5(?:0|2(?:21|3)|3(?:0|3[23])|616|717|888)","5(?:0|2(?:21|3)|3(?:0|3[23])|616|717|8888)"],0,1],["(\\d{4})(\\d{4,5})","$1 $2",["180","1800"],0,1],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["140"],0,1],["(\\d{2})(\\d{4})(\\d{4})","$1 $2 $3",["11|2[02]|33|4[04]|79[1-7]|80[2-46]","11|2[02]|33|4[04]|79(?:[1-6]|7[19])|80(?:[2-4]|6[0-589])","11|2[02]|33|4[04]|79(?:[124-6]|3(?:[02-9]|1[0-24-9])|7(?:1|9[1-6]))|80(?:[2-4]|6[0-589])"],"0$1",1],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["1(?:2[0-249]|3[0-25]|4[145]|[68]|7[1257])|2(?:1[257]|3[013]|4[01]|5[0137]|6[0158]|78|8[1568])|3(?:26|4[1-3]|5[34]|6[01489]|7[02-46]|8[159])|4(?:1[36]|2[1-47]|5[12]|6[0-26-9]|7[0-24-9]|8[013-57]|9[014-7])|5(?:1[025]|22|[36][25]|4[28]|5[12]|[78]1)|6(?:12|[2-4]1|5[17]|6[13]|80)|7(?:12|3[134]|4[47]|61|88)|8(?:16|2[014]|3[126]|6[136]|7[078]|8[34]|91)|(?:43|59|75)[15]|(?:1[59]|29|67|72)[14]","1(?:2[0-24]|3[0-25]|4[145]|[59][14]|6[1-9]|7[1257]|8[1-57-9])|2(?:1[257]|3[013]|4[01]|5[0137]|6[058]|78|8[1568]|9[14])|3(?:26|4[1-3]|5[34]|6[01489]|7[02-46]|8[159])|4(?:1[36]|2[1-47]|3[15]|5[12]|6[0-26-9]|7[0-24-9]|8[013-57]|9[014-7])|5(?:1[025]|22|[36][25]|4[28]|[578]1|9[15])|674|7(?:(?:2[14]|3[34]|5[15])[2-6]|61[346]|88[0-8])|8(?:70[2-6]|84[235-7]|91[3-7])|(?:1(?:29|60|8[06])|261|552|6(?:12|[2-47]1|5[17]|6[13]|80)|7(?:12|31|4[47])|8(?:16|2[014]|3[126]|6[136]|7[78]|83))[2-7]","1(?:2[0-24]|3[0-25]|4[145]|[59][14]|6[1-9]|7[1257]|8[1-57-9])|2(?:1[257]|3[013]|4[01]|5[0137]|6[058]|78|8[1568]|9[14])|3(?:26|4[1-3]|5[34]|6[01489]|7[02-46]|8[159])|4(?:1[36]|2[1-47]|3[15]|5[12]|6[0-26-9]|7[0-24-9]|8[013-57]|9[014-7])|5(?:1[025]|22|[36][25]|4[28]|[578]1|9[15])|6(?:12(?:[2-6]|7[0-8])|74[2-7])|7(?:(?:2[14]|5[15])[2-6]|3171|61[346]|88(?:[2-7]|82))|8(?:70[2-6]|84(?:[2356]|7[19])|91(?:[3-6]|7[19]))|73[134][2-6]|(?:74[47]|8(?:16|2[014]|3[126]|6[136]|7[78]|83))(?:[2-6]|7[19])|(?:1(?:29|60|8[06])|261|552|6(?:[2-4]1|5[17]|6[13]|7(?:1|4[0189])|80)|7(?:12|88[01]))[2-7]"],"0$1",1],["(\\d{4})(\\d{3})(\\d{3})","$1 $2 $3",["1(?:[2-479]|5[0235-9])|[2-5]|6(?:1[1358]|2[2457-9]|3[2-5]|4[235-7]|5[2-689]|6[24578]|7[235689]|8[1-6])|7(?:1[013-9]|28|3[129]|4[1-35689]|5[29]|6[02-5]|70)|807","1(?:[2-479]|5[0235-9])|[2-5]|6(?:1[1358]|2(?:[2457]|84|95)|3(?:[2-4]|55)|4[235-7]|5[2-689]|6[24578]|7[235689]|8[1-6])|7(?:1(?:[013-8]|9[6-9])|28[6-8]|3(?:17|2[0-49]|9[2-57])|4(?:1[2-4]|[29][0-7]|3[0-8]|[56]|8[0-24-7])|5(?:2[1-3]|9[0-6])|6(?:0[5689]|2[5-9]|3[02-8]|4|5[0-367])|70[13-7])|807[19]","1(?:[2-479]|5(?:[0236-9]|5[013-9]))|[2-5]|6(?:2(?:84|95)|355|83)|73179|807(?:1|9[1-3])|(?:1552|6(?:1[1358]|2[2457]|3[2-4]|4[235-7]|5[2-689]|6[24578]|7[235689]|8[124-6])\\d|7(?:1(?:[013-8]\\d|9[6-9])|28[6-8]|3(?:2[0-49]|9[2-57])|4(?:1[2-4]|[29][0-7]|3[0-8]|[56]\\d|8[0-24-7])|5(?:2[1-3]|9[0-6])|6(?:0[5689]|2[5-9]|3[02-8]|4\\d|5[0-367])|70[13-7]))[2-7]"],"0$1",1],["(\\d{5})(\\d{5})","$1 $2",["[6-9]"],"0$1",1],["(\\d{4})(\\d{2,4})(\\d{4})","$1 $2 $3",["1(?:6|8[06])","1(?:6|8[06]0)"],0,1],["(\\d{4})(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3 $4",["18"],0,1]],"0"],IO:["246","00","3\\d{6}",[7],[["(\\d{3})(\\d{4})","$1 $2",["3"]]]],IQ:["964","00","(?:1|7\\d\\d)\\d{7}|[2-6]\\d{7,8}",[8,9,10],[["(\\d)(\\d{3})(\\d{4})","$1 $2 $3",["1"],"0$1"],["(\\d{2})(\\d{3})(\\d{3,4})","$1 $2 $3",["[2-6]"],"0$1"],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["7"],"0$1"]],"0"],IR:["98","00","[1-9]\\d{9}|(?:[1-8]\\d\\d|9)\\d{3,4}",[4,5,6,7,10],[["(\\d{4,5})","$1",["96"],"0$1"],["(\\d{2})(\\d{4,5})","$1 $2",["(?:1[137]|2[13-68]|3[1458]|4[145]|5[1468]|6[16]|7[1467]|8[13467])[12689]"],"0$1"],["(\\d{3})(\\d{3})(\\d{3,4})","$1 $2 $3",["9"],"0$1"],["(\\d{2})(\\d{4})(\\d{4})","$1 $2 $3",["[1-8]"],"0$1"]],"0"],IS:["354","00|1(?:0(?:01|[12]0)|100)","(?:38\\d|[4-9])\\d{6}",[7,9],[["(\\d{3})(\\d{4})","$1 $2",["[4-9]"]],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["3"]]],0,0,0,0,0,0,0,"00"],IT:["39","00","0\\d{5,10}|1\\d{8,10}|3(?:[0-8]\\d{7,10}|9\\d{7,8})|(?:55|70)\\d{8}|8\\d{5}(?:\\d{2,4})?",[6,7,8,9,10,11],[["(\\d{2})(\\d{4,6})","$1 $2",["0[26]"]],["(\\d{3})(\\d{3,6})","$1 $2",["0[13-57-9][0159]|8(?:03|4[17]|9[2-5])","0[13-57-9][0159]|8(?:03|4[17]|9(?:2|3[04]|[45][0-4]))"]],["(\\d{4})(\\d{2,6})","$1 $2",["0(?:[13-579][2-46-8]|8[236-8])"]],["(\\d{4})(\\d{4})","$1 $2",["894"]],["(\\d{2})(\\d{3,4})(\\d{4})","$1 $2 $3",["0[26]|5"]],["(\\d{3})(\\d{3})(\\d{3,4})","$1 $2 $3",["1(?:44|[679])|[378]"]],["(\\d{3})(\\d{3,4})(\\d{4})","$1 $2 $3",["0[13-57-9][0159]|14"]],["(\\d{2})(\\d{4})(\\d{5})","$1 $2 $3",["0[26]"]],["(\\d{4})(\\d{3})(\\d{4})","$1 $2 $3",["0"]],["(\\d{3})(\\d{4})(\\d{4,5})","$1 $2 $3",["3"]]],0,0,0,0,0,0,[["0669[0-79]\\d{1,6}|0(?:1(?:[0159]\\d|[27][1-5]|31|4[1-4]|6[1356]|8[2-57])|2\\d\\d|3(?:[0159]\\d|2[1-4]|3[12]|[48][1-6]|6[2-59]|7[1-7])|4(?:[0159]\\d|[23][1-9]|4[245]|6[1-5]|7[1-4]|81)|5(?:[0159]\\d|2[1-5]|3[2-6]|4[1-79]|6[4-6]|7[1-578]|8[3-8])|6(?:[0-57-9]\\d|6[0-8])|7(?:[0159]\\d|2[12]|3[1-7]|4[2-46]|6[13569]|7[13-6]|8[1-59])|8(?:[0159]\\d|2[3-578]|3[1-356]|[6-8][1-5])|9(?:[0159]\\d|[238][1-5]|4[12]|6[1-8]|7[1-6]))\\d{2,7}"],["3[1-9]\\d{8}|3[2-9]\\d{7}",[9,10]],["80(?:0\\d{3}|3)\\d{3}",[6,9]],["(?:0878\\d{3}|89(?:2\\d|3[04]|4(?:[0-4]|[5-9]\\d\\d)|5[0-4]))\\d\\d|(?:1(?:44|6[346])|89(?:38|5[5-9]|9))\\d{6}",[6,8,9,10]],["1(?:78\\d|99)\\d{6}",[9,10]],0,0,0,["55\\d{8}",[10]],["84(?:[08]\\d{3}|[17])\\d{3}",[6,9]]]],JE:["44","00","1534\\d{6}|(?:[3578]\\d|90)\\d{8}",[10],0,"0",0,"([0-24-8]\\d{5})$|0","1534$1",0,0,[["1534[0-24-8]\\d{5}"],["7(?:(?:(?:50|82)9|937)\\d|7(?:00[378]|97[7-9]))\\d{5}"],["80(?:07(?:35|81)|8901)\\d{4}"],["(?:8(?:4(?:4(?:4(?:05|42|69)|703)|5(?:041|800))|7(?:0002|1206))|90(?:066[59]|1810|71(?:07|55)))\\d{4}"],["701511\\d{4}"],0,["(?:3(?:0(?:07(?:35|81)|8901)|3\\d{4}|4(?:4(?:4(?:05|42|69)|703)|5(?:041|800))|7(?:0002|1206))|55\\d{4})\\d{4}"],["76(?:464|652)\\d{5}|76(?:0[0-28]|2[356]|34|4[01347]|5[49]|6[0-369]|77|8[14]|9[139])\\d{6}"],["56\\d{8}"]]],JM:["1","011","(?:[58]\\d\\d|658|900)\\d{7}",[10],0,"1",0,0,0,0,"658|876"],JO:["962","00","(?:(?:[2689]|7\\d)\\d|32|53)\\d{6}",[8,9],[["(\\d)(\\d{3})(\\d{4})","$1 $2 $3",["[2356]|87"],"(0$1)"],["(\\d{3})(\\d{5,6})","$1 $2",["[89]"],"0$1"],["(\\d{2})(\\d{7})","$1 $2",["70"],"0$1"],["(\\d)(\\d{4})(\\d{4})","$1 $2 $3",["7"],"0$1"]],"0"],JP:["81","010","00[1-9]\\d{6,14}|[257-9]\\d{9}|(?:00|[1-9]\\d\\d)\\d{6}",[8,9,10,11,12,13,14,15,16,17],[["(\\d{3})(\\d{3})(\\d{3})","$1-$2-$3",["(?:12|57|99)0"],"0$1"],["(\\d{4})(\\d)(\\d{4})","$1-$2-$3",["1(?:26|3[79]|4[56]|5[4-68]|6[3-5])|499|5(?:76|97)|746|8(?:3[89]|47|51)|9(?:80|9[16])","1(?:267|3(?:7[247]|9[278])|466|5(?:47|58|64)|6(?:3[245]|48|5[4-68]))|499[2468]|5(?:76|97)9|7468|8(?:3(?:8[7-9]|96)|477|51[2-9])|9(?:802|9(?:1[23]|69))|1(?:45|58)[67]","1(?:267|3(?:7[247]|9[278])|466|5(?:47|58|64)|6(?:3[245]|48|5[4-68]))|499[2468]|5(?:769|979[2-69])|7468|8(?:3(?:8[7-9]|96[2457-9])|477|51[2-9])|9(?:802|9(?:1[23]|69))|1(?:45|58)[67]"],"0$1"],["(\\d{2})(\\d{3})(\\d{4})","$1-$2-$3",["60"],"0$1"],["(\\d)(\\d{4})(\\d{4})","$1-$2-$3",["[36]|4(?:2[09]|7[01])","[36]|4(?:2(?:0|9[02-69])|7(?:0[019]|1))"],"0$1"],["(\\d{2})(\\d{3})(\\d{4})","$1-$2-$3",["1(?:1|5[45]|77|88|9[69])|2(?:2[1-37]|3[0-269]|4[59]|5|6[24]|7[1-358]|8[1369]|9[0-38])|4(?:[28][1-9]|3[0-57]|[45]|6[248]|7[2-579]|9[29])|5(?:2|3[0459]|4[0-369]|5[29]|8[02389]|9[0-389])|7(?:2[02-46-9]|34|[58]|6[0249]|7[57]|9[2-6])|8(?:2[124589]|3[26-9]|49|51|6|7[0-468]|8[68]|9[019])|9(?:[23][1-9]|4[15]|5[138]|6[1-3]|7[156]|8[189]|9[1-489])","1(?:1|5(?:4[018]|5[017])|77|88|9[69])|2(?:2(?:[127]|3[014-9])|3[0-269]|4[59]|5(?:[1-3]|5[0-69]|9[19])|62|7(?:[1-35]|8[0189])|8(?:[16]|3[0134]|9[0-5])|9(?:[028]|17))|4(?:2(?:[13-79]|8[014-6])|3[0-57]|[45]|6[248]|7[2-47]|8[1-9]|9[29])|5(?:2|3(?:[045]|9[0-8])|4[0-369]|5[29]|8[02389]|9[0-3])|7(?:2[02-46-9]|34|[58]|6[0249]|7[57]|9(?:[23]|4[0-59]|5[01569]|6[0167]))|8(?:2(?:[1258]|4[0-39]|9[0-2469])|3(?:[29]|60)|49|51|6(?:[0-24]|36|5[0-3589]|7[23]|9[01459])|7[0-468]|8[68])|9(?:[23][1-9]|4[15]|5[138]|6[1-3]|7[156]|8[189]|9(?:[1289]|3[34]|4[0178]))|(?:264|837)[016-9]|2(?:57|93)[015-9]|(?:25[0468]|422|838)[01]|(?:47[59]|59[89]|8(?:6[68]|9))[019]","1(?:1|5(?:4[018]|5[017])|77|88|9[69])|2(?:2[127]|3[0-269]|4[59]|5(?:[1-3]|5[0-69]|9(?:17|99))|6(?:2|4[016-9])|7(?:[1-35]|8[0189])|8(?:[16]|3[0134]|9[0-5])|9(?:[028]|17))|4(?:2(?:[13-79]|8[014-6])|3[0-57]|[45]|6[248]|7[2-47]|9[29])|5(?:2|3(?:[045]|9(?:[0-58]|6[4-9]|7[0-35689]))|4[0-369]|5[29]|8[02389]|9[0-3])|7(?:2[02-46-9]|34|[58]|6[0249]|7[57]|9(?:[23]|4[0-59]|5[01569]|6[0167]))|8(?:2(?:[1258]|4[0-39]|9[0169])|3(?:[29]|60|7(?:[017-9]|6[6-8]))|49|51|6(?:[0-24]|36[2-57-9]|5(?:[0-389]|5[23])|6(?:[01]|9[178])|7(?:2[2-468]|3[78])|9[0145])|7[0-468]|8[68])|9(?:4[15]|5[138]|7[156]|8[189]|9(?:[1289]|3(?:31|4[357])|4[0178]))|(?:8294|96)[1-3]|2(?:57|93)[015-9]|(?:223|8699)[014-9]|(?:25[0468]|422|838)[01]|(?:48|8292|9[23])[1-9]|(?:47[59]|59[89]|8(?:68|9))[019]"],"0$1"],["(\\d{3})(\\d{2})(\\d{4})","$1-$2-$3",["[14]|[289][2-9]|5[3-9]|7[2-4679]"],"0$1"],["(\\d{3})(\\d{3})(\\d{4})","$1-$2-$3",["800"],"0$1"],["(\\d{2})(\\d{4})(\\d{4})","$1-$2-$3",["[257-9]"],"0$1"]],"0",0,"(000[259]\\d{6})$|(?:(?:003768)0?)|0","$1"],KE:["254","000","(?:[17]\\d\\d|900)\\d{6}|(?:2|80)0\\d{6,7}|[4-6]\\d{6,8}",[7,8,9,10],[["(\\d{2})(\\d{5,7})","$1 $2",["[24-6]"],"0$1"],["(\\d{3})(\\d{6})","$1 $2",["[17]"],"0$1"],["(\\d{3})(\\d{3})(\\d{3,4})","$1 $2 $3",["[89]"],"0$1"]],"0"],KG:["996","00","8\\d{9}|[235-9]\\d{8}",[9,10],[["(\\d{4})(\\d{5})","$1 $2",["3(?:1[346]|[24-79])"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[235-79]|88"],"0$1"],["(\\d{3})(\\d{3})(\\d)(\\d{2,3})","$1 $2 $3 $4",["8"],"0$1"]],"0"],KH:["855","00[14-9]","1\\d{9}|[1-9]\\d{7,8}",[8,9,10],[["(\\d{2})(\\d{3})(\\d{3,4})","$1 $2 $3",["[1-9]"],"0$1"],["(\\d{4})(\\d{3})(\\d{3})","$1 $2 $3",["1"]]],"0"],KI:["686","00","(?:[37]\\d|6[0-79])\\d{6}|(?:[2-48]\\d|50)\\d{3}",[5,8],0,"0"],KM:["269","00","[3478]\\d{6}",[7],[["(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3",["[3478]"]]]],KN:["1","011","(?:[58]\\d\\d|900)\\d{7}",[10],0,"1",0,"([2-7]\\d{6})$|1","869$1",0,"869"],KP:["850","00|99","85\\d{6}|(?:19\\d|[2-7])\\d{7}",[8,10],[["(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3",["8"],"0$1"],["(\\d)(\\d{3})(\\d{4})","$1 $2 $3",["[2-7]"],"0$1"],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["1"],"0$1"]],"0"],KR:["82","00(?:[125689]|3(?:[46]5|91)|7(?:00|27|3|55|6[126]))","00[1-9]\\d{8,11}|(?:[12]|5\\d{3})\\d{7}|[13-6]\\d{9}|(?:[1-6]\\d|80)\\d{7}|[3-6]\\d{4,5}|(?:00|7)0\\d{8}",[5,6,8,9,10,11,12,13,14],[["(\\d{2})(\\d{3,4})","$1-$2",["(?:3[1-3]|[46][1-4]|5[1-5])1"],"0$1"],["(\\d{4})(\\d{4})","$1-$2",["1"]],["(\\d)(\\d{3,4})(\\d{4})","$1-$2-$3",["2"],"0$1"],["(\\d{2})(\\d{3})(\\d{4})","$1-$2-$3",["60|8"],"0$1"],["(\\d{2})(\\d{3,4})(\\d{4})","$1-$2-$3",["[1346]|5[1-5]"],"0$1"],["(\\d{2})(\\d{4})(\\d{4})","$1-$2-$3",["[57]"],"0$1"],["(\\d{2})(\\d{5})(\\d{4})","$1-$2-$3",["5"],"0$1"]],"0",0,"0(8(?:[1-46-8]|5\\d\\d))?"],KW:["965","00","18\\d{5}|(?:[2569]\\d|41)\\d{6}",[7,8],[["(\\d{4})(\\d{3,4})","$1 $2",["[169]|2(?:[235]|4[1-35-9])|52"]],["(\\d{3})(\\d{5})","$1 $2",["[245]"]]]],KY:["1","011","(?:345|[58]\\d\\d|900)\\d{7}",[10],0,"1",0,"([2-9]\\d{6})$|1","345$1",0,"345"],KZ:["7","810","(?:33622|8\\d{8})\\d{5}|[78]\\d{9}",[10,14],0,"8",0,0,0,0,"33|7",0,"8~10"],LA:["856","00","[23]\\d{9}|3\\d{8}|(?:[235-8]\\d|41)\\d{6}",[8,9,10],[["(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3",["2[13]|3[14]|[4-8]"],"0$1"],["(\\d{2})(\\d{2})(\\d{2})(\\d{3})","$1 $2 $3 $4",["30[013-9]"],"0$1"],["(\\d{2})(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3 $4",["[23]"],"0$1"]],"0"],LB:["961","00","[27-9]\\d{7}|[13-9]\\d{6}",[7,8],[["(\\d)(\\d{3})(\\d{3})","$1 $2 $3",["[13-69]|7(?:[2-57]|62|8[0-7]|9[04-9])|8[02-9]"],"0$1"],["(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3",["[27-9]"]]],"0"],LC:["1","011","(?:[58]\\d\\d|758|900)\\d{7}",[10],0,"1",0,"([2-8]\\d{6})$|1","758$1",0,"758"],LI:["423","00","[68]\\d{8}|(?:[2378]\\d|90)\\d{5}",[7,9],[["(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3",["[2379]|8(?:0[09]|7)","[2379]|8(?:0(?:02|9)|7)"]],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["8"]],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["69"]],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["6"]]],"0",0,"(1001)|0"],LK:["94","00","[1-9]\\d{8}",[9],[["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["7"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[1-689]"],"0$1"]],"0"],LR:["231","00","(?:[25]\\d|33|77|88)\\d{7}|(?:2\\d|[4-6])\\d{6}",[7,8,9],[["(\\d)(\\d{3})(\\d{3})","$1 $2 $3",["[4-6]"],"0$1"],["(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3",["2"],"0$1"],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["[23578]"],"0$1"]],"0"],LS:["266","00","(?:[256]\\d\\d|800)\\d{5}",[8],[["(\\d{4})(\\d{4})","$1 $2",["[2568]"]]]],LT:["370","00","(?:[3469]\\d|52|[78]0)\\d{6}",[8],[["(\\d)(\\d{3})(\\d{4})","$1 $2 $3",["52[0-7]"],"(8-$1)",1],["(\\d{3})(\\d{2})(\\d{3})","$1 $2 $3",["[7-9]"],"8 $1",1],["(\\d{2})(\\d{6})","$1 $2",["37|4(?:[15]|6[1-8])"],"(8-$1)",1],["(\\d{3})(\\d{5})","$1 $2",["[3-6]"],"(8-$1)",1]],"8",0,"[08]"],LU:["352","00","35[013-9]\\d{4,8}|6\\d{8}|35\\d{2,4}|(?:[2457-9]\\d|3[0-46-9])\\d{2,9}",[4,5,6,7,8,9,10,11],[["(\\d{2})(\\d{3})","$1 $2",["2(?:0[2-689]|[2-9])|[3-57]|8(?:0[2-9]|[13-9])|9(?:0[89]|[2-579])"]],["(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3",["2(?:0[2-689]|[2-9])|[3-57]|8(?:0[2-9]|[13-9])|9(?:0[89]|[2-579])"]],["(\\d{2})(\\d{2})(\\d{3})","$1 $2 $3",["20[2-689]"]],["(\\d{2})(\\d{2})(\\d{2})(\\d{1,2})","$1 $2 $3 $4",["2(?:[0367]|4[3-8])"]],["(\\d{3})(\\d{2})(\\d{3})","$1 $2 $3",["80[01]|90[015]"]],["(\\d{2})(\\d{2})(\\d{2})(\\d{3})","$1 $2 $3 $4",["20"]],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["6"]],["(\\d{2})(\\d{2})(\\d{2})(\\d{2})(\\d{1,2})","$1 $2 $3 $4 $5",["2(?:[0367]|4[3-8])"]],["(\\d{2})(\\d{2})(\\d{2})(\\d{1,5})","$1 $2 $3 $4",["[3-57]|8[13-9]|9(?:0[89]|[2-579])|(?:2|80)[2-9]"]]],0,0,"(15(?:0[06]|1[12]|[35]5|4[04]|6[26]|77|88|99)\\d)"],LV:["371","00","(?:[268]\\d|90)\\d{6}",[8],[["(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3",["[269]|8[01]"]]]],LY:["218","00","[2-9]\\d{8}",[9],[["(\\d{2})(\\d{7})","$1-$2",["[2-9]"],"0$1"]],"0"],MA:["212","00","[5-8]\\d{8}",[9],[["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["5[45]"],"0$1"],["(\\d{4})(\\d{5})","$1-$2",["5(?:2[2-489]|3[5-9]|9)|8(?:0[89]|92)","5(?:2(?:[2-49]|8[235-9])|3[5-9]|9)|8(?:0[89]|92)"],"0$1"],["(\\d{2})(\\d{7})","$1-$2",["8"],"0$1"],["(\\d{3})(\\d{6})","$1-$2",["[5-7]"],"0$1"]],"0",0,0,0,0,0,[["5(?:2(?:[0-25-79]\\d|3[1-578]|4[02-46-8]|8[0235-7])|3(?:[0-47]\\d|5[02-9]|6[02-8]|8[014-9]|9[3-9])|(?:4[067]|5[03])\\d)\\d{5}"],["(?:6(?:[0-79]\\d|8[0-247-9])|7(?:[0167]\\d|2[0-2]|5[01]|8[0-3]))\\d{6}"],["80[0-7]\\d{6}"],["89\\d{7}"],0,0,0,0,["(?:592(?:4[0-2]|93)|80[89]\\d\\d)\\d{4}"]]],MC:["377","00","(?:[3489]|6\\d)\\d{7}",[8,9],[["(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3",["4"],"0$1"],["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[389]"]],["(\\d)(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4 $5",["6"],"0$1"]],"0"],MD:["373","00","(?:[235-7]\\d|[89]0)\\d{6}",[8],[["(\\d{3})(\\d{5})","$1 $2",["[89]"],"0$1"],["(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3",["22|3"],"0$1"],["(\\d{3})(\\d{2})(\\d{3})","$1 $2 $3",["[25-7]"],"0$1"]],"0"],ME:["382","00","(?:20|[3-79]\\d)\\d{6}|80\\d{6,7}",[8,9],[["(\\d{2})(\\d{3})(\\d{3,4})","$1 $2 $3",["[2-9]"],"0$1"]],"0"],MF:["590","00","590\\d{6}|(?:69|80|9\\d)\\d{7}",[9],0,"0",0,0,0,0,0,[["590(?:0[079]|[14]3|[27][79]|3[03-7]|5[0-268]|87)\\d{4}"],["69(?:0\\d\\d|1(?:2[2-9]|3[0-5]))\\d{4}"],["80[0-5]\\d{6}"],0,0,0,0,0,["9(?:(?:395|76[018])\\d|475[0-5])\\d{4}"]]],MG:["261","00","[23]\\d{8}",[9],[["(\\d{2})(\\d{2})(\\d{3})(\\d{2})","$1 $2 $3 $4",["[23]"],"0$1"]],"0",0,"([24-9]\\d{6})$|0","20$1"],MH:["692","011","329\\d{4}|(?:[256]\\d|45)\\d{5}",[7],[["(\\d{3})(\\d{4})","$1-$2",["[2-6]"]]],"1"],MK:["389","00","[2-578]\\d{7}",[8],[["(\\d)(\\d{3})(\\d{4})","$1 $2 $3",["2|34[47]|4(?:[37]7|5[47]|64)"],"0$1"],["(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3",["[347]"],"0$1"],["(\\d{3})(\\d)(\\d{2})(\\d{2})","$1 $2 $3 $4",["[58]"],"0$1"]],"0"],ML:["223","00","[24-9]\\d{7}",[8],[["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[24-9]"]]]],MM:["95","00","1\\d{5,7}|95\\d{6}|(?:[4-7]|9[0-46-9])\\d{6,8}|(?:2|8\\d)\\d{5,8}",[6,7,8,9,10],[["(\\d)(\\d{2})(\\d{3})","$1 $2 $3",["16|2"],"0$1"],["(\\d{2})(\\d{2})(\\d{3})","$1 $2 $3",["[45]|6(?:0[23]|[1-689]|7[235-7])|7(?:[0-4]|5[2-7])|8[1-6]"],"0$1"],["(\\d)(\\d{3})(\\d{3,4})","$1 $2 $3",["[12]"],"0$1"],["(\\d{2})(\\d{3})(\\d{3,4})","$1 $2 $3",["[4-7]|8[1-35]"],"0$1"],["(\\d)(\\d{3})(\\d{4,6})","$1 $2 $3",["9(?:2[0-4]|[35-9]|4[137-9])"],"0$1"],["(\\d)(\\d{4})(\\d{4})","$1 $2 $3",["2"],"0$1"],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["8"],"0$1"],["(\\d)(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3 $4",["92"],"0$1"],["(\\d)(\\d{5})(\\d{4})","$1 $2 $3",["9"],"0$1"]],"0"],MN:["976","001","[12]\\d{7,9}|[5-9]\\d{7}",[8,9,10],[["(\\d{2})(\\d{2})(\\d{4})","$1 $2 $3",["[12]1"],"0$1"],["(\\d{4})(\\d{4})","$1 $2",["[5-9]"]],["(\\d{3})(\\d{5,6})","$1 $2",["[12]2[1-3]"],"0$1"],["(\\d{4})(\\d{5,6})","$1 $2",["[12](?:27|3[2-8]|4[2-68]|5[1-4689])","[12](?:27|3[2-8]|4[2-68]|5[1-4689])[0-3]"],"0$1"],["(\\d{5})(\\d{4,5})","$1 $2",["[12]"],"0$1"]],"0"],MO:["853","00","0800\\d{3}|(?:28|[68]\\d)\\d{6}",[7,8],[["(\\d{4})(\\d{3})","$1 $2",["0"]],["(\\d{4})(\\d{4})","$1 $2",["[268]"]]]],MP:["1","011","[58]\\d{9}|(?:67|90)0\\d{7}",[10],0,"1",0,"([2-9]\\d{6})$|1","670$1",0,"670"],MQ:["596","00","596\\d{6}|(?:69|80|9\\d)\\d{7}",[9],[["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[569]"],"0$1"],["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["8"],"0$1"]],"0"],MR:["222","00","(?:[2-4]\\d\\d|800)\\d{5}",[8],[["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[2-48]"]]]],MS:["1","011","(?:[58]\\d\\d|664|900)\\d{7}",[10],0,"1",0,"([34]\\d{6})$|1","664$1",0,"664"],MT:["356","00","3550\\d{4}|(?:[2579]\\d\\d|800)\\d{5}",[8],[["(\\d{4})(\\d{4})","$1 $2",["[2357-9]"]]]],MU:["230","0(?:0|[24-7]0|3[03])","(?:[57]|8\\d\\d)\\d{7}|[2-468]\\d{6}",[7,8,10],[["(\\d{3})(\\d{4})","$1 $2",["[2-46]|8[013]"]],["(\\d{4})(\\d{4})","$1 $2",["[57]"]],["(\\d{5})(\\d{5})","$1 $2",["8"]]],0,0,0,0,0,0,0,"020"],MV:["960","0(?:0|19)","(?:800|9[0-57-9]\\d)\\d{7}|[34679]\\d{6}",[7,10],[["(\\d{3})(\\d{4})","$1-$2",["[34679]"]],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["[89]"]]],0,0,0,0,0,0,0,"00"],MW:["265","00","(?:[1289]\\d|31|77)\\d{7}|1\\d{6}",[7,9],[["(\\d)(\\d{3})(\\d{3})","$1 $2 $3",["1[2-9]"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["2"],"0$1"],["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[137-9]"],"0$1"]],"0"],MX:["52","0[09]","1(?:(?:[27]2|44|87|99)[1-9]|65[0-689])\\d{7}|(?:1(?:[01]\\d|2[13-9]|[35][1-9]|4[0-35-9]|6[0-46-9]|7[013-9]|8[1-69]|9[1-8])|[2-9]\\d)\\d{8}",[10,11],[["(\\d{2})(\\d{4})(\\d{4})","$1 $2 $3",["33|5[56]|81"],0,1],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["[2-9]"],0,1],["(\\d)(\\d{2})(\\d{4})(\\d{4})","$2 $3 $4",["1(?:33|5[56]|81)"],0,1],["(\\d)(\\d{3})(\\d{3})(\\d{4})","$2 $3 $4",["1"],0,1]],"01",0,"0(?:[12]|4[45])|1",0,0,0,0,"00"],MY:["60","00","1\\d{8,9}|(?:3\\d|[4-9])\\d{7}",[8,9,10],[["(\\d)(\\d{3})(\\d{4})","$1-$2 $3",["[4-79]"],"0$1"],["(\\d{2})(\\d{3})(\\d{3,4})","$1-$2 $3",["1(?:[02469]|[378][1-9]|53)|8","1(?:[02469]|[37][1-9]|53|8(?:[1-46-9]|5[7-9]))|8"],"0$1"],["(\\d)(\\d{4})(\\d{4})","$1-$2 $3",["3"],"0$1"],["(\\d)(\\d{3})(\\d{2})(\\d{4})","$1-$2-$3-$4",["1(?:[367]|80)"]],["(\\d{3})(\\d{3})(\\d{4})","$1-$2 $3",["15"],"0$1"],["(\\d{2})(\\d{4})(\\d{4})","$1-$2 $3",["1"],"0$1"]],"0"],MZ:["258","00","(?:2|8\\d)\\d{7}",[8,9],[["(\\d{2})(\\d{3})(\\d{3,4})","$1 $2 $3",["2|8[2-79]"]],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["8"]]]],NA:["264","00","[68]\\d{7,8}",[8,9],[["(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3",["88"],"0$1"],["(\\d{2})(\\d{3})(\\d{3,4})","$1 $2 $3",["6"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["87"],"0$1"],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["8"],"0$1"]],"0"],NC:["687","00","(?:050|[2-57-9]\\d\\d)\\d{3}",[6],[["(\\d{2})(\\d{2})(\\d{2})","$1.$2.$3",["[02-57-9]"]]]],NE:["227","00","[027-9]\\d{7}",[8],[["(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3",["08"]],["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[089]|2[013]|7[047]"]]]],NF:["672","00","[13]\\d{5}",[6],[["(\\d{2})(\\d{4})","$1 $2",["1[0-3]"]],["(\\d)(\\d{5})","$1 $2",["[13]"]]],0,0,"([0-258]\\d{4})$","3$1"],NG:["234","009","(?:[124-7]|9\\d{3})\\d{6}|[1-9]\\d{7}|[78]\\d{9,13}",[7,8,10,11,12,13,14],[["(\\d{2})(\\d{2})(\\d{3})","$1 $2 $3",["78"],"0$1"],["(\\d)(\\d{3})(\\d{3,4})","$1 $2 $3",["[12]|9(?:0[3-9]|[1-9])"],"0$1"],["(\\d{2})(\\d{3})(\\d{2,3})","$1 $2 $3",["[3-7]|8[2-9]"],"0$1"],["(\\d{3})(\\d{3})(\\d{3,4})","$1 $2 $3",["[7-9]"],"0$1"],["(\\d{3})(\\d{4})(\\d{4,5})","$1 $2 $3",["[78]"],"0$1"],["(\\d{3})(\\d{5})(\\d{5,6})","$1 $2 $3",["[78]"],"0$1"]],"0"],NI:["505","00","(?:1800|[25-8]\\d{3})\\d{4}",[8],[["(\\d{4})(\\d{4})","$1 $2",["[125-8]"]]]],NL:["31","00","(?:[124-7]\\d\\d|3(?:[02-9]\\d|1[0-8]))\\d{6}|8\\d{6,9}|9\\d{6,10}|1\\d{4,5}",[5,6,7,8,9,10,11],[["(\\d{3})(\\d{4,7})","$1 $2",["[89]0"],"0$1"],["(\\d{2})(\\d{7})","$1 $2",["66"],"0$1"],["(\\d)(\\d{8})","$1 $2",["6"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["1[16-8]|2[259]|3[124]|4[17-9]|5[124679]"],"0$1"],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["[1-578]|91"],"0$1"],["(\\d{3})(\\d{3})(\\d{5})","$1 $2 $3",["9"],"0$1"]],"0"],NO:["47","00","(?:0|[2-9]\\d{3})\\d{4}",[5,8],[["(\\d{3})(\\d{2})(\\d{3})","$1 $2 $3",["8"]],["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[2-79]"]]],0,0,0,0,0,"[02-689]|7[0-8]"],NP:["977","00","(?:1\\d|9)\\d{9}|[1-9]\\d{7}",[8,10,11],[["(\\d)(\\d{7})","$1-$2",["1[2-6]"],"0$1"],["(\\d{2})(\\d{6})","$1-$2",["1[01]|[2-8]|9(?:[1-59]|[67][2-6])"],"0$1"],["(\\d{3})(\\d{7})","$1-$2",["9"]]],"0"],NR:["674","00","(?:444|(?:55|8\\d)\\d|666)\\d{4}",[7],[["(\\d{3})(\\d{4})","$1 $2",["[4-68]"]]]],NU:["683","00","(?:[4-7]|888\\d)\\d{3}",[4,7],[["(\\d{3})(\\d{4})","$1 $2",["8"]]]],NZ:["64","0(?:0|161)","[1289]\\d{9}|50\\d{5}(?:\\d{2,3})?|[27-9]\\d{7,8}|(?:[34]\\d|6[0-35-9])\\d{6}|8\\d{4,6}",[5,6,7,8,9,10],[["(\\d{2})(\\d{3,8})","$1 $2",["8[1-79]"],"0$1"],["(\\d{3})(\\d{2})(\\d{2,3})","$1 $2 $3",["50[036-8]|8|90","50(?:[0367]|88)|8|90"],"0$1"],["(\\d)(\\d{3})(\\d{4})","$1 $2 $3",["24|[346]|7[2-57-9]|9[2-9]"],"0$1"],["(\\d{3})(\\d{3})(\\d{3,4})","$1 $2 $3",["2(?:10|74)|[589]"],"0$1"],["(\\d{2})(\\d{3,4})(\\d{4})","$1 $2 $3",["1|2[028]"],"0$1"],["(\\d{2})(\\d{3})(\\d{3,5})","$1 $2 $3",["2(?:[169]|7[0-35-9])|7"],"0$1"]],"0",0,0,0,0,0,0,"00"],OM:["968","00","(?:1505|[279]\\d{3}|500)\\d{4}|800\\d{5,6}",[7,8,9],[["(\\d{3})(\\d{4,6})","$1 $2",["[58]"]],["(\\d{2})(\\d{6})","$1 $2",["2"]],["(\\d{4})(\\d{4})","$1 $2",["[179]"]]]],PA:["507","00","(?:00800|8\\d{3})\\d{6}|[68]\\d{7}|[1-57-9]\\d{6}",[7,8,10,11],[["(\\d{3})(\\d{4})","$1-$2",["[1-57-9]"]],["(\\d{4})(\\d{4})","$1-$2",["[68]"]],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["8"]]]],PE:["51","00|19(?:1[124]|77|90)00","(?:[14-8]|9\\d)\\d{7}",[8,9],[["(\\d{3})(\\d{5})","$1 $2",["80"],"(0$1)"],["(\\d)(\\d{7})","$1 $2",["1"],"(0$1)"],["(\\d{2})(\\d{6})","$1 $2",["[4-8]"],"(0$1)"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["9"]]],"0",0,0,0,0,0,0,"00"," Anexo "],PF:["689","00","4\\d{5}(?:\\d{2})?|8\\d{7,8}",[6,8,9],[["(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3",["44"]],["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["4|8[7-9]"]],["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["8"]]]],PG:["675","00|140[1-3]","(?:180|[78]\\d{3})\\d{4}|(?:[2-589]\\d|64)\\d{5}",[7,8],[["(\\d{3})(\\d{4})","$1 $2",["18|[2-69]|85"]],["(\\d{4})(\\d{4})","$1 $2",["[78]"]]],0,0,0,0,0,0,0,"00"],PH:["63","00","(?:[2-7]|9\\d)\\d{8}|2\\d{5}|(?:1800|8)\\d{7,9}",[6,8,9,10,11,12,13],[["(\\d)(\\d{5})","$1 $2",["2"],"(0$1)"],["(\\d{4})(\\d{4,6})","$1 $2",["3(?:23|39|46)|4(?:2[3-6]|[35]9|4[26]|76)|544|88[245]|(?:52|64|86)2","3(?:230|397|461)|4(?:2(?:35|[46]4|51)|396|4(?:22|63)|59[347]|76[15])|5(?:221|446)|642[23]|8(?:622|8(?:[24]2|5[13]))"],"(0$1)"],["(\\d{5})(\\d{4})","$1 $2",["346|4(?:27|9[35])|883","3469|4(?:279|9(?:30|56))|8834"],"(0$1)"],["(\\d)(\\d{4})(\\d{4})","$1 $2 $3",["2"],"(0$1)"],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["[3-7]|8[2-8]"],"(0$1)"],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["[89]"],"0$1"],["(\\d{4})(\\d{3})(\\d{4})","$1 $2 $3",["1"]],["(\\d{4})(\\d{1,2})(\\d{3})(\\d{4})","$1 $2 $3 $4",["1"]]],"0"],PK:["92","00","122\\d{6}|[24-8]\\d{10,11}|9(?:[013-9]\\d{8,10}|2(?:[01]\\d\\d|2(?:[06-8]\\d|1[01]))\\d{7})|(?:[2-8]\\d{3}|92(?:[0-7]\\d|8[1-9]))\\d{6}|[24-9]\\d{8}|[89]\\d{7}",[8,9,10,11,12],[["(\\d{3})(\\d{3})(\\d{2,7})","$1 $2 $3",["[89]0"],"0$1"],["(\\d{4})(\\d{5})","$1 $2",["1"]],["(\\d{3})(\\d{6,7})","$1 $2",["2(?:3[2358]|4[2-4]|9[2-8])|45[3479]|54[2-467]|60[468]|72[236]|8(?:2[2-689]|3[23578]|4[3478]|5[2356])|9(?:2[2-8]|3[27-9]|4[2-6]|6[3569]|9[25-8])","9(?:2[3-8]|98)|(?:2(?:3[2358]|4[2-4]|9[2-8])|45[3479]|54[2-467]|60[468]|72[236]|8(?:2[2-689]|3[23578]|4[3478]|5[2356])|9(?:22|3[27-9]|4[2-6]|6[3569]|9[25-7]))[2-9]"],"(0$1)"],["(\\d{2})(\\d{7,8})","$1 $2",["(?:2[125]|4[0-246-9]|5[1-35-7]|6[1-8]|7[14]|8[16]|91)[2-9]"],"(0$1)"],["(\\d{5})(\\d{5})","$1 $2",["58"],"(0$1)"],["(\\d{3})(\\d{7})","$1 $2",["3"],"0$1"],["(\\d{2})(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3 $4",["2[125]|4[0-246-9]|5[1-35-7]|6[1-8]|7[14]|8[16]|91"],"(0$1)"],["(\\d{3})(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3 $4",["[24-9]"],"(0$1)"]],"0"],PL:["48","00","(?:6|8\\d\\d)\\d{7}|[1-9]\\d{6}(?:\\d{2})?|[26]\\d{5}",[6,7,8,9,10],[["(\\d{5})","$1",["19"]],["(\\d{3})(\\d{3})","$1 $2",["11|20|64"]],["(\\d{2})(\\d{2})(\\d{3})","$1 $2 $3",["(?:1[2-8]|2[2-69]|3[2-4]|4[1-468]|5[24-689]|6[1-3578]|7[14-7]|8[1-79]|9[145])1","(?:1[2-8]|2[2-69]|3[2-4]|4[1-468]|5[24-689]|6[1-3578]|7[14-7]|8[1-79]|9[145])19"]],["(\\d{3})(\\d{2})(\\d{2,3})","$1 $2 $3",["64"]],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["21|39|45|5[0137]|6[0469]|7[02389]|8(?:0[14]|8)"]],["(\\d{2})(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3 $4",["1[2-8]|[2-7]|8[1-79]|9[145]"]],["(\\d{3})(\\d{3})(\\d{3,4})","$1 $2 $3",["8"]]]],PM:["508","00","[45]\\d{5}|(?:708|80\\d)\\d{6}",[6,9],[["(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3",["[45]"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["7"]],["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["8"],"0$1"]],"0"],PR:["1","011","(?:[589]\\d\\d|787)\\d{7}",[10],0,"1",0,0,0,0,"787|939"],PS:["970","00","[2489]2\\d{6}|(?:1\\d|5)\\d{8}",[8,9,10],[["(\\d)(\\d{3})(\\d{4})","$1 $2 $3",["[2489]"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["5"],"0$1"],["(\\d{4})(\\d{3})(\\d{3})","$1 $2 $3",["1"]]],"0"],PT:["351","00","1693\\d{5}|(?:[26-9]\\d|30)\\d{7}",[9],[["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["2[12]"]],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["16|[236-9]"]]]],PW:["680","01[12]","(?:[24-8]\\d\\d|345|900)\\d{4}",[7],[["(\\d{3})(\\d{4})","$1 $2",["[2-9]"]]]],PY:["595","00","59\\d{4,6}|9\\d{5,10}|(?:[2-46-8]\\d|5[0-8])\\d{4,7}",[6,7,8,9,10,11],[["(\\d{3})(\\d{3,6})","$1 $2",["[2-9]0"],"0$1"],["(\\d{2})(\\d{5})","$1 $2",["[26]1|3[289]|4[1246-8]|7[1-3]|8[1-36]"],"(0$1)"],["(\\d{3})(\\d{4,5})","$1 $2",["2[279]|3[13-5]|4[359]|5|6(?:[34]|7[1-46-8])|7[46-8]|85"],"(0$1)"],["(\\d{2})(\\d{3})(\\d{3,4})","$1 $2 $3",["2[14-68]|3[26-9]|4[1246-8]|6(?:1|75)|7[1-35]|8[1-36]"],"(0$1)"],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["87"]],["(\\d{3})(\\d{6})","$1 $2",["9(?:[5-79]|8[1-6])"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[2-8]"],"0$1"],["(\\d{4})(\\d{3})(\\d{4})","$1 $2 $3",["9"]]],"0"],QA:["974","00","800\\d{4}|(?:2|800)\\d{6}|(?:0080|[3-7])\\d{7}",[7,8,9,11],[["(\\d{3})(\\d{4})","$1 $2",["2[16]|8"]],["(\\d{4})(\\d{4})","$1 $2",["[3-7]"]]]],RE:["262","00","(?:26|[689]\\d)\\d{7}",[9],[["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[2689]"],"0$1"]],"0",0,0,0,0,0,[["26(?:2\\d\\d|3(?:0\\d|1[0-6]))\\d{4}"],["69(?:2\\d\\d|3(?:[06][0-6]|1[013]|2[0-2]|3[0-39]|4\\d|5[0-5]|7[0-37]|8[0-8]|9[0-479]))\\d{4}"],["80\\d{7}"],["89[1-37-9]\\d{6}"],0,0,0,0,["9(?:399[0-3]|479[0-5]|76(?:2[27]|3[0-37]))\\d{4}"],["8(?:1[019]|2[0156]|84|90)\\d{6}"]]],RO:["40","00","(?:[2378]\\d|62|90)\\d{7}|[23]\\d{5}",[6,9],[["(\\d{3})(\\d{3})","$1 $2",["2[3-6]","2[3-6]\\d9"],"0$1"],["(\\d{2})(\\d{4})","$1 $2",["219|31"],"0$1"],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["[23]1"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[236-9]"],"0$1"]],"0",0,0,0,0,0,0,0," int "],RS:["381","00","38[02-9]\\d{6,9}|6\\d{7,9}|90\\d{4,8}|38\\d{5,6}|(?:7\\d\\d|800)\\d{3,9}|(?:[12]\\d|3[0-79])\\d{5,10}",[6,7,8,9,10,11,12],[["(\\d{3})(\\d{3,9})","$1 $2",["(?:2[389]|39)0|[7-9]"],"0$1"],["(\\d{2})(\\d{5,10})","$1 $2",["[1-36]"],"0$1"]],"0"],RU:["7","810","8\\d{13}|[347-9]\\d{9}",[10,14],[["(\\d{4})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["7(?:1[0-8]|2[1-9])","7(?:1(?:[0-356]2|4[29]|7|8[27])|2(?:1[23]|[2-9]2))","7(?:1(?:[0-356]2|4[29]|7|8[27])|2(?:13[03-69]|62[013-9]))|72[1-57-9]2"],"8 ($1)",1],["(\\d{5})(\\d)(\\d{2})(\\d{2})","$1 $2 $3 $4",["7(?:1[0-68]|2[1-9])","7(?:1(?:[06][3-6]|[18]|2[35]|[3-5][3-5])|2(?:[13][3-5]|[24-689]|7[457]))","7(?:1(?:0(?:[356]|4[023])|[18]|2(?:3[013-9]|5)|3[45]|43[013-79]|5(?:3[1-8]|4[1-7]|5)|6(?:3[0-35-9]|[4-6]))|2(?:1(?:3[178]|[45])|[24-689]|3[35]|7[457]))|7(?:14|23)4[0-8]|71(?:33|45)[1-79]"],"8 ($1)",1],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["7"],"8 ($1)",1],["(\\d{3})(\\d{3})(\\d{2})(\\d{2})","$1 $2-$3-$4",["[349]|8(?:[02-7]|1[1-8])"],"8 ($1)",1],["(\\d{4})(\\d{4})(\\d{3})(\\d{3})","$1 $2 $3 $4",["8"],"8 ($1)"]],"8",0,0,0,0,"3[04-689]|[489]",0,"8~10"],RW:["250","00","(?:06|[27]\\d\\d|[89]00)\\d{6}",[8,9],[["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["0"]],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["2"]],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[7-9]"],"0$1"]],"0"],SA:["966","00","92\\d{7}|(?:[15]|8\\d)\\d{8}",[9,10],[["(\\d{4})(\\d{5})","$1 $2",["9"]],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["1"],"0$1"],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["5"],"0$1"],["(\\d{3})(\\d{3})(\\d{3,4})","$1 $2 $3",["81"],"0$1"],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["8"]]],"0"],SB:["677","0[01]","(?:[1-6]|[7-9]\\d\\d)\\d{4}",[5,7],[["(\\d{2})(\\d{5})","$1 $2",["7|8[4-9]|9(?:[1-8]|9[0-8])"]]]],SC:["248","010|0[0-2]","800\\d{4}|(?:[249]\\d|64)\\d{5}",[7],[["(\\d)(\\d{3})(\\d{3})","$1 $2 $3",["[246]|9[57]"]]],0,0,0,0,0,0,0,"00"],SD:["249","00","[19]\\d{8}",[9],[["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["[19]"],"0$1"]],"0"],SE:["46","00","(?:[26]\\d\\d|9)\\d{9}|[1-9]\\d{8}|[1-689]\\d{7}|[1-4689]\\d{6}|2\\d{5}",[6,7,8,9,10],[["(\\d{2})(\\d{2,3})(\\d{2})","$1-$2 $3",["20"],"0$1",0,"$1 $2 $3"],["(\\d{3})(\\d{4})","$1-$2",["9(?:00|39|44|9)"],"0$1",0,"$1 $2"],["(\\d{2})(\\d{3})(\\d{2})","$1-$2 $3",["[12][136]|3[356]|4[0246]|6[03]|90[1-9]"],"0$1",0,"$1 $2 $3"],["(\\d)(\\d{2,3})(\\d{2})(\\d{2})","$1-$2 $3 $4",["8"],"0$1",0,"$1 $2 $3 $4"],["(\\d{3})(\\d{2,3})(\\d{2})","$1-$2 $3",["1[2457]|2(?:[247-9]|5[0138])|3[0247-9]|4[1357-9]|5[0-35-9]|6(?:[125689]|4[02-57]|7[0-2])|9(?:[125-8]|3[02-5]|4[0-3])"],"0$1",0,"$1 $2 $3"],["(\\d{3})(\\d{2,3})(\\d{3})","$1-$2 $3",["9(?:00|39|44)"],"0$1",0,"$1 $2 $3"],["(\\d{2})(\\d{2,3})(\\d{2})(\\d{2})","$1-$2 $3 $4",["1[13689]|2[0136]|3[1356]|4[0246]|54|6[03]|90[1-9]"],"0$1",0,"$1 $2 $3 $4"],["(\\d{2})(\\d{3})(\\d{2})(\\d{2})","$1-$2 $3 $4",["10|7"],"0$1",0,"$1 $2 $3 $4"],["(\\d)(\\d{3})(\\d{3})(\\d{2})","$1-$2 $3 $4",["8"],"0$1",0,"$1 $2 $3 $4"],["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1-$2 $3 $4",["[13-5]|2(?:[247-9]|5[0138])|6(?:[124-689]|7[0-2])|9(?:[125-8]|3[02-5]|4[0-3])"],"0$1",0,"$1 $2 $3 $4"],["(\\d{3})(\\d{2})(\\d{2})(\\d{3})","$1-$2 $3 $4",["9"],"0$1",0,"$1 $2 $3 $4"],["(\\d{3})(\\d{2})(\\d{3})(\\d{2})(\\d{2})","$1-$2 $3 $4 $5",["[26]"],"0$1",0,"$1 $2 $3 $4 $5"]],"0"],SG:["65","0[0-3]\\d","(?:(?:1\\d|8)\\d\\d|7000)\\d{7}|[3689]\\d{7}",[8,10,11],[["(\\d{4})(\\d{4})","$1 $2",["[369]|8(?:0[1-8]|[1-9])"]],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["8"]],["(\\d{4})(\\d{4})(\\d{3})","$1 $2 $3",["7"]],["(\\d{4})(\\d{3})(\\d{4})","$1 $2 $3",["1"]]]],SH:["290","00","(?:[256]\\d|8)\\d{3}",[4,5],0,0,0,0,0,0,"[256]"],SI:["386","00|10(?:22|66|88|99)","[1-7]\\d{7}|8\\d{4,7}|90\\d{4,6}",[5,6,7,8],[["(\\d{2})(\\d{3,6})","$1 $2",["8[09]|9"],"0$1"],["(\\d{3})(\\d{5})","$1 $2",["59|8"],"0$1"],["(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3",["[37][01]|4[0139]|51|6"],"0$1"],["(\\d)(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[1-57]"],"(0$1)"]],"0",0,0,0,0,0,0,"00"],SJ:["47","00","0\\d{4}|(?:[489]\\d|79)\\d{6}",[5,8],0,0,0,0,0,0,"79"],SK:["421","00","[2-689]\\d{8}|[2-59]\\d{6}|[2-5]\\d{5}",[6,7,9],[["(\\d)(\\d{2})(\\d{3,4})","$1 $2 $3",["21"],"0$1"],["(\\d{2})(\\d{2})(\\d{2,3})","$1 $2 $3",["[3-5][1-8]1","[3-5][1-8]1[67]"],"0$1"],["(\\d)(\\d{3})(\\d{3})(\\d{2})","$1/$2 $3 $4",["2"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[689]"],"0$1"],["(\\d{2})(\\d{3})(\\d{2})(\\d{2})","$1/$2 $3 $4",["[3-5]"],"0$1"]],"0"],SL:["232","00","(?:[237-9]\\d|66)\\d{6}",[8],[["(\\d{2})(\\d{6})","$1 $2",["[236-9]"],"(0$1)"]],"0"],SM:["378","00","(?:0549|[5-7]\\d)\\d{6}",[8,10],[["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[5-7]"]],["(\\d{4})(\\d{6})","$1 $2",["0"]]],0,0,"([89]\\d{5})$","0549$1"],SN:["221","00","(?:[378]\\d|93)\\d{7}",[9],[["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["8"]],["(\\d{2})(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[379]"]]]],SO:["252","00","[346-9]\\d{8}|[12679]\\d{7}|[1-5]\\d{6}|[1348]\\d{5}",[6,7,8,9],[["(\\d{2})(\\d{4})","$1 $2",["8[125]"]],["(\\d{6})","$1",["[134]"]],["(\\d)(\\d{6})","$1 $2",["[15]|2[0-79]|3[0-46-8]|4[0-7]"]],["(\\d)(\\d{7})","$1 $2",["(?:2|90)4|[67]"]],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[348]|64|79|90"]],["(\\d{2})(\\d{5,7})","$1 $2",["1|28|6[0-35-9]|77|9[2-9]"]]],"0"],SR:["597","00","(?:[2-5]|68|[78]\\d)\\d{5}",[6,7],[["(\\d{2})(\\d{2})(\\d{2})","$1-$2-$3",["56"]],["(\\d{3})(\\d{3})","$1-$2",["[2-5]"]],["(\\d{3})(\\d{4})","$1-$2",["[6-8]"]]]],SS:["211","00","[19]\\d{8}",[9],[["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[19]"],"0$1"]],"0"],ST:["239","00","(?:22|9\\d)\\d{5}",[7],[["(\\d{3})(\\d{4})","$1 $2",["[29]"]]]],SV:["503","00","[267]\\d{7}|[89]00\\d{4}(?:\\d{4})?",[7,8,11],[["(\\d{3})(\\d{4})","$1 $2",["[89]"]],["(\\d{4})(\\d{4})","$1 $2",["[267]"]],["(\\d{3})(\\d{4})(\\d{4})","$1 $2 $3",["[89]"]]]],SX:["1","011","7215\\d{6}|(?:[58]\\d\\d|900)\\d{7}",[10],0,"1",0,"(5\\d{6})$|1","721$1",0,"721"],SY:["963","00","[1-39]\\d{8}|[1-5]\\d{7}",[8,9],[["(\\d{2})(\\d{3})(\\d{3,4})","$1 $2 $3",["[1-5]"],"0$1",1],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["9"],"0$1",1]],"0"],SZ:["268","00","0800\\d{4}|(?:[237]\\d|900)\\d{6}",[8,9],[["(\\d{4})(\\d{4})","$1 $2",["[0237]"]],["(\\d{5})(\\d{4})","$1 $2",["9"]]]],TA:["290","00","8\\d{3}",[4],0,0,0,0,0,0,"8"],TC:["1","011","(?:[58]\\d\\d|649|900)\\d{7}",[10],0,"1",0,"([2-479]\\d{6})$|1","649$1",0,"649"],TD:["235","00|16","(?:22|[69]\\d|77)\\d{6}",[8],[["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[2679]"]]],0,0,0,0,0,0,0,"00"],TG:["228","00","[279]\\d{7}",[8],[["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[279]"]]]],TH:["66","00[1-9]","(?:001800|[2-57]|[689]\\d)\\d{7}|1\\d{7,9}",[8,9,10,13],[["(\\d)(\\d{3})(\\d{4})","$1 $2 $3",["2"],"0$1"],["(\\d{2})(\\d{3})(\\d{3,4})","$1 $2 $3",["[13-9]"],"0$1"],["(\\d{4})(\\d{3})(\\d{3})","$1 $2 $3",["1"]]],"0"],TJ:["992","810","[0-57-9]\\d{8}",[9],[["(\\d{6})(\\d)(\\d{2})","$1 $2 $3",["331","3317"]],["(\\d{3})(\\d{2})(\\d{4})","$1 $2 $3",["44[02-479]|[34]7"]],["(\\d{4})(\\d)(\\d{4})","$1 $2 $3",["3[1-5]"]],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["[0-57-9]"]]],0,0,0,0,0,0,0,"8~10"],TK:["690","00","[2-47]\\d{3,6}",[4,5,6,7]],TL:["670","00","7\\d{7}|(?:[2-47]\\d|[89]0)\\d{5}",[7,8],[["(\\d{3})(\\d{4})","$1 $2",["[2-489]|70"]],["(\\d{4})(\\d{4})","$1 $2",["7"]]]],TM:["993","810","[1-6]\\d{7}",[8],[["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2-$3-$4",["12"],"(8 $1)"],["(\\d{3})(\\d)(\\d{2})(\\d{2})","$1 $2-$3-$4",["[1-5]"],"(8 $1)"],["(\\d{2})(\\d{6})","$1 $2",["6"],"8 $1"]],"8",0,0,0,0,0,0,"8~10"],TN:["216","00","[2-57-9]\\d{7}",[8],[["(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3",["[2-57-9]"]]]],TO:["676","00","(?:0800|(?:[5-8]\\d\\d|999)\\d)\\d{3}|[2-8]\\d{4}",[5,7],[["(\\d{2})(\\d{3})","$1-$2",["[2-4]|50|6[09]|7[0-24-69]|8[05]"]],["(\\d{4})(\\d{3})","$1 $2",["0"]],["(\\d{3})(\\d{4})","$1 $2",["[5-9]"]]]],TR:["90","00","4\\d{6}|8\\d{11,12}|(?:[2-58]\\d\\d|900)\\d{7}",[7,10,12,13],[["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["512|8[01589]|90"],"0$1",1],["(\\d{3})(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3 $4",["5(?:[0-59]|61)","5(?:[0-59]|61[06])","5(?:[0-59]|61[06]1)"],"0$1",1],["(\\d{3})(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[24][1-8]|3[1-9]"],"(0$1)",1],["(\\d{3})(\\d{3})(\\d{6,7})","$1 $2 $3",["80"],"0$1",1]],"0"],TT:["1","011","(?:[58]\\d\\d|900)\\d{7}",[10],0,"1",0,"([2-46-8]\\d{6})$|1","868$1",0,"868"],TV:["688","00","(?:2|7\\d\\d|90)\\d{4}",[5,6,7],[["(\\d{2})(\\d{3})","$1 $2",["2"]],["(\\d{2})(\\d{4})","$1 $2",["90"]],["(\\d{2})(\\d{5})","$1 $2",["7"]]]],TW:["886","0(?:0[25-79]|19)","[2-689]\\d{8}|7\\d{9,10}|[2-8]\\d{7}|2\\d{6}",[7,8,9,10,11],[["(\\d{2})(\\d)(\\d{4})","$1 $2 $3",["202"],"0$1"],["(\\d{2})(\\d{3})(\\d{3,4})","$1 $2 $3",["[258]0"],"0$1"],["(\\d)(\\d{3,4})(\\d{4})","$1 $2 $3",["[23568]|4(?:0[02-48]|[1-47-9])|7[1-9]","[23568]|4(?:0[2-48]|[1-47-9])|(?:400|7)[1-9]"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[49]"],"0$1"],["(\\d{2})(\\d{4})(\\d{4,5})","$1 $2 $3",["7"],"0$1"]],"0",0,0,0,0,0,0,0,"#"],TZ:["255","00[056]","(?:[25-8]\\d|41|90)\\d{7}",[9],[["(\\d{3})(\\d{2})(\\d{4})","$1 $2 $3",["[89]"],"0$1"],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["[24]"],"0$1"],["(\\d{2})(\\d{7})","$1 $2",["5"]],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[67]"],"0$1"]],"0"],UA:["380","00","[89]\\d{9}|[3-9]\\d{8}",[9,10],[["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["6[12][29]|(?:3[1-8]|4[136-8]|5[12457]|6[49])2|(?:56|65)[24]","6[12][29]|(?:35|4[1378]|5[12457]|6[49])2|(?:56|65)[24]|(?:3[1-46-8]|46)2[013-9]"],"0$1"],["(\\d{4})(\\d{5})","$1 $2",["3[1-8]|4(?:[1367]|[45][6-9]|8[4-6])|5(?:[1-5]|6[0135689]|7[4-6])|6(?:[12][3-7]|[459])","3[1-8]|4(?:[1367]|[45][6-9]|8[4-6])|5(?:[1-5]|6(?:[015689]|3[02389])|7[4-6])|6(?:[12][3-7]|[459])"],"0$1"],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["[3-7]|89|9[1-9]"],"0$1"],["(\\d{3})(\\d{3})(\\d{3,4})","$1 $2 $3",["[89]"],"0$1"]],"0",0,0,0,0,0,0,"0~0"],UG:["256","00[057]","800\\d{6}|(?:[29]0|[347]\\d)\\d{7}",[9],[["(\\d{4})(\\d{5})","$1 $2",["202","2024"],"0$1"],["(\\d{3})(\\d{6})","$1 $2",["[27-9]|4(?:6[45]|[7-9])"],"0$1"],["(\\d{2})(\\d{7})","$1 $2",["[34]"],"0$1"]],"0"],US:["1","011","[2-9]\\d{9}|3\\d{6}",[10],[["(\\d{3})(\\d{4})","$1-$2",["310"],0,1],["(\\d{3})(\\d{3})(\\d{4})","($1) $2-$3",["[2-9]"],0,1,"$1-$2-$3"]],"1",0,0,0,0,0,[["(?:5056(?:[0-35-9]\\d|4[468])|73020\\d)\\d{4}|(?:4722|505[2-57-9]|983[289])\\d{6}|(?:2(?:0[1-35-9]|1[02-9]|2[03-57-9]|3[149]|4[08]|5[1-46]|6[0279]|7[0269]|8[13])|3(?:0[1-57-9]|1[02-9]|2[013569]|3[0-24679]|4[167]|5[0-2]|6[0149]|8[056])|4(?:0[124-9]|1[02-579]|2[3-5]|3[0245]|4[023578]|58|6[349]|7[0589]|8[04])|5(?:0[1-47-9]|1[0235-8]|20|3[0149]|4[01]|5[179]|6[1-47]|7[0-5]|8[0256])|6(?:0[1-35-9]|1[024-9]|2[03689]|[34][016]|5[01679]|6[0-279]|78|8[0-29])|7(?:0[1-46-8]|1[2-9]|2[04-7]|3[1247]|4[037]|5[47]|6[02359]|7[0-59]|8[156])|8(?:0[1-68]|1[02-8]|2[068]|3[0-2589]|4[03578]|5[046-9]|6[02-5]|7[028])|9(?:0[1346-9]|1[02-9]|2[0589]|3[0146-8]|4[01357-9]|5[12469]|7[0-389]|8[04-69]))[2-9]\\d{6}"],[""],["8(?:00|33|44|55|66|77|88)[2-9]\\d{6}"],["900[2-9]\\d{6}"],["52(?:3(?:[2-46-9][02-9]\\d|5(?:[02-46-9]\\d|5[0-46-9]))|4(?:[2-478][02-9]\\d|5(?:[034]\\d|2[024-9]|5[0-46-9])|6(?:0[1-9]|[2-9]\\d)|9(?:[05-9]\\d|2[0-5]|49)))\\d{4}|52[34][2-9]1[02-9]\\d{4}|5(?:00|2[125-9]|33|44|66|77|88)[2-9]\\d{6}"]]],UY:["598","0(?:0|1[3-9]\\d)","0004\\d{2,9}|[1249]\\d{7}|(?:[49]\\d|80)\\d{5}",[6,7,8,9,10,11,12,13],[["(\\d{3})(\\d{3,4})","$1 $2",["0"]],["(\\d{3})(\\d{4})","$1 $2",["[49]0|8"],"0$1"],["(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3",["9"],"0$1"],["(\\d{4})(\\d{4})","$1 $2",["[124]"]],["(\\d{3})(\\d{3})(\\d{2,4})","$1 $2 $3",["0"]],["(\\d{3})(\\d{3})(\\d{3})(\\d{2,4})","$1 $2 $3 $4",["0"]]],"0",0,0,0,0,0,0,"00"," int. "],UZ:["998","810","(?:20|33|[5-79]\\d|88)\\d{7}",[9],[["(\\d{2})(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[235-9]"],"8 $1"]],"8",0,0,0,0,0,0,"8~10"],VA:["39","00","0\\d{5,10}|3[0-8]\\d{7,10}|55\\d{8}|8\\d{5}(?:\\d{2,4})?|(?:1\\d|39)\\d{7,8}",[6,7,8,9,10,11],0,0,0,0,0,0,"06698"],VC:["1","011","(?:[58]\\d\\d|784|900)\\d{7}",[10],0,"1",0,"([2-7]\\d{6})$|1","784$1",0,"784"],VE:["58","00","[68]00\\d{7}|(?:[24]\\d|[59]0)\\d{8}",[10],[["(\\d{3})(\\d{7})","$1-$2",["[24-689]"],"0$1"]],"0"],VG:["1","011","(?:284|[58]\\d\\d|900)\\d{7}",[10],0,"1",0,"([2-578]\\d{6})$|1","284$1",0,"284"],VI:["1","011","[58]\\d{9}|(?:34|90)0\\d{7}",[10],0,"1",0,"([2-9]\\d{6})$|1","340$1",0,"340"],VN:["84","00","[12]\\d{9}|[135-9]\\d{8}|[16]\\d{7}|[16-8]\\d{6}",[7,8,9,10],[["(\\d{2})(\\d{5})","$1 $2",["80"],"0$1",1],["(\\d{4})(\\d{4,6})","$1 $2",["1"],0,1],["(\\d{2})(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3 $4",["6"],"0$1",1],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[357-9]"],"0$1",1],["(\\d{2})(\\d{4})(\\d{4})","$1 $2 $3",["2[48]"],"0$1",1],["(\\d{3})(\\d{4})(\\d{3})","$1 $2 $3",["2"],"0$1",1]],"0"],VU:["678","00","[57-9]\\d{6}|(?:[238]\\d|48)\\d{3}",[5,7],[["(\\d{3})(\\d{4})","$1 $2",["[57-9]"]]]],WF:["681","00","(?:40|72)\\d{4}|8\\d{5}(?:\\d{3})?",[6,9],[["(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3",["[478]"]],["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["8"]]]],WS:["685","0","(?:[2-6]|8\\d{5})\\d{4}|[78]\\d{6}|[68]\\d{5}",[5,6,7,10],[["(\\d{5})","$1",["[2-5]|6[1-9]"]],["(\\d{3})(\\d{3,7})","$1 $2",["[68]"]],["(\\d{2})(\\d{5})","$1 $2",["7"]]]],XK:["383","00","[23]\\d{7,8}|(?:4\\d\\d|[89]00)\\d{5}",[8,9],[["(\\d{3})(\\d{5})","$1 $2",["[89]"],"0$1"],["(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3",["[2-4]"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[23]"],"0$1"]],"0"],YE:["967","00","(?:1|7\\d)\\d{7}|[1-7]\\d{6}",[7,8,9],[["(\\d)(\\d{3})(\\d{3,4})","$1 $2 $3",["[1-6]|7(?:[24-6]|8[0-7])"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["7"],"0$1"]],"0"],YT:["262","00","(?:80|9\\d)\\d{7}|(?:26|63)9\\d{6}",[9],0,"0",0,0,0,0,0,[["269(?:0[0-467]|5[0-4]|6\\d|[78]0)\\d{4}"],["639(?:0[0-79]|1[019]|[267]\\d|3[09]|40|5[05-9]|9[04-79])\\d{4}"],["80\\d{7}"],0,0,0,0,0,["9(?:(?:39|47)8[01]|769\\d)\\d{4}"]]],ZA:["27","00","[1-79]\\d{8}|8\\d{4,9}",[5,6,7,8,9,10],[["(\\d{2})(\\d{3,4})","$1 $2",["8[1-4]"],"0$1"],["(\\d{2})(\\d{3})(\\d{2,3})","$1 $2 $3",["8[1-4]"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["860"],"0$1"],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["[1-9]"],"0$1"],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["8"],"0$1"]],"0"],ZM:["260","00","800\\d{6}|(?:21|63|[79]\\d)\\d{7}",[9],[["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[28]"],"0$1"],["(\\d{2})(\\d{7})","$1 $2",["[79]"],"0$1"]],"0"],ZW:["263","00","2(?:[0-57-9]\\d{6,8}|6[0-24-9]\\d{6,7})|[38]\\d{9}|[35-8]\\d{8}|[3-6]\\d{7}|[1-689]\\d{6}|[1-3569]\\d{5}|[1356]\\d{4}",[5,6,7,8,9,10],[["(\\d{3})(\\d{3,5})","$1 $2",["2(?:0[45]|2[278]|[49]8)|3(?:[09]8|17)|6(?:[29]8|37|75)|[23][78]|(?:33|5[15]|6[68])[78]"],"0$1"],["(\\d)(\\d{3})(\\d{2,4})","$1 $2 $3",["[49]"],"0$1"],["(\\d{3})(\\d{4})","$1 $2",["80"],"0$1"],["(\\d{2})(\\d{7})","$1 $2",["24|8[13-59]|(?:2[05-79]|39|5[45]|6[15-8])2","2(?:02[014]|4|[56]20|[79]2)|392|5(?:42|525)|6(?:[16-8]21|52[013])|8[13-59]"],"(0$1)"],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["7"],"0$1"],["(\\d{3})(\\d{3})(\\d{3,4})","$1 $2 $3",["2(?:1[39]|2[0157]|[378]|[56][14])|3(?:12|29)","2(?:1[39]|2[0157]|[378]|[56][14])|3(?:123|29)"],"0$1"],["(\\d{4})(\\d{6})","$1 $2",["8"],"0$1"],["(\\d{2})(\\d{3,5})","$1 $2",["1|2(?:0[0-36-9]|12|29|[56])|3(?:1[0-689]|[24-6])|5(?:[0236-9]|1[2-4])|6(?:[013-59]|7[0-46-9])|(?:33|55|6[68])[0-69]|(?:29|3[09]|62)[0-79]"],"0$1"],["(\\d{2})(\\d{3})(\\d{3,4})","$1 $2 $3",["29[013-9]|39|54"],"0$1"],["(\\d{4})(\\d{3,5})","$1 $2",["(?:25|54)8","258|5483"],"0$1"]],"0"]},nonGeographic:{800:["800",0,"(?:00|[1-9]\\d)\\d{6}",[8],[["(\\d{4})(\\d{4})","$1 $2",["\\d"]]],0,0,0,0,0,0,[0,0,["(?:00|[1-9]\\d)\\d{6}"]]],808:["808",0,"[1-9]\\d{7}",[8],[["(\\d{4})(\\d{4})","$1 $2",["[1-9]"]]],0,0,0,0,0,0,[0,0,0,0,0,0,0,0,0,["[1-9]\\d{7}"]]],870:["870",0,"7\\d{11}|[35-7]\\d{8}",[9,12],[["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[35-7]"]]],0,0,0,0,0,0,[0,["(?:[356]|774[45])\\d{8}|7[6-8]\\d{7}"]]],878:["878",0,"10\\d{10}",[12],[["(\\d{2})(\\d{5})(\\d{5})","$1 $2 $3",["1"]]],0,0,0,0,0,0,[0,0,0,0,0,0,0,0,["10\\d{10}"]]],881:["881",0,"6\\d{9}|[0-36-9]\\d{8}",[9,10],[["(\\d)(\\d{3})(\\d{5})","$1 $2 $3",["[0-37-9]"]],["(\\d)(\\d{3})(\\d{5,6})","$1 $2 $3",["6"]]],0,0,0,0,0,0,[0,["6\\d{9}|[0-36-9]\\d{8}"]]],882:["882",0,"[13]\\d{6}(?:\\d{2,5})?|[19]\\d{7}|(?:[25]\\d\\d|4)\\d{7}(?:\\d{2})?",[7,8,9,10,11,12],[["(\\d{2})(\\d{5})","$1 $2",["16|342"]],["(\\d{2})(\\d{6})","$1 $2",["49"]],["(\\d{2})(\\d{2})(\\d{4})","$1 $2 $3",["1[36]|9"]],["(\\d{2})(\\d{4})(\\d{3})","$1 $2 $3",["3[23]"]],["(\\d{2})(\\d{3,4})(\\d{4})","$1 $2 $3",["16"]],["(\\d{2})(\\d{4})(\\d{4})","$1 $2 $3",["10|23|3(?:[15]|4[57])|4|51"]],["(\\d{3})(\\d{4})(\\d{4})","$1 $2 $3",["34"]],["(\\d{2})(\\d{4,5})(\\d{5})","$1 $2 $3",["[1-35]"]]],0,0,0,0,0,0,[0,["342\\d{4}|(?:337|49)\\d{6}|(?:3(?:2|47|7\\d{3})|50\\d{3})\\d{7}",[7,8,9,10,12]],0,0,0,0,0,0,["1(?:3(?:0[0347]|[13][0139]|2[035]|4[013568]|6[0459]|7[06]|8[15-8]|9[0689])\\d{4}|6\\d{5,10})|(?:345\\d|9[89])\\d{6}|(?:10|2(?:3|85\\d)|3(?:[15]|[69]\\d\\d)|4[15-8]|51)\\d{8}"]]],883:["883",0,"(?:[1-4]\\d|51)\\d{6,10}",[8,9,10,11,12],[["(\\d{3})(\\d{3})(\\d{2,8})","$1 $2 $3",["[14]|2[24-689]|3[02-689]|51[24-9]"]],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["510"]],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["21"]],["(\\d{4})(\\d{4})(\\d{4})","$1 $2 $3",["51[13]"]],["(\\d{3})(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3 $4",["[235]"]]],0,0,0,0,0,0,[0,0,0,0,0,0,0,0,["(?:2(?:00\\d\\d|10)|(?:370[1-9]|51\\d0)\\d)\\d{7}|51(?:00\\d{5}|[24-9]0\\d{4,7})|(?:1[0-79]|2[24-689]|3[02-689]|4[0-4])0\\d{5,9}"]]],888:["888",0,"\\d{11}",[11],[["(\\d{3})(\\d{3})(\\d{5})","$1 $2 $3"]],0,0,0,0,0,0,[0,0,0,0,0,0,["\\d{11}"]]],979:["979",0,"[1359]\\d{8}",[9],[["(\\d)(\\d{4})(\\d{4})","$1 $2 $3",["[1359]"]]],0,0,0,0,0,0,[0,0,0,["[1359]\\d{8}"]]]}};function Ec(t,n){var e=Array.prototype.slice.call(n);return e.push(Oc),t.apply(this,e)}function Tr(t){"@babel/helpers - typeof";return Tr=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(n){return typeof n}:function(n){return n&&typeof Symbol=="function"&&n.constructor===Symbol&&n!==Symbol.prototype?"symbol":typeof n},Tr(t)}function Gi(t,n){for(var e=0;e<n.length;e++){var o=n[e];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(t,o.key,o)}}function Sc(t,n,e){return n&&Gi(t.prototype,n),e&&Gi(t,e),Object.defineProperty(t,"prototype",{writable:!1}),t}function Tc(t,n){if(!(t instanceof n))throw new TypeError("Cannot call a class as a function")}function Nc(t,n){if(typeof n!="function"&&n!==null)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(n&&n.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),n&&hn(t,n)}function xc(t){var n=Wi();return function(){var e=pn(t),o;if(n){var a=pn(this).constructor;o=Reflect.construct(e,arguments,a)}else o=e.apply(this,arguments);return Ac(this,o)}}function Ac(t,n){if(n&&(Tr(n)==="object"||typeof n=="function"))return n;if(n!==void 0)throw new TypeError("Derived constructors may only return object or undefined");return Yi(t)}function Yi(t){if(t===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}function Nr(t){var n=typeof Map=="function"?new Map:void 0;return Nr=function(e){if(e===null||!Dc(e))return e;if(typeof e!="function")throw new TypeError("Super expression must either be null or a function");if(typeof n<"u"){if(n.has(e))return n.get(e);n.set(e,o)}function o(){return Hn(e,arguments,pn(this).constructor)}return o.prototype=Object.create(e.prototype,{constructor:{value:o,enumerable:!1,writable:!0,configurable:!0}}),hn(o,e)},Nr(t)}function Hn(t,n,e){return Wi()?Hn=Reflect.construct:Hn=function(o,a,r){var s=[null];s.push.apply(s,a);var d=Function.bind.apply(o,s),u=new d;return r&&hn(u,r.prototype),u},Hn.apply(null,arguments)}function Wi(){if(typeof Reflect>"u"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch{return!1}}function Dc(t){return Function.toString.call(t).indexOf("[native code]")!==-1}function hn(t,n){return hn=Object.setPrototypeOf||function(e,o){return e.__proto__=o,e},hn(t,n)}function pn(t){return pn=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},pn(t)}var St=function(t){Nc(e,t);var n=xc(e);function e(o){var a;return Tc(this,e),a=n.call(this,o),Object.setPrototypeOf(Yi(a),e.prototype),a.name=a.constructor.name,a}return Sc(e)}(Nr(Error)),xr=2,Ic=17,Mc=3,pt="0-90-9٠-٩۰-۹",Pc="-‐-―−ー-",Bc="//",Lc="..",Rc=" ",jc="()()[]\\[\\]",Vc="~⁓∼~",zn="".concat(Pc).concat(Bc).concat(Lc).concat(Rc).concat(jc).concat(Vc),Ar="++";function Zi(t,n){t=t.split("-"),n=n.split("-");for(var e=t[0].split("."),o=n[0].split("."),a=0;a<3;a++){var r=Number(e[a]),s=Number(o[a]);if(r>s)return 1;if(s>r)return-1;if(!isNaN(r)&&isNaN(s))return 1;if(isNaN(r)&&!isNaN(s))return-1}return t[1]&&n[1]?t[1]>n[1]?1:t[1]<n[1]?-1:0:!t[1]&&n[1]?1:t[1]&&!n[1]?-1:0}var qc={}.constructor;function Un(t){return t!=null&&t.constructor===qc}function Dr(t){"@babel/helpers - typeof";return Dr=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(n){return typeof n}:function(n){return n&&typeof Symbol=="function"&&n.constructor===Symbol&&n!==Symbol.prototype?"symbol":typeof n},Dr(t)}function Kn(t,n){if(!(t instanceof n))throw new TypeError("Cannot call a class as a function")}function Ji(t,n){for(var e=0;e<n.length;e++){var o=n[e];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(t,o.key,o)}}function Gn(t,n,e){return n&&Ji(t.prototype,n),e&&Ji(t,e),Object.defineProperty(t,"prototype",{writable:!1}),t}var Fc="1.2.0",Hc="1.7.35",Xi=" ext. ",zc=/^\d+$/,et=function(){function t(n){Kn(this,t),Yc(n),this.metadata=n,to.call(this,n)}return Gn(t,[{key:"getCountries",value:function(){return Object.keys(this.metadata.countries).filter(function(n){return n!=="001"})}},{key:"getCountryMetadata",value:function(n){return this.metadata.countries[n]}},{key:"nonGeographic",value:function(){if(!(this.v1||this.v2||this.v3))return this.metadata.nonGeographic||this.metadata.nonGeographical}},{key:"hasCountry",value:function(n){return this.getCountryMetadata(n)!==void 0}},{key:"hasCallingCode",value:function(n){if(this.getCountryCodesForCallingCode(n))return!0;if(this.nonGeographic()){if(this.nonGeographic()[n])return!0}else{var e=this.countryCallingCodes()[n];if(e&&e.length===1&&e[0]==="001")return!0}}},{key:"isNonGeographicCallingCode",value:function(n){return this.nonGeographic()?!!this.nonGeographic()[n]:!this.getCountryCodesForCallingCode(n)}},{key:"country",value:function(n){return this.selectNumberingPlan(n)}},{key:"selectNumberingPlan",value:function(n,e){if(n&&zc.test(n)&&(e=n,n=null),n&&n!=="001"){if(!this.hasCountry(n))throw new Error("Unknown country: ".concat(n));this.numberingPlan=new Qi(this.getCountryMetadata(n),this)}else if(e){if(!this.hasCallingCode(e))throw new Error("Unknown calling code: ".concat(e));this.numberingPlan=new Qi(this.getNumberingPlanMetadata(e),this)}else this.numberingPlan=void 0;return this}},{key:"getCountryCodesForCallingCode",value:function(n){var e=this.countryCallingCodes()[n];if(e)return e.length===1&&e[0].length===3?void 0:e}},{key:"getCountryCodeForCallingCode",value:function(n){var e=this.getCountryCodesForCallingCode(n);if(e)return e[0]}},{key:"getNumberingPlanMetadata",value:function(n){var e=this.getCountryCodeForCallingCode(n);if(e)return this.getCountryMetadata(e);if(this.nonGeographic()){var o=this.nonGeographic()[n];if(o)return o}else{var a=this.countryCallingCodes()[n];if(a&&a.length===1&&a[0]==="001")return this.metadata.countries["001"]}}},{key:"countryCallingCode",value:function(){return this.numberingPlan.callingCode()}},{key:"IDDPrefix",value:function(){return this.numberingPlan.IDDPrefix()}},{key:"defaultIDDPrefix",value:function(){return this.numberingPlan.defaultIDDPrefix()}},{key:"nationalNumberPattern",value:function(){return this.numberingPlan.nationalNumberPattern()}},{key:"possibleLengths",value:function(){return this.numberingPlan.possibleLengths()}},{key:"formats",value:function(){return this.numberingPlan.formats()}},{key:"nationalPrefixForParsing",value:function(){return this.numberingPlan.nationalPrefixForParsing()}},{key:"nationalPrefixTransformRule",value:function(){return this.numberingPlan.nationalPrefixTransformRule()}},{key:"leadingDigits",value:function(){return this.numberingPlan.leadingDigits()}},{key:"hasTypes",value:function(){return this.numberingPlan.hasTypes()}},{key:"type",value:function(n){return this.numberingPlan.type(n)}},{key:"ext",value:function(){return this.numberingPlan.ext()}},{key:"countryCallingCodes",value:function(){return this.v1?this.metadata.country_phone_code_to_countries:this.metadata.country_calling_codes}},{key:"chooseCountryByCountryCallingCode",value:function(n){return this.selectNumberingPlan(n)}},{key:"hasSelectedNumberingPlan",value:function(){return this.numberingPlan!==void 0}}]),t}(),Qi=function(){function t(n,e){Kn(this,t),this.globalMetadataObject=e,this.metadata=n,to.call(this,e.metadata)}return Gn(t,[{key:"callingCode",value:function(){return this.metadata[0]}},{key:"getDefaultCountryMetadataForRegion",value:function(){return this.globalMetadataObject.getNumberingPlanMetadata(this.callingCode())}},{key:"IDDPrefix",value:function(){if(!(this.v1||this.v2))return this.metadata[1]}},{key:"defaultIDDPrefix",value:function(){if(!(this.v1||this.v2))return this.metadata[12]}},{key:"nationalNumberPattern",value:function(){return this.v1||this.v2?this.metadata[1]:this.metadata[2]}},{key:"possibleLengths",value:function(){if(!this.v1)return this.metadata[this.v2?2:3]}},{key:"_getFormats",value:function(n){return n[this.v1?2:this.v2?3:4]}},{key:"formats",value:function(){var n=this,e=this._getFormats(this.metadata)||this._getFormats(this.getDefaultCountryMetadataForRegion())||[];return e.map(function(o){return new Uc(o,n)})}},{key:"nationalPrefix",value:function(){return this.metadata[this.v1?3:this.v2?4:5]}},{key:"_getNationalPrefixFormattingRule",value:function(n){return n[this.v1?4:this.v2?5:6]}},{key:"nationalPrefixFormattingRule",value:function(){return this._getNationalPrefixFormattingRule(this.metadata)||this._getNationalPrefixFormattingRule(this.getDefaultCountryMetadataForRegion())}},{key:"_nationalPrefixForParsing",value:function(){return this.metadata[this.v1?5:this.v2?6:7]}},{key:"nationalPrefixForParsing",value:function(){return this._nationalPrefixForParsing()||this.nationalPrefix()}},{key:"nationalPrefixTransformRule",value:function(){return this.metadata[this.v1?6:this.v2?7:8]}},{key:"_getNationalPrefixIsOptionalWhenFormatting",value:function(){return!!this.metadata[this.v1?7:this.v2?8:9]}},{key:"nationalPrefixIsOptionalWhenFormattingInNationalFormat",value:function(){return this._getNationalPrefixIsOptionalWhenFormatting(this.metadata)||this._getNationalPrefixIsOptionalWhenFormatting(this.getDefaultCountryMetadataForRegion())}},{key:"leadingDigits",value:function(){return this.metadata[this.v1?8:this.v2?9:10]}},{key:"types",value:function(){return this.metadata[this.v1?9:this.v2?10:11]}},{key:"hasTypes",value:function(){return this.types()&&this.types().length===0?!1:!!this.types()}},{key:"type",value:function(n){if(this.hasTypes()&&eo(this.types(),n))return new Gc(eo(this.types(),n),this)}},{key:"ext",value:function(){return this.v1||this.v2?Xi:this.metadata[13]||Xi}}]),t}(),Uc=function(){function t(n,e){Kn(this,t),this._format=n,this.metadata=e}return Gn(t,[{key:"pattern",value:function(){return this._format[0]}},{key:"format",value:function(){return this._format[1]}},{key:"leadingDigitsPatterns",value:function(){return this._format[2]||[]}},{key:"nationalPrefixFormattingRule",value:function(){return this._format[3]||this.metadata.nationalPrefixFormattingRule()}},{key:"nationalPrefixIsOptionalWhenFormattingInNationalFormat",value:function(){return!!this._format[4]||this.metadata.nationalPrefixIsOptionalWhenFormattingInNationalFormat()}},{key:"nationalPrefixIsMandatoryWhenFormattingInNationalFormat",value:function(){return this.usesNationalPrefix()&&!this.nationalPrefixIsOptionalWhenFormattingInNationalFormat()}},{key:"usesNationalPrefix",value:function(){return!!(this.nationalPrefixFormattingRule()&&!Kc.test(this.nationalPrefixFormattingRule()))}},{key:"internationalFormat",value:function(){return this._format[5]||this.format()}}]),t}(),Kc=/^\(?\$1\)?$/,Gc=function(){function t(n,e){Kn(this,t),this.type=n,this.metadata=e}return Gn(t,[{key:"pattern",value:function(){return this.metadata.v1?this.type:this.type[0]}},{key:"possibleLengths",value:function(){if(!this.metadata.v1)return this.type[1]||this.metadata.possibleLengths()}}]),t}();function eo(t,n){switch(n){case"FIXED_LINE":return t[0];case"MOBILE":return t[1];case"TOLL_FREE":return t[2];case"PREMIUM_RATE":return t[3];case"PERSONAL_NUMBER":return t[4];case"VOICEMAIL":return t[5];case"UAN":return t[6];case"PAGER":return t[7];case"VOIP":return t[8];case"SHARED_COST":return t[9]}}function Yc(t){if(!t)throw new Error("[libphonenumber-js] `metadata` argument not passed. Check your arguments.");if(!Un(t)||!Un(t.countries))throw new Error("[libphonenumber-js] `metadata` argument was passed but it's not a valid metadata. Must be an object having `.countries` child object property. Got ".concat(Un(t)?"an object of shape: { "+Object.keys(t).join(", ")+" }":"a "+Wc(t)+": "+t,"."))}var Wc=function(t){return Dr(t)};function Ir(t,n){if(n=new et(n),n.hasCountry(t))return n.country(t).countryCallingCode();throw new Error("Unknown country: ".concat(t))}function Zc(t,n){return n.countries.hasOwnProperty(t)}function to(t){var n=t.version;typeof n=="number"?(this.v1=n===1,this.v2=n===2,this.v3=n===3,this.v4=n===4):n?Zi(n,Fc)===-1?this.v2=!0:Zi(n,Hc)===-1?this.v3=!0:this.v4=!0:this.v1=!0}var Jc=";ext=",Qt=function(t){return"([".concat(pt,"]{1,").concat(t,"})")};function no(t){var n="20",e="15",o="9",a="6",r="[ \\t,]*",s="[:\\..]?[ \\t,-]*",d="#?",u="(?:e?xt(?:ensi(?:ó?|ó))?n?|e?xtn?|доб|anexo)",p="(?:[xx##~~]|int|int)",h="[- ]+",f="[ \\t]*",l="(?:,{2}|;)",c=Jc+Qt(n),_=r+u+s+Qt(n)+d,v=r+p+s+Qt(o)+d,b=h+Qt(a)+"#",g=f+l+s+Qt(e)+d,y=f+"(?:,)+"+s+Qt(o)+d;return c+"|"+_+"|"+v+"|"+b+"|"+g+"|"+y}var Xc="["+pt+"]{"+xr+"}",Qc="["+Ar+"]{0,1}(?:["+zn+"]*["+pt+"]){3,}["+zn+pt+"]*",eu=new RegExp("^["+Ar+"]{0,1}(?:["+zn+"]*["+pt+"]){1,2}$","i"),tu=Qc+"(?:"+no()+")?",nu=new RegExp("^"+Xc+"$|^"+tu+"$","i");function ru(t){return t.length>=xr&&nu.test(t)}function iu(t){return eu.test(t)}var ro=new RegExp("(?:"+no()+")$","i");function ou(t){var n=t.search(ro);if(n<0)return{};for(var e=t.slice(0,n),o=t.match(ro),a=1;a<o.length;){if(o[a])return{number:e,ext:o[a]};a++}}var au={0:"0",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9","0":"0","1":"1","2":"2","3":"3","4":"4","5":"5","6":"6","7":"7","8":"8","9":"9","٠":"0","١":"1","٢":"2","٣":"3","٤":"4","٥":"5","٦":"6","٧":"7","٨":"8","٩":"9","۰":"0","۱":"1","۲":"2","۳":"3","۴":"4","۵":"5","۶":"6","۷":"7","۸":"8","۹":"9"};function lu(t){return au[t]}function su(t,n){var e=typeof Symbol<"u"&&t[Symbol.iterator]||t["@@iterator"];if(e)return(e=e.call(t)).next.bind(e);if(Array.isArray(t)||(e=du(t))||n&&t&&typeof t.length=="number"){e&&(t=e);var o=0;return function(){return o>=t.length?{done:!0}:{done:!1,value:t[o++]}}}throw new TypeError(`Invalid attempt to iterate non-iterable instance.
|
|
83
|
-
In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function
|
|
84
|
-
In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function
|
|
85
|
-
In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function
|
|
86
|
-
In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function
|
|
87
|
-
In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function
|
|
88
|
-
In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function kf(t,n){if(t){if(typeof t=="string")return Oo(t,n);var e=Object.prototype.toString.call(t).slice(8,-1);if(e==="Object"&&t.constructor&&(e=t.constructor.name),e==="Map"||e==="Set")return Array.from(t);if(e==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(e))return Oo(t,n)}}function Oo(t,n){(n==null||n>t.length)&&(n=t.length);for(var e=0,o=new Array(n);e<n;e++)o[e]=t[e];return o}function Cf(t,n){var e=t==null?null:typeof Symbol<"u"&&t[Symbol.iterator]||t["@@iterator"];if(e!=null){var o=[],a=!0,r=!1,s,d;try{for(e=e.call(t);!(a=(s=e.next()).done)&&(o.push(s.value),!(n&&o.length===n));a=!0);}catch(u){r=!0,d=u}finally{try{!a&&e.return!=null&&e.return()}finally{if(r)throw d}}return o}}function Of(t){if(Array.isArray(t))return t}function Ef(t){var n=Array.prototype.slice.call(t),e=$f(n,4),o=e[0],a=e[1],r=e[2],s=e[3],d,u,p;if(typeof o=="string")d=o;else throw new TypeError("A text for parsing must be a string.");if(!a||typeof a=="string")s?(u=r,p=s):(u=void 0,p=r),a&&(u=bf({defaultCountry:a},u));else if(Un(a))r?(u=a,p=r):p=a;else throw new Error("Invalid second argument: ".concat(a));return{text:d,options:u,metadata:p}}function Eo(t,n){var e=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);n&&(o=o.filter(function(a){return Object.getOwnPropertyDescriptor(t,a).enumerable})),e.push.apply(e,o)}return e}function So(t){for(var n=1;n<arguments.length;n++){var e=arguments[n]!=null?arguments[n]:{};n%2?Eo(Object(e),!0).forEach(function(o){Sf(t,o,e[o])}):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(e)):Eo(Object(e)).forEach(function(o){Object.defineProperty(t,o,Object.getOwnPropertyDescriptor(e,o))})}return t}function Sf(t,n,e){return n in t?Object.defineProperty(t,n,{value:e,enumerable:!0,configurable:!0,writable:!0}):t[n]=e,t}function Tf(t,n,e){n&&n.defaultCountry&&!Zc(n.defaultCountry,e)&&(n=So(So({},n),{},{defaultCountry:void 0}));try{return vf(t,n,e)}catch(o){if(!(o instanceof St))throw o}}function Nf(){var t=Ef(arguments),n=t.text,e=t.options,o=t.metadata;return Tf(n,e,o)}function qr(){return Ec(Nf,arguments)}const xf={beforeMount(t,n,e){if(typeof n.value!="function"){const o=e.context.name;let a=`[Vue-click-outside:] provided expression ${n.expression} is not a function, but has to be`;o&&(a+=`Found in component ${o}`),console.warn(a)}t.clickOutsideEvent=function(o){const a=o.composedPath?o.composedPath():o.path;t===o.target||t.contains(o.target)||a.includes(t)||n.value(o,t)},document.body.addEventListener("click",t.clickOutsideEvent)},unmounted(t){document.body.removeEventListener("click",t.clickOutsideEvent)}},Af=(t,n)=>{const e=t.__vccOpts||t;for(const[o,a]of n)e[o]=a;return e};function tt(t){const n=Ki.options[t];return typeof n>"u"?Ki.options[t]:n}const Df={name:"VueTelInput",directives:{clickOutside:xf},props:{modelValue:{type:String,default:""},allCountries:{type:Array,default:()=>tt("allCountries")},autoFormat:{type:Boolean,default:()=>tt("autoFormat")},customValidate:{type:[Boolean,RegExp],default:()=>tt("customValidate")},defaultCountry:{type:[String,Number],default:()=>tt("defaultCountry")},disabled:{type:Boolean,default:()=>tt("disabled")},autoDefaultCountry:{type:Boolean,default:()=>tt("autoDefaultCountry")},dropdownOptions:{type:Object,default:()=>tt("dropdownOptions")},ignoredCountries:{type:Array,default:()=>tt("ignoredCountries")},inputOptions:{type:Object,default:()=>tt("inputOptions")},invalidMsg:{type:String,default:()=>tt("invalidMsg")},mode:{type:String,default:()=>tt("mode")},onlyCountries:{type:Array,default:()=>tt("onlyCountries")},preferredCountries:{type:Array,default:()=>tt("preferredCountries")},validCharactersOnly:{type:Boolean,default:()=>tt("validCharactersOnly")},styleClasses:{type:[String,Array,Object],default:()=>tt("styleClasses")}},data(){return{phone:"",activeCountryCode:"",open:!1,finishMounted:!1,selectedIndex:null,typeToFindInput:"",typeToFindTimer:null,dropdownOpenDirection:"below",parsedPlaceholder:this.inputOptions.placeholder,searchQuery:""}},computed:{activeCountry(){return this.findCountry(this.activeCountryCode)},parsedMode(){return this.mode==="auto"?!this.phone||this.phone[0]!=="+"?"national":"international":["international","national"].includes(this.mode)?this.mode:(console.error('Invalid value of prop "mode"'),"international")},filteredCountries(){return this.onlyCountries.length?this.allCountries.filter(({iso2:t})=>this.onlyCountries.some(n=>n.toUpperCase()===t)):this.ignoredCountries.length?this.allCountries.filter(({iso2:t})=>!this.ignoredCountries.includes(t.toUpperCase())&&!this.ignoredCountries.includes(t.toLowerCase())):this.allCountries},sortedCountries(){const t=[...this.getCountries(this.preferredCountries).map(e=>({...e,preferred:!0})),...this.filteredCountries];if(!this.dropdownOptions.showSearchBox)return t;const n=this.searchQuery.replace(/[~`!@#$%^&*()+={}\[\];:\'\"<>.,\/\\\?-_]/g,"");return t.filter(e=>new RegExp(n,"i").test(e.name)||new RegExp(n,"i").test(e.iso2)||new RegExp(n,"i").test(e.dialCode))},phoneObject(){var t,n,e;let o;((t=this.phone)==null?void 0:t[0])==="+"?o=qr(this.phone)||{}:o=qr(this.phone,this.activeCountryCode)||{};const{metadata:a,...r}=o;let s=(n=o.isValid)==null?void 0:n.call(o),d=this.phone;return s&&(d=(e=o.format)==null?void 0:e.call(o,this.parsedMode.toUpperCase())),o.country&&(this.ignoredCountries.length||this.onlyCountries.length)&&(this.findCountry(o.country)||(s=!1,Object.assign(o,{country:null}))),Object.assign(r,{countryCode:o.country,valid:s,country:this.activeCountry,formatted:d}),r}},watch:{activeCountry(t,n){if(!t&&n!=null&&n.iso2){this.activeCountryCode=n.iso2;return}t!=null&&t.iso2&&this.$emit("country-changed",t)},"phoneObject.countryCode":function(t){this.activeCountryCode=t||""},"phoneObject.valid":function(){this.$emit("validate",this.phoneObject)},"phoneObject.formatted":function(t){!this.autoFormat||this.customValidate||(this.emitInput(t),this.$nextTick(()=>{t&&!this.modelValue&&(this.phone=t)}))},"inputOptions.placeholder":function(){this.resetPlaceholder()},modelValue(t,n){this.testCharacters()?this.phone=t:this.$nextTick(()=>{this.phone=n,this.onInput()})},open(t){t?(this.setDropdownPosition(),this.$emit("open")):this.$emit("close")}},mounted(){this.modelValue&&(this.phone=this.modelValue.trim()),this.cleanInvalidCharacters(),this.initializeCountry().then(()=>{var t;!this.phone&&(t=this.inputOptions)!=null&&t.showDialCode&&this.activeCountryCode&&(this.phone=`+${this.activeCountryCode}`),this.$emit("validate",this.phoneObject)}).catch(console.error).then(()=>{this.finishMounted=!0})},methods:{resetPlaceholder(){this.parsedPlaceholder=this.inputOptions.placeholder},initializeCountry(){return new Promise(t=>{var n;if(((n=this.phone)==null?void 0:n[0])==="+"){t();return}if(this.defaultCountry){if(typeof this.defaultCountry=="string"){this.choose(this.defaultCountry),t();return}if(typeof this.defaultCountry=="number"){const o=this.findCountryByDialCode(this.defaultCountry);if(o){this.choose(o.iso2),t();return}}}const e=this.preferredCountries[0]||this.filteredCountries[0];this.autoDefaultCountry?$c().then(o=>{this.choose(o||this.activeCountryCode)}).catch(o=>{console.warn(o),this.choose(e)}).then(()=>{t()}):(this.choose(e),t())})},getCountries(t=[]){return t.map(n=>this.findCountry(n)).filter(Boolean)},findCountry(t=""){return this.filteredCountries.find(n=>n.iso2===t.toUpperCase())},findCountryByDialCode(t){return this.filteredCountries.find(n=>Number(n.dialCode)===t)},getItemClass(t,n){const e=this.selectedIndex===t,o=t===this.preferredCountries.length-1,a=this.preferredCountries.some(r=>r.toUpperCase()===n);return{highlighted:e,"last-preferred":o,preferred:a}},choose(t){var n,e;let o=t;if(typeof o=="string"&&(o=this.findCountry(o)),!!o){if(((n=this.phone)==null?void 0:n[0])==="+"&&o.iso2&&this.phoneObject.nationalNumber){this.activeCountryCode=o.iso2,this.phone=qr(this.phoneObject.nationalNumber,o.iso2).formatInternational();return}if((e=this.inputOptions)!=null&&e.showDialCode&&o){this.phone=`+${o.dialCode}`,this.activeCountryCode=o.iso2||"";return}this.activeCountryCode=o.iso2||"",this.emitInput(this.phone)}},cleanInvalidCharacters(){const t=this.phone;if(this.validCharactersOnly){const n=this.phone.match(/[()\-+0-9\s]*/g);this.phone=n.join("")}if(this.customValidate&&this.customValidate instanceof RegExp){const n=this.phone.match(this.customValidate);this.phone=n.join("")}t!==this.phone&&this.emitInput(this.phone)},testCharacters(){return this.validCharactersOnly&&!/^[()\-+0-9\s]*$/.test(this.phone)?!1:this.customValidate?this.testCustomValidate():!0},testCustomValidate(){return this.customValidate instanceof RegExp?this.customValidate.test(this.phone):!1},onInput(){this.$refs.input.setCustomValidity(this.phoneObject.valid?"":this.invalidMsg),this.emitInput(this.phone)},emitInput(t){this.$emit("update:modelValue",t),this.$emit("on-input",t,this.phoneObject,this.$refs.input)},onBlur(){this.$emit("blur")},onFocus(){wc(this.$refs.input,this.phone.length),this.$emit("focus")},onEnter(){this.$emit("enter")},onSpace(){this.$emit("space")},focus(){this.$refs.input.focus()},toggleDropdown(){this.disabled||this.dropdownOptions.disabled||(this.searchQuery="",this.open=!this.open)},clickedOutside(){this.open=!1},keyboardNav(t){if(t.keyCode===40){t.preventDefault(),this.open=!0,this.selectedIndex===null?this.selectedIndex=0:this.selectedIndex=Math.min(this.sortedCountries.length-1,this.selectedIndex+1);const n=this.$refs.list.children[this.selectedIndex];n.focus(),n.offsetTop+n.clientHeight>this.$refs.list.scrollTop+this.$refs.list.clientHeight&&(this.$refs.list.scrollTop=n.offsetTop-this.$refs.list.clientHeight+n.clientHeight)}else if(t.keyCode===38){t.preventDefault(),this.open=!0,this.selectedIndex===null?this.selectedIndex=this.sortedCountries.length-1:this.selectedIndex=Math.max(0,this.selectedIndex-1);const n=this.$refs.list.children[this.selectedIndex];n.focus(),n.offsetTop<this.$refs.list.scrollTop&&(this.$refs.list.scrollTop=n.offsetTop)}else if(t.keyCode===13)this.selectedIndex!==null&&this.choose(this.sortedCountries[this.selectedIndex]),this.open=!this.open;else{this.typeToFindInput+=t.key,clearTimeout(this.typeToFindTimer),this.typeToFindTimer=setTimeout(()=>{this.typeToFindInput=""},700);const n=this.sortedCountries.slice(this.preferredCountries.length).findIndex(e=>e.name.toLowerCase().startsWith(this.typeToFindInput));if(n>=0){this.selectedIndex=this.preferredCountries.length+n;const e=this.$refs.list.children[this.selectedIndex],o=e.offsetTop<this.$refs.list.scrollTop,a=e.offsetTop+e.clientHeight>this.$refs.list.scrollTop+this.$refs.list.clientHeight;(o||a)&&(this.$refs.list.scrollTop=e.offsetTop-this.$refs.list.clientHeight/2)}}},reset(){this.selectedIndex=this.sortedCountries.map(t=>t.iso2).indexOf(this.activeCountryCode),this.open=!1},setDropdownPosition(){window.innerHeight-this.$el.getBoundingClientRect().bottom>200?this.dropdownOpenDirection="below":this.dropdownOpenDirection="above"}}},If=["aria-expanded","tabindex"],Mf={class:"vti__selection"},Pf={key:1,class:"vti__country-code"},Bf={class:"vti__dropdown-arrow"},Lf=["placeholder"],Rf=["onClick","onMousemove","aria-selected"],jf={key:1},Vf=["type","autocomplete","autofocus","disabled","id","maxlength","name","placeholder","readonly","required","tabindex","value","aria-describedby"];function qf(t,n,e,o,a,r){const s=i.resolveDirective("click-outside");return i.openBlock(),i.createElementBlock("div",{class:i.normalizeClass(["vue-tel-input",e.styleClasses,{disabled:e.disabled}])},[i.withDirectives((i.openBlock(),i.createElementBlock("div",{"aria-label":"Country Code Selector","aria-haspopup":"listbox","aria-expanded":a.open,role:"button",class:i.normalizeClass(["vti__dropdown",{open:a.open,disabled:e.dropdownOptions.disabled}]),tabindex:e.dropdownOptions.tabindex,onKeydown:[n[2]||(n[2]=(...d)=>r.keyboardNav&&r.keyboardNav(...d)),n[4]||(n[4]=i.withKeys((...d)=>r.toggleDropdown&&r.toggleDropdown(...d),["space"])),n[5]||(n[5]=i.withKeys((...d)=>r.reset&&r.reset(...d),["esc"])),n[6]||(n[6]=i.withKeys((...d)=>r.reset&&r.reset(...d),["tab"]))],onClick:n[3]||(n[3]=(...d)=>r.toggleDropdown&&r.toggleDropdown(...d))},[i.createElementVNode("span",Mf,[e.dropdownOptions.showFlags?(i.openBlock(),i.createElementBlock("span",{key:0,class:i.normalizeClass(["vti__flag",a.activeCountryCode.toLowerCase()])},null,2)):i.createCommentVNode("",!0),e.dropdownOptions.showDialCodeInSelection?(i.openBlock(),i.createElementBlock("span",Pf," +"+i.toDisplayString(r.activeCountry&&r.activeCountry.dialCode),1)):i.createCommentVNode("",!0),i.renderSlot(t.$slots,"arrow-icon",{open:a.open},()=>[i.createElementVNode("span",Bf,i.toDisplayString(a.open?"▲":"▼"),1)])]),a.open?(i.openBlock(),i.createElementBlock("ul",{key:0,ref:"list",class:i.normalizeClass(["vti__dropdown-list",a.dropdownOpenDirection]),role:"listbox"},[e.dropdownOptions.showSearchBox?i.withDirectives((i.openBlock(),i.createElementBlock("input",{key:0,class:"vti__input vti__search_box","aria-label":"Search by country name or country code",placeholder:r.sortedCountries.length?r.sortedCountries[0].name:"",type:"text","onUpdate:modelValue":n[0]||(n[0]=d=>a.searchQuery=d),onClick:n[1]||(n[1]=i.withModifiers(()=>{},["stop"]))},null,8,Lf)),[[i.vModelText,a.searchQuery]]):i.createCommentVNode("",!0),(i.openBlock(!0),i.createElementBlock(i.Fragment,null,i.renderList(r.sortedCountries,(d,u)=>(i.openBlock(),i.createElementBlock("li",{role:"option",class:i.normalizeClass(["vti__dropdown-item",r.getItemClass(u,d.iso2)]),key:d.iso2+(d.preferred?"-preferred":""),tabindex:"-1",onClick:p=>r.choose(d),onMousemove:p=>a.selectedIndex=u,"aria-selected":a.activeCountryCode===d.iso2&&!d.preferred},[e.dropdownOptions.showFlags?(i.openBlock(),i.createElementBlock("span",{key:0,class:i.normalizeClass(["vti__flag",d.iso2.toLowerCase()])},null,2)):i.createCommentVNode("",!0),i.createElementVNode("strong",null,i.toDisplayString(d.name),1),e.dropdownOptions.showDialCodeInList?(i.openBlock(),i.createElementBlock("span",jf," +"+i.toDisplayString(d.dialCode),1)):i.createCommentVNode("",!0)],42,Rf))),128))],2)):i.createCommentVNode("",!0)],42,If)),[[s,r.clickedOutside]]),i.withDirectives(i.createElementVNode("input",{"onUpdate:modelValue":n[7]||(n[7]=d=>a.phone=d),ref:"input",type:e.inputOptions.type,autocomplete:e.inputOptions.autocomplete,autofocus:e.inputOptions.autofocus,class:i.normalizeClass(["vti__input",e.inputOptions.styleClasses]),disabled:e.disabled,id:e.inputOptions.id,maxlength:e.inputOptions.maxlength,name:e.inputOptions.name,placeholder:a.parsedPlaceholder,readonly:e.inputOptions.readonly,required:e.inputOptions.required,tabindex:e.inputOptions.tabindex,value:e.modelValue,"aria-describedby":e.inputOptions["aria-describedby"],onBlur:n[8]||(n[8]=(...d)=>r.onBlur&&r.onBlur(...d)),onFocus:n[9]||(n[9]=(...d)=>r.onFocus&&r.onFocus(...d)),onInput:n[10]||(n[10]=(...d)=>r.onInput&&r.onInput(...d)),onKeyup:[n[11]||(n[11]=i.withKeys((...d)=>r.onEnter&&r.onEnter(...d),["enter"])),n[12]||(n[12]=i.withKeys((...d)=>r.onSpace&&r.onSpace(...d),["space"]))]},null,42,Vf),[[i.vModelDynamic,a.phone]]),i.renderSlot(t.$slots,"icon-right")],2)}const Ff=Af(Df,[["render",qf]]),F1="",H1="",Hf={directives:{Outside:Pn},props:{inputName:{type:String,default:"phone"},autoDefaultCountry:{type:Boolean,default:!0},value:{type:String,default:""},ignoredCountries:{type:Array,default:()=>[]},error:{type:Boolean,default:!1},errorMessage:{type:String,default:""}},components:{VueTelInput:Ff,IbAlert:Pt,IbIcon:Le},data(){return{vueTel:null,phone:"",dialCode:"",defaultCountry:"US"}},mounted(){this.vueTel=this.$refs.vueTel,this.value&&(this.phone=this.value[0]==="+"?this.value:"+"+this.value)},methods:{countryChanged(t){this.$globalEvents.$on("countrySelectValue",n=>{this.vueTel.choose(n)}),!this.phone||this.phone.length-1<this.dialCode.length?this.phone="+"+t.dialCode:this.dialCode&&(this.phone=this.phone.replace(this.dialCode,t.dialCode)),this.dialCode=t.dialCode},clickOutside(){this.vueTel.open&&this.vueTel.clickedOutside()}}};function zf(t,n,e,o,a,r){const s=i.resolveComponent("ib-alert"),d=i.resolveComponent("ib-icon"),u=i.resolveComponent("vue-tel-input"),p=i.resolveDirective("outside");return i.openBlock(),i.createElementBlock(i.Fragment,null,[e.errorMessage.length?(i.openBlock(),i.createBlock(s,{key:0,class:"ib-phone-error-message"},{default:i.withCtx(()=>[i.createTextVNode(i.toDisplayString(e.errorMessage),1)]),_:1})):i.createCommentVNode("",!0),i.withDirectives((i.openBlock(),i.createBlock(u,i.mergeProps({modelValue:a.phone,"onUpdate:modelValue":n[0]||(n[0]=h=>a.phone=h)},t.$attrs,{onCountryChanged:r.countryChanged,"input-options":{name:e.inputName,id:e.inputName},"auto-default-country":e.autoDefaultCountry,"dropdown-options":{showSearchBox:!0,showFlags:!0},defaultCountry:a.defaultCountry,ignoredCountries:e.ignoredCountries,class:{error:e.error||e.errorMessage.length},"style-classes":"ib-phone-input",ref:"vueTel"}),{"arrow-icon":i.withCtx(()=>[i.createVNode(d,{name:"chevron-down-outline"})]),_:1},16,["modelValue","onCountryChanged","input-options","auto-default-country","defaultCountry","ignoredCountries","class"])),[[p,r.clickOutside]])],64)}const Uf=_e(Hf,[["render",zf]]);var To={exports:{}};/*!
|
|
85
|
+
`,Lp="",Uu="single",Jr="range",Ku={props:{name:{type:String,default:"Date"},modelValue:[String,Array],value:[String,Array],placeholder:{type:String,default:""},endDatePlaceholder:{type:String,default:""},required:{type:Boolean,default:!1},config:{type:Object,default:()=>{}},mode:{type:String,default:Uu},ariaLabel:{type:String,default:""},endDateAriaLabel:{type:String,default:""},label:{type:String,default:""},endDateLabel:{type:String,default:""},supportText:{type:String,default:""},endDateSupportText:{type:String,default:""},errorMessage:{type:String,default:""},disabled:{type:Boolean,default:!1}},mounted(){document.addEventListener("keyup",this.onDocumentKeyDown,!0),this.$refs.inputsWrapper.addEventListener("keyup",this.backspaceHandler),this.$nextTick(()=>{this.initFlatpickr()})},watch:{config(){this.initFlatpickr()},value(){this.initFlatpickr()},disabled(){this.$nextTick(()=>{this.initFlatpickr()})},modelValue(){var n;if(JSON.stringify(this.modelValue)===JSON.stringify(this.data))return;let t;Array.isArray(this.modelValue)?t=this.modelValue[0]&&this.modelValue[1]?this.modelValue:[]:t=this.modelValue,(n=this.flat)==null||n.setDate(t,!0)}},data(){return{pickerOptions:{},data:this.modelValue,flat:null,isOpen:!1,isOpenEndDate:!1}},methods:{initFlatpickr(){this.flat=new Ve(this.$refs.date,this.pickerConfigs())},pickerConfigs(){var o,a;const t=document.querySelectorAll(".calendar-icon");let n={dateFormat:"Y-m-d",altInput:!0,altFormat:"Y-m-d",position:"left",mode:this.mode,appendTo:this.$refs.dropdown,prevArrow:Hu,nextArrow:zu,ignoredFocusElements:Array.from(t),locale:{weekdays:{shorthand:["S","M","T","W","T","F","S"],longhand:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"]}},onReady(r,s,l){l.setDate(s,!0)},onChange:(r,s)=>this.onChange(s),onClose:()=>this.onClose()};this.mode===Jr&&(n.plugins=[new Fu({input:this.$refs.toDate})]),(this.value||this.modelValue)&&(this.mode===Jr?n.defaultDate=this.modelValue.length?[this.modelValue[0],this.modelValue[1]]:[(o=this.value)==null?void 0:o[0],(a=this.value)==null?void 0:a[1]]:n.defaultDate=this.modelValue?this.modelValue:this.value);const e=Object.assign({},n,this.config);return this.pickerOptions=e,e},onClose(){this.triggerChange(),this.$nextTick(()=>{this.isOpen=!1,this.isOpenEndDate=!1,this.$emit("blur")})},onChange(t){this.mode===Jr?this.data=t.split(" to "):this.data=t},onDocumentKeyDown(t){t.keyCode===Lr&&this.onClose()},onKeydownEndField(t){t.key==="ArrowDown"&&this.flat.selectedDateElem.focus()},backspaceHandler(t){t.keyCode===bs&&(this.$emit("input",""),this.$emit("update:modelValue",""))},triggerChange(){setTimeout(()=>{if(this.pickerOptions.mode==="range"){let t=this.data;t.length<2?(this.$emit("input",""),this.$emit("update:modelValue",this.data)):(this.$emit("input",[t[0],t[1]]),this.$emit("update:modelValue",this.data))}else this.data===""?(this.$emit("input",""),this.$emit("update:modelValue",this.data)):(this.$emit("input",this.data),this.$emit("update:modelValue",this.data)),this.$emit("blur")})},open(){this.isOpen||(this.isOpen=!0,this.isOpenEndDate=!1,this.flat.open())},openEndDate(){this.isOpen=!1,this.isOpenEndDate=!0,this.$refs.toDate.click()}},computed:{values(){var t;return this.data?(t=this.data)==null?void 0:t.split(" to "):[]}},beforeUnmount(){document.removeEventListener("keyup",this.onDocumentKeyDown),this.$refs.inputsWrapper.removeEventListener("keyup",this.backspaceHandler)},components:{IbIcon:Le,IbLabel:kn,IbAlert:Ft},emits:["input","update:modelValue"]},Gu={ref:"inputsWrapper",class:"inputs-wrapper"},Wu={class:"input-group-wrapper"},Yu=["aria-label"],Zu=["placeholder","name","disabled"],Ju={ref:"dropdown",class:"dropdown"},Xu={key:1,class:"support-text"},Qu={key:0,class:"input-group-wrapper"},ef=["aria-label"],tf=["placeholder"],nf={key:1,class:"support-text"};function rf(t,n,e,o,a,r){const s=i.resolveComponent("ib-alert"),l=i.resolveComponent("ib-label"),u=i.resolveComponent("ib-icon");return i.openBlock(),i.createElementBlock("div",{class:i.normalizeClass(["ib-flatpickr-wrapper",{"has-labels":e.label.length||e.endDateLabel.length,"has-label":e.label.length,"has-error":e.errorMessage.length,"is-disabled":e.disabled,"is-range":e.mode==="range"}])},[e.errorMessage.length?(i.openBlock(),i.createBlock(s,{key:0,class:"error-message"},{default:i.withCtx(()=>[i.createTextVNode(i.toDisplayString(e.errorMessage),1)]),_:1})):i.createCommentVNode("",!0),i.createElementVNode("div",Gu,[i.createElementVNode("div",Wu,[e.label.length?(i.openBlock(),i.createBlock(l,{key:0,class:"label",required:e.required},{default:i.withCtx(()=>[i.createTextVNode(i.toDisplayString(e.label),1)]),_:1},8,["required"])):i.createCommentVNode("",!0),i.createElementVNode("div",{class:i.normalizeClass(["input-wrapper",{active:a.isOpen}]),onClick:n[0]||(n[0]=(...d)=>r.open&&r.open(...d))},[i.createElementVNode("label",{"aria-label":e.ariaLabel},[i.createElementVNode("input",{placeholder:e.placeholder,name:e.name,ref:"date",id:"date",disabled:e.disabled,class:"date-picker-input"},null,8,Zu)],8,Yu),i.createVNode(u,{name:"today-outline",class:"calendar-icon"})],2),i.createElementVNode("div",Ju,null,512),e.supportText.length?(i.openBlock(),i.createElementBlock("p",Xu,i.toDisplayString(e.supportText),1)):i.createCommentVNode("",!0)]),e.mode==="range"?(i.openBlock(),i.createElementBlock("div",Qu,[e.endDateLabel.length?(i.openBlock(),i.createBlock(l,{key:0,class:"end-date-label label",required:e.required},{default:i.withCtx(()=>[i.createTextVNode(i.toDisplayString(e.endDateLabel),1)]),_:1},8,["required"])):i.createCommentVNode("",!0),i.createElementVNode("div",{class:i.normalizeClass(["input-wrapper",{active:a.isOpenEndDate}]),onClick:n[2]||(n[2]=(...d)=>r.openEndDate&&r.openEndDate(...d))},[i.createElementVNode("label",{"aria-label":e.endDateAriaLabel},[i.createElementVNode("input",{class:"date-picker-input",placeholder:e.endDatePlaceholder,ref:"toDate",onKeydown:n[1]||(n[1]=(...d)=>r.onKeydownEndField&&r.onKeydownEndField(...d))},null,40,tf)],8,ef),i.createVNode(u,{name:"today-outline",class:"calendar-icon"})],2),e.endDateSupportText.length?(i.openBlock(),i.createElementBlock("p",nf,i.toDisplayString(e.endDateSupportText),1)):i.createCommentVNode("",!0)])):i.createCommentVNode("",!0)],512)],2)}const of=_e(Ku,[["render",rf]]),af=[["Afghanistan (افغانستان)","af","93"],["Albania (Shqipëri)","al","355"],["Algeria (الجزائر)","dz","213"],["American Samoa","as","1",5,["684"]],["Andorra","ad","376"],["Angola","ao","244"],["Anguilla","ai","1",6,["264"]],["Antigua and Barbuda","ag","1",7,["268"]],["Argentina","ar","54"],["Armenia (Հայաստան)","am","374"],["Aruba","aw","297"],["Ascension Island","ac","247"],["Australia","au","61",0],["Austria (Österreich)","at","43"],["Azerbaijan (Azərbaycan)","az","994"],["Bahamas","bs","1",8,["242"]],["Bahrain (البحرين)","bh","973"],["Bangladesh (বাংলাদেশ)","bd","880"],["Barbados","bb","1",9,["246"]],["Belarus (Беларусь)","by","375"],["Belgium (België)","be","32"],["Belize","bz","501"],["Benin (Bénin)","bj","229"],["Bermuda","bm","1",10,["441"]],["Bhutan (འབྲུག)","bt","975"],["Bolivia","bo","591"],["Bosnia and Herzegovina (Босна и Херцеговина)","ba","387"],["Botswana","bw","267"],["Brazil (Brasil)","br","55"],["British Indian Ocean Territory","io","246"],["British Virgin Islands","vg","1",11,["284"]],["Brunei","bn","673"],["Bulgaria (България)","bg","359"],["Burkina Faso","bf","226"],["Burundi (Uburundi)","bi","257"],["Cambodia (កម្ពុជា)","kh","855"],["Cameroon (Cameroun)","cm","237"],["Canada","ca","1",1,["204","226","236","249","250","263","289","306","343","354","365","367","368","382","387","403","416","418","428","431","437","438","450","584","468","474","506","514","519","548","579","581","584","587","604","613","639","647","672","683","705","709","742","753","778","780","782","807","819","825","867","873","902","905"]],["Cape Verde (Kabu Verdi)","cv","238"],["Caribbean Netherlands","bq","599",1,["3","4","7"]],["Cayman Islands","ky","1",12,["345"]],["Central African Republic (République centrafricaine)","cf","236"],["Chad (Tchad)","td","235"],["Chile","cl","56"],["China (中国)","cn","86"],["Christmas Island","cx","61",2,["89164"]],["Cocos (Keeling) Islands","cc","61",1,["89162"]],["Colombia","co","57"],["Comoros (جزر القمر)","km","269"],["Congo (DRC) (République démocratique du Congo)","cd","243"],["Congo (Republic) (Congo-Brazzaville)","cg","242"],["Cook Islands","ck","682"],["Costa Rica","cr","506"],["Côte d’Ivoire","ci","225"],["Croatia (Hrvatska)","hr","385"],["Cuba","cu","53"],["Curaçao","cw","599",0],["Cyprus (Κύπρος)","cy","357"],["Czech Republic (Česká republika)","cz","420"],["Denmark (Danmark)","dk","45"],["Djibouti","dj","253"],["Dominica","dm","1",13,["767"]],["Dominican Republic (República Dominicana)","do","1",2,["809","829","849"]],["Ecuador","ec","593"],["Egypt (مصر)","eg","20"],["El Salvador","sv","503"],["Equatorial Guinea (Guinea Ecuatorial)","gq","240"],["Eritrea","er","291"],["Estonia (Eesti)","ee","372"],["Eswatini","sz","268"],["Ethiopia","et","251"],["Falkland Islands (Islas Malvinas)","fk","500"],["Faroe Islands (Føroyar)","fo","298"],["Fiji","fj","679"],["Finland (Suomi)","fi","358",0],["France","fr","33"],["French Guiana (Guyane française)","gf","594"],["French Polynesia (Polynésie française)","pf","689"],["Gabon","ga","241"],["Gambia","gm","220"],["Georgia (საქართველო)","ge","995"],["Germany (Deutschland)","de","49"],["Ghana (Gaana)","gh","233"],["Gibraltar","gi","350"],["Greece (Ελλάδα)","gr","30"],["Greenland (Kalaallit Nunaat)","gl","299"],["Grenada","gd","1",14,["473"]],["Guadeloupe","gp","590",0],["Guam","gu","1",15,["671"]],["Guatemala","gt","502"],["Guernsey","gg","44",1,["1481","7781","7839","7911"]],["Guinea (Guinée)","gn","224"],["Guinea-Bissau (Guiné Bissau)","gw","245"],["Guyana","gy","592"],["Haiti","ht","509"],["Honduras","hn","504"],["Hong Kong (香港)","hk","852"],["Hungary (Magyarország)","hu","36"],["Iceland (Ísland)","is","354"],["India (भारत)","in","91"],["Indonesia","id","62"],["Iran (ایران)","ir","98"],["Iraq (العراق)","iq","964"],["Ireland","ie","353"],["Isle of Man","im","44",2,["1624","74576","7524","7924","7624"]],["Israel (ישראל)","il","972"],["Italy (Italia)","it","39",0],["Jamaica","jm","1",4,["876","658"]],["Japan (日本)","jp","81"],["Jersey","je","44",3,["1534","7509","7700","7797","7829","7937"]],["Jordan (الأردن)","jo","962"],["Kazakhstan (Казахстан)","kz","7",1,["33","7"]],["Kenya","ke","254"],["Kiribati","ki","686"],["Kosovo","xk","383"],["Kuwait (الكويت)","kw","965"],["Kyrgyzstan (Кыргызстан)","kg","996"],["Laos (ລາວ)","la","856"],["Latvia (Latvija)","lv","371"],["Lebanon (لبنان)","lb","961"],["Lesotho","ls","266"],["Liberia","lr","231"],["Libya (ليبيا)","ly","218"],["Liechtenstein","li","423"],["Lithuania (Lietuva)","lt","370"],["Luxembourg","lu","352"],["Macau (澳門)","mo","853"],["Madagascar (Madagasikara)","mg","261"],["Malawi","mw","265"],["Malaysia","my","60"],["Maldives","mv","960"],["Mali","ml","223"],["Malta","mt","356"],["Marshall Islands","mh","692"],["Martinique","mq","596"],["Mauritania (موريتانيا)","mr","222"],["Mauritius (Moris)","mu","230"],["Mayotte","yt","262",1,["269","639"]],["Mexico (México)","mx","52"],["Micronesia","fm","691"],["Moldova (Republica Moldova)","md","373"],["Monaco","mc","377"],["Mongolia (Монгол)","mn","976"],["Montenegro (Crna Gora)","me","382"],["Montserrat","ms","1",16,["664"]],["Morocco (المغرب)","ma","212",0],["Mozambique (Moçambique)","mz","258"],["Myanmar (Burma) (မြန်မာ)","mm","95"],["Namibia (Namibië)","na","264"],["Nauru","nr","674"],["Nepal (नेपाल)","np","977"],["Netherlands (Nederland)","nl","31"],["New Caledonia (Nouvelle-Calédonie)","nc","687"],["New Zealand","nz","64"],["Nicaragua","ni","505"],["Niger (Nijar)","ne","227"],["Nigeria","ng","234"],["Niue","nu","683"],["Norfolk Island","nf","672"],["North Korea (조선 민주주의 인민 공화국)","kp","850"],["North Macedonia (Северна Македонија)","mk","389"],["Northern Mariana Islands","mp","1",17,["670"]],["Norway (Norge)","no","47",0],["Oman (عُمان)","om","968"],["Pakistan (پاکستان)","pk","92"],["Palau","pw","680"],["Palestine (فلسطين)","ps","970"],["Panama (Panamá)","pa","507"],["Papua New Guinea","pg","675"],["Paraguay","py","595"],["Peru (Perú)","pe","51"],["Philippines","ph","63"],["Poland (Polska)","pl","48"],["Portugal","pt","351"],["Puerto Rico","pr","1",3,["787","939"]],["Qatar (قطر)","qa","974"],["Réunion (La Réunion)","re","262",0],["Romania (România)","ro","40"],["Russia (Россия)","ru","7",0],["Rwanda","rw","250"],["Saint Barthélemy","bl","590",1],["Saint Helena","sh","290"],["Saint Kitts and Nevis","kn","1",18,["869"]],["Saint Lucia","lc","1",19,["758"]],["Saint Martin (Saint-Martin (partie française))","mf","590",2],["Saint Pierre and Miquelon (Saint-Pierre-et-Miquelon)","pm","508"],["Saint Vincent and the Grenadines","vc","1",20,["784"]],["Samoa","ws","685"],["San Marino","sm","378"],["São Tomé and Príncipe (São Tomé e Príncipe)","st","239"],["Saudi Arabia (المملكة العربية السعودية)","sa","966"],["Senegal (Sénégal)","sn","221"],["Serbia (Србија)","rs","381"],["Seychelles","sc","248"],["Sierra Leone","sl","232"],["Singapore","sg","65"],["Sint Maarten","sx","1",21,["721"]],["Slovakia (Slovensko)","sk","421"],["Slovenia (Slovenija)","si","386"],["Solomon Islands","sb","677"],["Somalia (Soomaaliya)","so","252"],["South Africa","za","27"],["South Korea (대한민국)","kr","82"],["South Sudan (جنوب السودان)","ss","211"],["Spain (España)","es","34"],["Sri Lanka (ශ්රී ලංකාව)","lk","94"],["Sudan (السودان)","sd","249"],["Suriname","sr","597"],["Svalbard and Jan Mayen","sj","47",1,["79"]],["Sweden (Sverige)","se","46"],["Switzerland (Schweiz)","ch","41"],["Syria (سوريا)","sy","963"],["Taiwan (台灣)","tw","886"],["Tajikistan","tj","992"],["Tanzania","tz","255"],["Thailand (ไทย)","th","66"],["Timor-Leste","tl","670"],["Togo","tg","228"],["Tokelau","tk","690"],["Tonga","to","676"],["Trinidad and Tobago","tt","1",22,["868"]],["Tunisia (تونس)","tn","216"],["Turkey (Türkiye)","tr","90"],["Turkmenistan","tm","993"],["Turks and Caicos Islands","tc","1",23,["649"]],["Tuvalu","tv","688"],["U.S. Virgin Islands","vi","1",24,["340"]],["Uganda","ug","256"],["Ukraine (Україна)","ua","380"],["United Arab Emirates (الإمارات العربية المتحدة)","ae","971"],["United Kingdom","gb","44",0],["United States","us","1",0],["Uruguay","uy","598"],["Uzbekistan (Oʻzbekiston)","uz","998"],["Vanuatu","vu","678"],["Vatican City (Città del Vaticano)","va","39",1,["06698"]],["Venezuela","ve","58"],["Vietnam (Việt Nam)","vn","84"],["Wallis and Futuna (Wallis-et-Futuna)","wf","681"],["Western Sahara (الصحراء الغربية)","eh","212",1,["5288","5289"]],["Yemen (اليمن)","ye","967"],["Zambia","zm","260"],["Zimbabwe","zw","263"],["Åland Islands","ax","358",1,["18"]]],lf=af.map(([t,n,e,o=0,a=null])=>({name:t,iso2:n.toUpperCase(),dialCode:e,priority:o,areaCodes:a}));function sf(){return fetch("https://ip2c.org/s").then(t=>t.text()).then(t=>{const n=(t||"").toString();if(!n||n[0]!=="1")throw new Error("unable to fetch the country");return n.substr(2,2)})}function cf(t,n){if(t.setSelectionRange)t.focus(),t.setSelectionRange(n,n);else if("createTextRange"in t&&typeof t.createTextRange=="function"){const e=t.createTextRange();e.collapse(!0),e.moveEnd("character",n),e.moveStart("character",n),e.select()}}const df=[{name:"allCountries",type:Array,default:lf,description:"All countries that are used in <code>libphonenumber-js</code>, can be overridden by this prop",inDemo:!1},{name:"autoFormat",type:Boolean,default:!0,description:"Auto update the input to the formatted phone number when it's valid",inDemo:!0},{name:"customValidate",type:[Boolean,RegExp],default:!1,description:"Custom validation RegExp for input",inDemo:!1},{name:"defaultCountry",default:"",type:[String,Number],description:"Default country (by iso2 or dialCode), will override the country fetched from IP address of user",inDemo:!1},{name:"disabled",default:!1,type:Boolean,description:"Disable <code>vue-tel-input</code>, including the input & flag dropdown",inDemo:!1},{name:"autoDefaultCountry",default:!0,type:Boolean,description:"To fetch default country based on IP address of user",inDemo:!1},{name:"dropdownOptions",type:Object,description:"Options for dropdown, see below",inDemo:!1},{name:"dropdownOptions.disabled",default:!1,type:Boolean,description:"Disable dropdown",inDemo:!1},{name:"dropdownOptions.showDialCodeInList",default:!0,type:Boolean,description:"Show dial code in the dropdown list",inDemo:!0},{name:"dropdownOptions.showDialCodeInSelection",default:!1,type:Boolean,description:"Show dial code in the dropdown selection",inDemo:!0},{name:"dropdownOptions.showFlags",default:!0,type:Boolean,description:"Show flags in the dropdown selection and list",inDemo:!0},{name:"dropdownOptions.showSearchBox",default:!1,type:Boolean,description:"Show country search box",inDemo:!0},{name:"dropdownOptions.searchBoxPlaceholder",default:"",type:String,description:"Placeholder for the search box",inDemo:!1},{name:"dropdownOptions.tabindex",default:0,type:Number,description:"Native dropdown <code>tabindex</code> attribute",inDemo:!1},{name:"ignoredCountries",default:[],type:Array,description:"List of countries will NOT be shown on the dropdown",inDemo:!1},{name:"inputOptions",type:Object,description:"Options for input, see below",inDemo:!1},{name:"inputOptions.autocomplete",type:String,default:"on",description:"Native input <code>autocomplete</code> attribute",inDemo:!1},{name:"inputOptions.autofocus",type:Boolean,default:!1,description:"Native input <code>autofocus</code> attribute",inDemo:!1},{name:"inputOptions.aria-describedby",default:"",type:String,description:"Native input <code>aria-describedby</code> attribute",inDemo:!1},{name:"inputOptions.id",default:"",type:String,description:"Native input <code>id</code> attribute",inDemo:!1},{name:"inputOptions.maxlength",default:25,type:Number,description:"Native input <code>maxlength</code> attribute",inDemo:!1},{name:"inputOptions.name",default:"telephone",type:String,description:"Native input <code>name</code> attribute",inDemo:!1},{name:"inputOptions.showDialCode",default:!1,type:Boolean,description:"Show dial code in input",inDemo:!1},{name:"inputOptions.placeholder",default:"Enter a phone number",type:String,description:"Placeholder for the input",inDemo:!1},{name:"inputOptions.readonly",default:!1,type:Boolean,description:"Native input <code>readonly</code> attribute",inDemo:!1},{name:"inputOptions.required",default:!1,type:Boolean,description:"Native input <code>required</code> attribute",inDemo:!1},{name:"inputOptions.tabindex",default:0,type:Number,description:"Native input <code>tabindex</code> attribute",inDemo:!1},{name:"inputOptions.type",default:"tel",type:String,description:"Native input <code>type</code> attribute",inDemo:!1},{name:"inputOptions.styleClasses",default:"",type:[String,Array,Object],description:"Custom classes for the <code>input</code>",inDemo:!1},{name:"invalidMsg",default:"",type:String,description:"",inDemo:!1},{name:"mode",default:"auto",type:String,description:"Allowed values: <code>'auto'</code> (Default set by phone), <code>'international'</code> (Format number with the dial code i.e. + 61), <code>'national'</code> (Format number without dial code i.e. 0321232)",inDemo:!0,options:["auto","national","international"]},{name:"onlyCountries",default:[],type:Array,description:"List of countries will be shown on the dropdown",inDemo:!1},{name:"preferredCountries",default:[],type:Array,description:"Preferred countries list, will be on top of the dropdown",inDemo:!1},{name:"styleClasses",default:"",type:[String,Array,Object],description:"Custom classes for the wrapper",inDemo:!1},{name:"validCharactersOnly",default:!1,type:Boolean,description:"Only allow valid characters in a phone number (will also verify in <code>mounted</code>, so phone number with invalid characters will be shown as an empty string)",inDemo:!1}],uf=[...df].reduce((t,n)=>{if(n.name.includes(".")){const[e,o]=n.name.split(".");t[e]?Object.assign(t[e],{[o]:n.default}):Object.assign(t,{[e]:{[o]:n.default}})}else Object.assign(t,{[n.name]:n.default});return t},{}),Vo={options:{...uf}};function tt(t){const n=Vo.options[t];return typeof n>"u"?Vo.options[t]:n}function xn(t){return t==null?void 0:t.toLowerCase()}function Tn(t){return t==null?void 0:t.toUpperCase()}const ff={version:4,country_calling_codes:{1:["US","AG","AI","AS","BB","BM","BS","CA","DM","DO","GD","GU","JM","KN","KY","LC","MP","MS","PR","SX","TC","TT","VC","VG","VI"],7:["RU","KZ"],20:["EG"],27:["ZA"],30:["GR"],31:["NL"],32:["BE"],33:["FR"],34:["ES"],36:["HU"],39:["IT","VA"],40:["RO"],41:["CH"],43:["AT"],44:["GB","GG","IM","JE"],45:["DK"],46:["SE"],47:["NO","SJ"],48:["PL"],49:["DE"],51:["PE"],52:["MX"],53:["CU"],54:["AR"],55:["BR"],56:["CL"],57:["CO"],58:["VE"],60:["MY"],61:["AU","CC","CX"],62:["ID"],63:["PH"],64:["NZ"],65:["SG"],66:["TH"],81:["JP"],82:["KR"],84:["VN"],86:["CN"],90:["TR"],91:["IN"],92:["PK"],93:["AF"],94:["LK"],95:["MM"],98:["IR"],211:["SS"],212:["MA","EH"],213:["DZ"],216:["TN"],218:["LY"],220:["GM"],221:["SN"],222:["MR"],223:["ML"],224:["GN"],225:["CI"],226:["BF"],227:["NE"],228:["TG"],229:["BJ"],230:["MU"],231:["LR"],232:["SL"],233:["GH"],234:["NG"],235:["TD"],236:["CF"],237:["CM"],238:["CV"],239:["ST"],240:["GQ"],241:["GA"],242:["CG"],243:["CD"],244:["AO"],245:["GW"],246:["IO"],247:["AC"],248:["SC"],249:["SD"],250:["RW"],251:["ET"],252:["SO"],253:["DJ"],254:["KE"],255:["TZ"],256:["UG"],257:["BI"],258:["MZ"],260:["ZM"],261:["MG"],262:["RE","YT"],263:["ZW"],264:["NA"],265:["MW"],266:["LS"],267:["BW"],268:["SZ"],269:["KM"],290:["SH","TA"],291:["ER"],297:["AW"],298:["FO"],299:["GL"],350:["GI"],351:["PT"],352:["LU"],353:["IE"],354:["IS"],355:["AL"],356:["MT"],357:["CY"],358:["FI","AX"],359:["BG"],370:["LT"],371:["LV"],372:["EE"],373:["MD"],374:["AM"],375:["BY"],376:["AD"],377:["MC"],378:["SM"],380:["UA"],381:["RS"],382:["ME"],383:["XK"],385:["HR"],386:["SI"],387:["BA"],389:["MK"],420:["CZ"],421:["SK"],423:["LI"],500:["FK"],501:["BZ"],502:["GT"],503:["SV"],504:["HN"],505:["NI"],506:["CR"],507:["PA"],508:["PM"],509:["HT"],590:["GP","BL","MF"],591:["BO"],592:["GY"],593:["EC"],594:["GF"],595:["PY"],596:["MQ"],597:["SR"],598:["UY"],599:["CW","BQ"],670:["TL"],672:["NF"],673:["BN"],674:["NR"],675:["PG"],676:["TO"],677:["SB"],678:["VU"],679:["FJ"],680:["PW"],681:["WF"],682:["CK"],683:["NU"],685:["WS"],686:["KI"],687:["NC"],688:["TV"],689:["PF"],690:["TK"],691:["FM"],692:["MH"],850:["KP"],852:["HK"],853:["MO"],855:["KH"],856:["LA"],880:["BD"],886:["TW"],960:["MV"],961:["LB"],962:["JO"],963:["SY"],964:["IQ"],965:["KW"],966:["SA"],967:["YE"],968:["OM"],970:["PS"],971:["AE"],972:["IL"],973:["BH"],974:["QA"],975:["BT"],976:["MN"],977:["NP"],992:["TJ"],993:["TM"],994:["AZ"],995:["GE"],996:["KG"],998:["UZ"]},countries:{AC:["247","00","(?:[01589]\\d|[46])\\d{4}",[5,6]],AD:["376","00","(?:1|6\\d)\\d{7}|[135-9]\\d{5}",[6,8,9],[["(\\d{3})(\\d{3})","$1 $2",["[135-9]"]],["(\\d{4})(\\d{4})","$1 $2",["1"]],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["6"]]]],AE:["971","00","(?:[4-7]\\d|9[0-689])\\d{7}|800\\d{2,9}|[2-4679]\\d{7}",[5,6,7,8,9,10,11,12],[["(\\d{3})(\\d{2,9})","$1 $2",["60|8"]],["(\\d)(\\d{3})(\\d{4})","$1 $2 $3",["[236]|[479][2-8]"],"0$1"],["(\\d{3})(\\d)(\\d{5})","$1 $2 $3",["[479]"]],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["5"],"0$1"]],"0"],AF:["93","00","[2-7]\\d{8}",[9],[["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["[2-7]"],"0$1"]],"0"],AG:["1","011","(?:268|[58]\\d\\d|900)\\d{7}",[10],0,"1",0,"([457]\\d{6})$|1","268$1",0,"268"],AI:["1","011","(?:264|[58]\\d\\d|900)\\d{7}",[10],0,"1",0,"([2457]\\d{6})$|1","264$1",0,"264"],AL:["355","00","(?:700\\d\\d|900)\\d{3}|8\\d{5,7}|(?:[2-5]|6\\d)\\d{7}",[6,7,8,9],[["(\\d{3})(\\d{3,4})","$1 $2",["80|9"],"0$1"],["(\\d)(\\d{3})(\\d{4})","$1 $2 $3",["4[2-6]"],"0$1"],["(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3",["[2358][2-5]|4"],"0$1"],["(\\d{3})(\\d{5})","$1 $2",["[23578]"],"0$1"],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["6"],"0$1"]],"0"],AM:["374","00","(?:[1-489]\\d|55|60|77)\\d{6}",[8],[["(\\d{3})(\\d{2})(\\d{3})","$1 $2 $3",["[89]0"],"0 $1"],["(\\d{3})(\\d{5})","$1 $2",["2|3[12]"],"(0$1)"],["(\\d{2})(\\d{6})","$1 $2",["1|47"],"(0$1)"],["(\\d{2})(\\d{6})","$1 $2",["[3-9]"],"0$1"]],"0"],AO:["244","00","[29]\\d{8}",[9],[["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[29]"]]]],AR:["54","00","(?:11|[89]\\d\\d)\\d{8}|[2368]\\d{9}",[10,11],[["(\\d{4})(\\d{2})(\\d{4})","$1 $2-$3",["2(?:2[024-9]|3[0-59]|47|6[245]|9[02-8])|3(?:3[28]|4[03-9]|5[2-46-8]|7[1-578]|8[2-9])","2(?:[23]02|6(?:[25]|4[6-8])|9(?:[02356]|4[02568]|72|8[23]))|3(?:3[28]|4(?:[04679]|3[5-8]|5[4-68]|8[2379])|5(?:[2467]|3[237]|8[2-5])|7[1-578]|8(?:[2469]|3[2578]|5[4-8]|7[36-8]|8[5-8]))|2(?:2[24-9]|3[1-59]|47)","2(?:[23]02|6(?:[25]|4(?:64|[78]))|9(?:[02356]|4(?:[0268]|5[2-6])|72|8[23]))|3(?:3[28]|4(?:[04679]|3[78]|5(?:4[46]|8)|8[2379])|5(?:[2467]|3[237]|8[23])|7[1-578]|8(?:[2469]|3[278]|5[56][46]|86[3-6]))|2(?:2[24-9]|3[1-59]|47)|38(?:[58][78]|7[378])|3(?:4[35][56]|58[45]|8(?:[38]5|54|76))[4-6]","2(?:[23]02|6(?:[25]|4(?:64|[78]))|9(?:[02356]|4(?:[0268]|5[2-6])|72|8[23]))|3(?:3[28]|4(?:[04679]|3(?:5(?:4[0-25689]|[56])|[78])|58|8[2379])|5(?:[2467]|3[237]|8(?:[23]|4(?:[45]|60)|5(?:4[0-39]|5|64)))|7[1-578]|8(?:[2469]|3[278]|54(?:4|5[13-7]|6[89])|86[3-6]))|2(?:2[24-9]|3[1-59]|47)|38(?:[58][78]|7[378])|3(?:454|85[56])[46]|3(?:4(?:36|5[56])|8(?:[38]5|76))[4-6]"],"0$1",1],["(\\d{2})(\\d{4})(\\d{4})","$1 $2-$3",["1"],"0$1",1],["(\\d{3})(\\d{3})(\\d{4})","$1-$2-$3",["[68]"],"0$1"],["(\\d{3})(\\d{3})(\\d{4})","$1 $2-$3",["[23]"],"0$1",1],["(\\d)(\\d{4})(\\d{2})(\\d{4})","$2 15-$3-$4",["9(?:2[2-469]|3[3-578])","9(?:2(?:2[024-9]|3[0-59]|47|6[245]|9[02-8])|3(?:3[28]|4[03-9]|5[2-46-8]|7[1-578]|8[2-9]))","9(?:2(?:[23]02|6(?:[25]|4[6-8])|9(?:[02356]|4[02568]|72|8[23]))|3(?:3[28]|4(?:[04679]|3[5-8]|5[4-68]|8[2379])|5(?:[2467]|3[237]|8[2-5])|7[1-578]|8(?:[2469]|3[2578]|5[4-8]|7[36-8]|8[5-8])))|92(?:2[24-9]|3[1-59]|47)","9(?:2(?:[23]02|6(?:[25]|4(?:64|[78]))|9(?:[02356]|4(?:[0268]|5[2-6])|72|8[23]))|3(?:3[28]|4(?:[04679]|3[78]|5(?:4[46]|8)|8[2379])|5(?:[2467]|3[237]|8[23])|7[1-578]|8(?:[2469]|3[278]|5(?:[56][46]|[78])|7[378]|8(?:6[3-6]|[78]))))|92(?:2[24-9]|3[1-59]|47)|93(?:4[35][56]|58[45]|8(?:[38]5|54|76))[4-6]","9(?:2(?:[23]02|6(?:[25]|4(?:64|[78]))|9(?:[02356]|4(?:[0268]|5[2-6])|72|8[23]))|3(?:3[28]|4(?:[04679]|3(?:5(?:4[0-25689]|[56])|[78])|5(?:4[46]|8)|8[2379])|5(?:[2467]|3[237]|8(?:[23]|4(?:[45]|60)|5(?:4[0-39]|5|64)))|7[1-578]|8(?:[2469]|3[278]|5(?:4(?:4|5[13-7]|6[89])|[56][46]|[78])|7[378]|8(?:6[3-6]|[78]))))|92(?:2[24-9]|3[1-59]|47)|93(?:4(?:36|5[56])|8(?:[38]5|76))[4-6]"],"0$1",0,"$1 $2 $3-$4"],["(\\d)(\\d{2})(\\d{4})(\\d{4})","$2 15-$3-$4",["91"],"0$1",0,"$1 $2 $3-$4"],["(\\d{3})(\\d{3})(\\d{5})","$1-$2-$3",["8"],"0$1"],["(\\d)(\\d{3})(\\d{3})(\\d{4})","$2 15-$3-$4",["9"],"0$1",0,"$1 $2 $3-$4"]],"0",0,"0?(?:(11|2(?:2(?:02?|[13]|2[13-79]|4[1-6]|5[2457]|6[124-8]|7[1-4]|8[13-6]|9[1267])|3(?:02?|1[467]|2[03-6]|3[13-8]|[49][2-6]|5[2-8]|[67])|4(?:7[3-578]|9)|6(?:[0136]|2[24-6]|4[6-8]?|5[15-8])|80|9(?:0[1-3]|[19]|2\\d|3[1-6]|4[02568]?|5[2-4]|6[2-46]|72?|8[23]?))|3(?:3(?:2[79]|6|8[2578])|4(?:0[0-24-9]|[12]|3[5-8]?|4[24-7]|5[4-68]?|6[02-9]|7[126]|8[2379]?|9[1-36-8])|5(?:1|2[1245]|3[237]?|4[1-46-9]|6[2-4]|7[1-6]|8[2-5]?)|6[24]|7(?:[069]|1[1568]|2[15]|3[145]|4[13]|5[14-8]|7[2-57]|8[126])|8(?:[01]|2[15-7]|3[2578]?|4[13-6]|5[4-8]?|6[1-357-9]|7[36-8]?|8[5-8]?|9[124])))15)?","9$1"],AS:["1","011","(?:[58]\\d\\d|684|900)\\d{7}",[10],0,"1",0,"([267]\\d{6})$|1","684$1",0,"684"],AT:["43","00","1\\d{3,12}|2\\d{6,12}|43(?:(?:0\\d|5[02-9])\\d{3,9}|2\\d{4,5}|[3467]\\d{4}|8\\d{4,6}|9\\d{4,7})|5\\d{4,12}|8\\d{7,12}|9\\d{8,12}|(?:[367]\\d|4[0-24-9])\\d{4,11}",[4,5,6,7,8,9,10,11,12,13],[["(\\d)(\\d{3,12})","$1 $2",["1(?:11|[2-9])"],"0$1"],["(\\d{3})(\\d{2})","$1 $2",["517"],"0$1"],["(\\d{2})(\\d{3,5})","$1 $2",["5[079]"],"0$1"],["(\\d{3})(\\d{3,10})","$1 $2",["(?:31|4)6|51|6(?:5[0-3579]|[6-9])|7(?:20|32|8)|[89]"],"0$1"],["(\\d{4})(\\d{3,9})","$1 $2",["[2-467]|5[2-6]"],"0$1"],["(\\d{2})(\\d{3})(\\d{3,4})","$1 $2 $3",["5"],"0$1"],["(\\d{2})(\\d{4})(\\d{4,7})","$1 $2 $3",["5"],"0$1"]],"0"],AU:["61","001[14-689]|14(?:1[14]|34|4[17]|[56]6|7[47]|88)0011","1(?:[0-79]\\d{7}(?:\\d(?:\\d{2})?)?|8[0-24-9]\\d{7})|[2-478]\\d{8}|1\\d{4,7}",[5,6,7,8,9,10,12],[["(\\d{2})(\\d{3,4})","$1 $2",["16"],"0$1"],["(\\d{2})(\\d{3})(\\d{2,4})","$1 $2 $3",["16"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["14|4"],"0$1"],["(\\d)(\\d{4})(\\d{4})","$1 $2 $3",["[2378]"],"(0$1)"],["(\\d{4})(\\d{3})(\\d{3})","$1 $2 $3",["1(?:30|[89])"]]],"0",0,"(183[12])|0",0,0,0,[["(?:(?:2(?:[0-26-9]\\d|3[0-8]|4[02-9]|5[0135-9])|3(?:[0-3589]\\d|4[0-578]|6[1-9]|7[0-35-9])|7(?:[013-57-9]\\d|2[0-8]))\\d{3}|8(?:51(?:0(?:0[03-9]|[12479]\\d|3[2-9]|5[0-8]|6[1-9]|8[0-7])|1(?:[0235689]\\d|1[0-69]|4[0-589]|7[0-47-9])|2(?:0[0-79]|[18][13579]|2[14-9]|3[0-46-9]|[4-6]\\d|7[89]|9[0-4]))|(?:6[0-8]|[78]\\d)\\d{3}|9(?:[02-9]\\d{3}|1(?:(?:[0-58]\\d|6[0135-9])\\d|7(?:0[0-24-9]|[1-9]\\d)|9(?:[0-46-9]\\d|5[0-79])))))\\d{3}",[9]],["4(?:(?:79|94)[01]|83[0-389])\\d{5}|4(?:[0-3]\\d|4[047-9]|5[0-25-9]|6[0-26-9]|7[02-8]|8[0-24-9]|9[0-37-9])\\d{6}",[9]],["180(?:0\\d{3}|2)\\d{3}",[7,10]],["190[0-26]\\d{6}",[10]],0,0,0,["163\\d{2,6}",[5,6,7,8,9]],["14(?:5(?:1[0458]|[23][458])|71\\d)\\d{4}",[9]],["13(?:00\\d{6}(?:\\d{2})?|45[0-4]\\d{3})|13\\d{4}",[6,8,10,12]]],"0011"],AW:["297","00","(?:[25-79]\\d\\d|800)\\d{4}",[7],[["(\\d{3})(\\d{4})","$1 $2",["[25-9]"]]]],AX:["358","00|99(?:[01469]|5(?:[14]1|3[23]|5[59]|77|88|9[09]))","2\\d{4,9}|35\\d{4,5}|(?:60\\d\\d|800)\\d{4,6}|7\\d{5,11}|(?:[14]\\d|3[0-46-9]|50)\\d{4,8}",[5,6,7,8,9,10,11,12],0,"0",0,0,0,0,"18",0,"00"],AZ:["994","00","365\\d{6}|(?:[124579]\\d|60|88)\\d{7}",[9],[["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["90"],"0$1"],["(\\d{2})(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3 $4",["1[28]|2|365|46","1[28]|2|365[45]|46","1[28]|2|365(?:4|5[02])|46"],"(0$1)"],["(\\d{2})(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[13-9]"],"0$1"]],"0"],BA:["387","00","6\\d{8}|(?:[35689]\\d|49|70)\\d{6}",[8,9],[["(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3",["6[1-3]|[7-9]"],"0$1"],["(\\d{2})(\\d{3})(\\d{3})","$1 $2-$3",["[3-5]|6[56]"],"0$1"],["(\\d{2})(\\d{2})(\\d{2})(\\d{3})","$1 $2 $3 $4",["6"],"0$1"]],"0"],BB:["1","011","(?:246|[58]\\d\\d|900)\\d{7}",[10],0,"1",0,"([2-9]\\d{6})$|1","246$1",0,"246"],BD:["880","00","[1-469]\\d{9}|8[0-79]\\d{7,8}|[2-79]\\d{8}|[2-9]\\d{7}|[3-9]\\d{6}|[57-9]\\d{5}",[6,7,8,9,10],[["(\\d{2})(\\d{4,6})","$1-$2",["31[5-8]|[459]1"],"0$1"],["(\\d{3})(\\d{3,7})","$1-$2",["3(?:[67]|8[013-9])|4(?:6[168]|7|[89][18])|5(?:6[128]|9)|6(?:[15]|28|4[14])|7[2-589]|8(?:0[014-9]|[12])|9[358]|(?:3[2-5]|4[235]|5[2-578]|6[0389]|76|8[3-7]|9[24])1|(?:44|66)[01346-9]"],"0$1"],["(\\d{4})(\\d{3,6})","$1-$2",["[13-9]|22"],"0$1"],["(\\d)(\\d{7,8})","$1-$2",["2"],"0$1"]],"0"],BE:["32","00","4\\d{8}|[1-9]\\d{7}",[8,9],[["(\\d{3})(\\d{2})(\\d{3})","$1 $2 $3",["(?:80|9)0"],"0$1"],["(\\d)(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[239]|4[23]"],"0$1"],["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[15-8]"],"0$1"],["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["4"],"0$1"]],"0"],BF:["226","00","[025-7]\\d{7}",[8],[["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[025-7]"]]]],BG:["359","00","00800\\d{7}|[2-7]\\d{6,7}|[89]\\d{6,8}|2\\d{5}",[6,7,8,9,12],[["(\\d)(\\d)(\\d{2})(\\d{2})","$1 $2 $3 $4",["2"],"0$1"],["(\\d{3})(\\d{4})","$1 $2",["43[1-6]|70[1-9]"],"0$1"],["(\\d)(\\d{3})(\\d{3,4})","$1 $2 $3",["2"],"0$1"],["(\\d{2})(\\d{3})(\\d{2,3})","$1 $2 $3",["[356]|4[124-7]|7[1-9]|8[1-6]|9[1-7]"],"0$1"],["(\\d{3})(\\d{2})(\\d{3})","$1 $2 $3",["(?:70|8)0"],"0$1"],["(\\d{3})(\\d{3})(\\d{2})","$1 $2 $3",["43[1-7]|7"],"0$1"],["(\\d{2})(\\d{3})(\\d{3,4})","$1 $2 $3",["[48]|9[08]"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["9"],"0$1"]],"0"],BH:["973","00","[136-9]\\d{7}",[8],[["(\\d{4})(\\d{4})","$1 $2",["[13679]|8[02-4679]"]]]],BI:["257","00","(?:[267]\\d|31)\\d{6}",[8],[["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[2367]"]]]],BJ:["229","00","[24-689]\\d{7}",[8],[["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[24-689]"]]]],BL:["590","00","590\\d{6}|(?:69|80|9\\d)\\d{7}",[9],0,"0",0,0,0,0,0,[["590(?:2[7-9]|3[3-7]|5[12]|87)\\d{4}"],["69(?:0\\d\\d|1(?:2[2-9]|3[0-5]))\\d{4}"],["80[0-5]\\d{6}"],0,0,0,0,0,["9(?:(?:395|76[018])\\d|475[0-5])\\d{4}"]]],BM:["1","011","(?:441|[58]\\d\\d|900)\\d{7}",[10],0,"1",0,"([2-9]\\d{6})$|1","441$1",0,"441"],BN:["673","00","[2-578]\\d{6}",[7],[["(\\d{3})(\\d{4})","$1 $2",["[2-578]"]]]],BO:["591","00(?:1\\d)?","(?:[2-467]\\d\\d|8001)\\d{5}",[8,9],[["(\\d)(\\d{7})","$1 $2",["[23]|4[46]"]],["(\\d{8})","$1",["[67]"]],["(\\d{3})(\\d{2})(\\d{4})","$1 $2 $3",["8"]]],"0",0,"0(1\\d)?"],BQ:["599","00","(?:[34]1|7\\d)\\d{5}",[7],0,0,0,0,0,0,"[347]"],BR:["55","00(?:1[245]|2[1-35]|31|4[13]|[56]5|99)","(?:[1-46-9]\\d\\d|5(?:[0-46-9]\\d|5[0-46-9]))\\d{8}|[1-9]\\d{9}|[3589]\\d{8}|[34]\\d{7}",[8,9,10,11],[["(\\d{4})(\\d{4})","$1-$2",["300|4(?:0[02]|37)","4(?:02|37)0|[34]00"]],["(\\d{3})(\\d{2,3})(\\d{4})","$1 $2 $3",["(?:[358]|90)0"],"0$1"],["(\\d{2})(\\d{4})(\\d{4})","$1 $2-$3",["(?:[14689][1-9]|2[12478]|3[1-578]|5[13-5]|7[13-579])[2-57]"],"($1)"],["(\\d{2})(\\d{5})(\\d{4})","$1 $2-$3",["[16][1-9]|[2-57-9]"],"($1)"]],"0",0,"(?:0|90)(?:(1[245]|2[1-35]|31|4[13]|[56]5|99)(\\d{10,11}))?","$2"],BS:["1","011","(?:242|[58]\\d\\d|900)\\d{7}",[10],0,"1",0,"([3-8]\\d{6})$|1","242$1",0,"242"],BT:["975","00","[17]\\d{7}|[2-8]\\d{6}",[7,8],[["(\\d)(\\d{3})(\\d{3})","$1 $2 $3",["[2-68]|7[246]"]],["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["1[67]|7"]]]],BW:["267","00","(?:0800|(?:[37]|800)\\d)\\d{6}|(?:[2-6]\\d|90)\\d{5}",[7,8,10],[["(\\d{2})(\\d{5})","$1 $2",["90"]],["(\\d{3})(\\d{4})","$1 $2",["[24-6]|3[15-9]"]],["(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3",["[37]"]],["(\\d{4})(\\d{3})(\\d{3})","$1 $2 $3",["0"]],["(\\d{3})(\\d{4})(\\d{3})","$1 $2 $3",["8"]]]],BY:["375","810","(?:[12]\\d|33|44|902)\\d{7}|8(?:0[0-79]\\d{5,7}|[1-7]\\d{9})|8(?:1[0-489]|[5-79]\\d)\\d{7}|8[1-79]\\d{6,7}|8[0-79]\\d{5}|8\\d{5}",[6,7,8,9,10,11],[["(\\d{3})(\\d{3})","$1 $2",["800"],"8 $1"],["(\\d{3})(\\d{2})(\\d{2,4})","$1 $2 $3",["800"],"8 $1"],["(\\d{4})(\\d{2})(\\d{3})","$1 $2-$3",["1(?:5[169]|6[3-5]|7[179])|2(?:1[35]|2[34]|3[3-5])","1(?:5[169]|6(?:3[1-3]|4|5[125])|7(?:1[3-9]|7[0-24-6]|9[2-7]))|2(?:1[35]|2[34]|3[3-5])"],"8 0$1"],["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2-$3-$4",["1(?:[56]|7[467])|2[1-3]"],"8 0$1"],["(\\d{2})(\\d{3})(\\d{2})(\\d{2})","$1 $2-$3-$4",["[1-4]"],"8 0$1"],["(\\d{3})(\\d{3,4})(\\d{4})","$1 $2 $3",["[89]"],"8 $1"]],"8",0,"0|80?",0,0,0,0,"8~10"],BZ:["501","00","(?:0800\\d|[2-8])\\d{6}",[7,11],[["(\\d{3})(\\d{4})","$1-$2",["[2-8]"]],["(\\d)(\\d{3})(\\d{4})(\\d{3})","$1-$2-$3-$4",["0"]]]],CA:["1","011","(?:[2-8]\\d|90)\\d{8}|3\\d{6}",[7,10],0,"1",0,0,0,0,0,[["(?:2(?:04|[23]6|[48]9|50|63)|3(?:06|43|54|6[578]|82)|4(?:03|1[68]|[26]8|3[178]|50|74)|5(?:06|1[49]|48|79|8[147])|6(?:04|[18]3|39|47|72)|7(?:0[59]|42|53|78|8[02])|8(?:[06]7|19|25|73)|90[25])[2-9]\\d{6}",[10]],["",[10]],["8(?:00|33|44|55|66|77|88)[2-9]\\d{6}",[10]],["900[2-9]\\d{6}",[10]],["52(?:3(?:[2-46-9][02-9]\\d|5(?:[02-46-9]\\d|5[0-46-9]))|4(?:[2-478][02-9]\\d|5(?:[034]\\d|2[024-9]|5[0-46-9])|6(?:0[1-9]|[2-9]\\d)|9(?:[05-9]\\d|2[0-5]|49)))\\d{4}|52[34][2-9]1[02-9]\\d{4}|(?:5(?:00|2[125-9]|33|44|66|77|88)|622)[2-9]\\d{6}",[10]],0,["310\\d{4}",[7]],0,["600[2-9]\\d{6}",[10]]]],CC:["61","001[14-689]|14(?:1[14]|34|4[17]|[56]6|7[47]|88)0011","1(?:[0-79]\\d{8}(?:\\d{2})?|8[0-24-9]\\d{7})|[148]\\d{8}|1\\d{5,7}",[6,7,8,9,10,12],0,"0",0,"([59]\\d{7})$|0","8$1",0,0,[["8(?:51(?:0(?:02|31|60|89)|1(?:18|76)|223)|91(?:0(?:1[0-2]|29)|1(?:[28]2|50|79)|2(?:10|64)|3(?:[06]8|22)|4[29]8|62\\d|70[23]|959))\\d{3}",[9]],["4(?:(?:79|94)[01]|83[0-389])\\d{5}|4(?:[0-3]\\d|4[047-9]|5[0-25-9]|6[0-26-9]|7[02-8]|8[0-24-9]|9[0-37-9])\\d{6}",[9]],["180(?:0\\d{3}|2)\\d{3}",[7,10]],["190[0-26]\\d{6}",[10]],0,0,0,0,["14(?:5(?:1[0458]|[23][458])|71\\d)\\d{4}",[9]],["13(?:00\\d{6}(?:\\d{2})?|45[0-4]\\d{3})|13\\d{4}",[6,8,10,12]]],"0011"],CD:["243","00","[189]\\d{8}|[1-68]\\d{6}",[7,9],[["(\\d{2})(\\d{2})(\\d{3})","$1 $2 $3",["88"],"0$1"],["(\\d{2})(\\d{5})","$1 $2",["[1-6]"],"0$1"],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["1"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[89]"],"0$1"]],"0"],CF:["236","00","(?:[27]\\d{3}|8776)\\d{4}",[8],[["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[278]"]]]],CG:["242","00","222\\d{6}|(?:0\\d|80)\\d{7}",[9],[["(\\d)(\\d{4})(\\d{4})","$1 $2 $3",["8"]],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["[02]"]]]],CH:["41","00","8\\d{11}|[2-9]\\d{8}",[9],[["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["8[047]|90"],"0$1"],["(\\d{2})(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[2-79]|81"],"0$1"],["(\\d{3})(\\d{2})(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3 $4 $5",["8"],"0$1"]],"0"],CI:["225","00","[02]\\d{9}",[10],[["(\\d{2})(\\d{2})(\\d)(\\d{5})","$1 $2 $3 $4",["2"]],["(\\d{2})(\\d{2})(\\d{2})(\\d{4})","$1 $2 $3 $4",["0"]]]],CK:["682","00","[2-578]\\d{4}",[5],[["(\\d{2})(\\d{3})","$1 $2",["[2-578]"]]]],CL:["56","(?:0|1(?:1[0-69]|2[02-5]|5[13-58]|69|7[0167]|8[018]))0","12300\\d{6}|6\\d{9,10}|[2-9]\\d{8}",[9,10,11],[["(\\d{5})(\\d{4})","$1 $2",["219","2196"],"($1)"],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["44"]],["(\\d)(\\d{4})(\\d{4})","$1 $2 $3",["2[1-36]"],"($1)"],["(\\d)(\\d{4})(\\d{4})","$1 $2 $3",["9[2-9]"]],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["3[2-5]|[47]|5[1-3578]|6[13-57]|8(?:0[1-9]|[1-9])"],"($1)"],["(\\d{3})(\\d{3})(\\d{3,4})","$1 $2 $3",["60|8"]],["(\\d{4})(\\d{3})(\\d{4})","$1 $2 $3",["1"]],["(\\d{3})(\\d{3})(\\d{2})(\\d{3})","$1 $2 $3 $4",["60"]]]],CM:["237","00","[26]\\d{8}|88\\d{6,7}",[8,9],[["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["88"]],["(\\d)(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4 $5",["[26]|88"]]]],CN:["86","00|1(?:[12]\\d|79)\\d\\d00","1[127]\\d{8,9}|2\\d{9}(?:\\d{2})?|[12]\\d{6,7}|86\\d{6}|(?:1[03-689]\\d|6)\\d{7,9}|(?:[3-579]\\d|8[0-57-9])\\d{6,9}",[7,8,9,10,11,12],[["(\\d{2})(\\d{5,6})","$1 $2",["(?:10|2[0-57-9])[19]","(?:10|2[0-57-9])(?:10|9[56])","10(?:10|9[56])|2[0-57-9](?:100|9[56])"],"0$1"],["(\\d{3})(\\d{5,6})","$1 $2",["3(?:[157]|35|49|9[1-68])|4(?:[17]|2[179]|6[47-9]|8[23])|5(?:[1357]|2[37]|4[36]|6[1-46]|80)|6(?:3[1-5]|6[0238]|9[12])|7(?:01|[1579]|2[248]|3[014-9]|4[3-6]|6[023689])|8(?:1[236-8]|2[5-7]|[37]|8[36-8]|9[1-8])|9(?:0[1-3689]|1[1-79]|[379]|4[13]|5[1-5])|(?:4[35]|59|85)[1-9]","(?:3(?:[157]\\d|35|49|9[1-68])|4(?:[17]\\d|2[179]|[35][1-9]|6[47-9]|8[23])|5(?:[1357]\\d|2[37]|4[36]|6[1-46]|80|9[1-9])|6(?:3[1-5]|6[0238]|9[12])|7(?:01|[1579]\\d|2[248]|3[014-9]|4[3-6]|6[023689])|8(?:1[236-8]|2[5-7]|[37]\\d|5[1-9]|8[36-8]|9[1-8])|9(?:0[1-3689]|1[1-79]|[379]\\d|4[13]|5[1-5]))[19]","85[23](?:10|95)|(?:3(?:[157]\\d|35|49|9[1-68])|4(?:[17]\\d|2[179]|[35][1-9]|6[47-9]|8[23])|5(?:[1357]\\d|2[37]|4[36]|6[1-46]|80|9[1-9])|6(?:3[1-5]|6[0238]|9[12])|7(?:01|[1579]\\d|2[248]|3[014-9]|4[3-6]|6[023689])|8(?:1[236-8]|2[5-7]|[37]\\d|5[14-9]|8[36-8]|9[1-8])|9(?:0[1-3689]|1[1-79]|[379]\\d|4[13]|5[1-5]))(?:10|9[56])","85[23](?:100|95)|(?:3(?:[157]\\d|35|49|9[1-68])|4(?:[17]\\d|2[179]|[35][1-9]|6[47-9]|8[23])|5(?:[1357]\\d|2[37]|4[36]|6[1-46]|80|9[1-9])|6(?:3[1-5]|6[0238]|9[12])|7(?:01|[1579]\\d|2[248]|3[014-9]|4[3-6]|6[023689])|8(?:1[236-8]|2[5-7]|[37]\\d|5[14-9]|8[36-8]|9[1-8])|9(?:0[1-3689]|1[1-79]|[379]\\d|4[13]|5[1-5]))(?:100|9[56])"],"0$1"],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["(?:4|80)0"]],["(\\d{2})(\\d{4})(\\d{4})","$1 $2 $3",["10|2(?:[02-57-9]|1[1-9])","10|2(?:[02-57-9]|1[1-9])","10[0-79]|2(?:[02-57-9]|1[1-79])|(?:10|21)8(?:0[1-9]|[1-9])"],"0$1",1],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["3(?:[3-59]|7[02-68])|4(?:[26-8]|3[3-9]|5[2-9])|5(?:3[03-9]|[468]|7[028]|9[2-46-9])|6|7(?:[0-247]|3[04-9]|5[0-4689]|6[2368])|8(?:[1-358]|9[1-7])|9(?:[013479]|5[1-5])|(?:[34]1|55|79|87)[02-9]"],"0$1",1],["(\\d{3})(\\d{7,8})","$1 $2",["9"]],["(\\d{4})(\\d{3})(\\d{4})","$1 $2 $3",["80"],"0$1",1],["(\\d{3})(\\d{4})(\\d{4})","$1 $2 $3",["[3-578]"],"0$1",1],["(\\d{3})(\\d{4})(\\d{4})","$1 $2 $3",["1[3-9]"]],["(\\d{2})(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3 $4",["[12]"],"0$1",1]],"0",0,"(1(?:[12]\\d|79)\\d\\d)|0",0,0,0,0,"00"],CO:["57","00(?:4(?:[14]4|56)|[579])","(?:60\\d\\d|9101)\\d{6}|(?:1\\d|3)\\d{9}",[10,11],[["(\\d{3})(\\d{7})","$1 $2",["6"],"($1)"],["(\\d{3})(\\d{7})","$1 $2",["3[0-357]|91"]],["(\\d)(\\d{3})(\\d{7})","$1-$2-$3",["1"],"0$1",0,"$1 $2 $3"]],"0",0,"0([3579]|4(?:[14]4|56))?"],CR:["506","00","(?:8\\d|90)\\d{8}|(?:[24-8]\\d{3}|3005)\\d{4}",[8,10],[["(\\d{4})(\\d{4})","$1 $2",["[2-7]|8[3-9]"]],["(\\d{3})(\\d{3})(\\d{4})","$1-$2-$3",["[89]"]]],0,0,"(19(?:0[0-2468]|1[09]|20|66|77|99))"],CU:["53","119","[27]\\d{6,7}|[34]\\d{5,7}|63\\d{6}|(?:5|8\\d\\d)\\d{7}",[6,7,8,10],[["(\\d{2})(\\d{4,6})","$1 $2",["2[1-4]|[34]"],"(0$1)"],["(\\d)(\\d{6,7})","$1 $2",["7"],"(0$1)"],["(\\d)(\\d{7})","$1 $2",["[56]"],"0$1"],["(\\d{3})(\\d{7})","$1 $2",["8"],"0$1"]],"0"],CV:["238","0","(?:[2-59]\\d\\d|800)\\d{4}",[7],[["(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3",["[2-589]"]]]],CW:["599","00","(?:[34]1|60|(?:7|9\\d)\\d)\\d{5}",[7,8],[["(\\d{3})(\\d{4})","$1 $2",["[3467]"]],["(\\d)(\\d{3})(\\d{4})","$1 $2 $3",["9[4-8]"]]],0,0,0,0,0,"[69]"],CX:["61","001[14-689]|14(?:1[14]|34|4[17]|[56]6|7[47]|88)0011","1(?:[0-79]\\d{8}(?:\\d{2})?|8[0-24-9]\\d{7})|[148]\\d{8}|1\\d{5,7}",[6,7,8,9,10,12],0,"0",0,"([59]\\d{7})$|0","8$1",0,0,[["8(?:51(?:0(?:01|30|59|88)|1(?:17|46|75)|2(?:22|35))|91(?:00[6-9]|1(?:[28]1|49|78)|2(?:09|63)|3(?:12|26|75)|4(?:56|97)|64\\d|7(?:0[01]|1[0-2])|958))\\d{3}",[9]],["4(?:(?:79|94)[01]|83[0-389])\\d{5}|4(?:[0-3]\\d|4[047-9]|5[0-25-9]|6[0-26-9]|7[02-8]|8[0-24-9]|9[0-37-9])\\d{6}",[9]],["180(?:0\\d{3}|2)\\d{3}",[7,10]],["190[0-26]\\d{6}",[10]],0,0,0,0,["14(?:5(?:1[0458]|[23][458])|71\\d)\\d{4}",[9]],["13(?:00\\d{6}(?:\\d{2})?|45[0-4]\\d{3})|13\\d{4}",[6,8,10,12]]],"0011"],CY:["357","00","(?:[279]\\d|[58]0)\\d{6}",[8],[["(\\d{2})(\\d{6})","$1 $2",["[257-9]"]]]],CZ:["420","00","(?:[2-578]\\d|60)\\d{7}|9\\d{8,11}",[9],[["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[2-8]|9[015-7]"]],["(\\d{2})(\\d{3})(\\d{3})(\\d{2})","$1 $2 $3 $4",["96"]],["(\\d{2})(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3 $4",["9"]],["(\\d{3})(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3 $4",["9"]]]],DE:["49","00","[2579]\\d{5,14}|49(?:[34]0|69|8\\d)\\d\\d?|49(?:37|49|60|7[089]|9\\d)\\d{1,3}|49(?:2[024-9]|3[2-689]|7[1-7])\\d{1,8}|(?:1|[368]\\d|4[0-8])\\d{3,13}|49(?:[015]\\d|2[13]|31|[46][1-8])\\d{1,9}",[4,5,6,7,8,9,10,11,12,13,14,15],[["(\\d{2})(\\d{3,13})","$1 $2",["3[02]|40|[68]9"],"0$1"],["(\\d{3})(\\d{3,12})","$1 $2",["2(?:0[1-389]|1[124]|2[18]|3[14])|3(?:[35-9][15]|4[015])|906|(?:2[4-9]|4[2-9]|[579][1-9]|[68][1-8])1","2(?:0[1-389]|12[0-8])|3(?:[35-9][15]|4[015])|906|2(?:[13][14]|2[18])|(?:2[4-9]|4[2-9]|[579][1-9]|[68][1-8])1"],"0$1"],["(\\d{4})(\\d{2,11})","$1 $2",["[24-6]|3(?:[3569][02-46-9]|4[2-4679]|7[2-467]|8[2-46-8])|70[2-8]|8(?:0[2-9]|[1-8])|90[7-9]|[79][1-9]","[24-6]|3(?:3(?:0[1-467]|2[127-9]|3[124578]|7[1257-9]|8[1256]|9[145])|4(?:2[135]|4[13578]|9[1346])|5(?:0[14]|2[1-3589]|6[1-4]|7[13468]|8[13568])|6(?:2[1-489]|3[124-6]|6[13]|7[12579]|8[1-356]|9[135])|7(?:2[1-7]|4[145]|6[1-5]|7[1-4])|8(?:21|3[1468]|6|7[1467]|8[136])|9(?:0[12479]|2[1358]|4[134679]|6[1-9]|7[136]|8[147]|9[1468]))|70[2-8]|8(?:0[2-9]|[1-8])|90[7-9]|[79][1-9]|3[68]4[1347]|3(?:47|60)[1356]|3(?:3[46]|46|5[49])[1246]|3[4579]3[1357]"],"0$1"],["(\\d{3})(\\d{4})","$1 $2",["138"],"0$1"],["(\\d{5})(\\d{2,10})","$1 $2",["3"],"0$1"],["(\\d{3})(\\d{5,11})","$1 $2",["181"],"0$1"],["(\\d{3})(\\d)(\\d{4,10})","$1 $2 $3",["1(?:3|80)|9"],"0$1"],["(\\d{3})(\\d{7,8})","$1 $2",["1[67]"],"0$1"],["(\\d{3})(\\d{7,12})","$1 $2",["8"],"0$1"],["(\\d{5})(\\d{6})","$1 $2",["185","1850","18500"],"0$1"],["(\\d{3})(\\d{4})(\\d{4})","$1 $2 $3",["7"],"0$1"],["(\\d{4})(\\d{7})","$1 $2",["18[68]"],"0$1"],["(\\d{5})(\\d{6})","$1 $2",["15[0568]"],"0$1"],["(\\d{4})(\\d{7})","$1 $2",["15[1279]"],"0$1"],["(\\d{3})(\\d{8})","$1 $2",["18"],"0$1"],["(\\d{3})(\\d{2})(\\d{7,8})","$1 $2 $3",["1(?:6[023]|7)"],"0$1"],["(\\d{4})(\\d{2})(\\d{7})","$1 $2 $3",["15[279]"],"0$1"],["(\\d{3})(\\d{2})(\\d{8})","$1 $2 $3",["15"],"0$1"]],"0"],DJ:["253","00","(?:2\\d|77)\\d{6}",[8],[["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[27]"]]]],DK:["45","00","[2-9]\\d{7}",[8],[["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[2-9]"]]]],DM:["1","011","(?:[58]\\d\\d|767|900)\\d{7}",[10],0,"1",0,"([2-7]\\d{6})$|1","767$1",0,"767"],DO:["1","011","(?:[58]\\d\\d|900)\\d{7}",[10],0,"1",0,0,0,0,"8001|8[024]9"],DZ:["213","00","(?:[1-4]|[5-79]\\d|80)\\d{7}",[8,9],[["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[1-4]"],"0$1"],["(\\d{2})(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3 $4",["9"],"0$1"],["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[5-8]"],"0$1"]],"0"],EC:["593","00","1\\d{9,10}|(?:[2-7]|9\\d)\\d{7}",[8,9,10,11],[["(\\d)(\\d{3})(\\d{4})","$1 $2-$3",["[2-7]"],"(0$1)",0,"$1-$2-$3"],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["9"],"0$1"],["(\\d{4})(\\d{3})(\\d{3,4})","$1 $2 $3",["1"]]],"0"],EE:["372","00","8\\d{9}|[4578]\\d{7}|(?:[3-8]\\d|90)\\d{5}",[7,8,10],[["(\\d{3})(\\d{4})","$1 $2",["[369]|4[3-8]|5(?:[0-2]|5[0-478]|6[45])|7[1-9]|88","[369]|4[3-8]|5(?:[02]|1(?:[0-8]|95)|5[0-478]|6(?:4[0-4]|5[1-589]))|7[1-9]|88"]],["(\\d{4})(\\d{3,4})","$1 $2",["[45]|8(?:00|[1-49])","[45]|8(?:00[1-9]|[1-49])"]],["(\\d{2})(\\d{2})(\\d{4})","$1 $2 $3",["7"]],["(\\d{4})(\\d{3})(\\d{3})","$1 $2 $3",["8"]]]],EG:["20","00","[189]\\d{8,9}|[24-6]\\d{8}|[135]\\d{7}",[8,9,10],[["(\\d)(\\d{7,8})","$1 $2",["[23]"],"0$1"],["(\\d{2})(\\d{6,7})","$1 $2",["1[35]|[4-6]|8[2468]|9[235-7]"],"0$1"],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["[89]"],"0$1"],["(\\d{2})(\\d{8})","$1 $2",["1"],"0$1"]],"0"],EH:["212","00","[5-8]\\d{8}",[9],0,"0",0,0,0,0,"528[89]"],ER:["291","00","[178]\\d{6}",[7],[["(\\d)(\\d{3})(\\d{3})","$1 $2 $3",["[178]"],"0$1"]],"0"],ES:["34","00","[5-9]\\d{8}",[9],[["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[89]00"]],["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[5-9]"]]]],ET:["251","00","(?:11|[2-579]\\d)\\d{7}",[9],[["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["[1-579]"],"0$1"]],"0"],FI:["358","00|99(?:[01469]|5(?:[14]1|3[23]|5[59]|77|88|9[09]))","[1-35689]\\d{4}|7\\d{10,11}|(?:[124-7]\\d|3[0-46-9])\\d{8}|[1-9]\\d{5,8}",[5,6,7,8,9,10,11,12],[["(\\d)(\\d{4,9})","$1 $2",["[2568][1-8]|3(?:0[1-9]|[1-9])|9"],"0$1"],["(\\d{3})(\\d{3,7})","$1 $2",["[12]00|[368]|70[07-9]"],"0$1"],["(\\d{2})(\\d{4,8})","$1 $2",["[1245]|7[135]"],"0$1"],["(\\d{2})(\\d{6,10})","$1 $2",["7"],"0$1"]],"0",0,0,0,0,"1[03-79]|[2-9]",0,"00"],FJ:["679","0(?:0|52)","45\\d{5}|(?:0800\\d|[235-9])\\d{6}",[7,11],[["(\\d{3})(\\d{4})","$1 $2",["[235-9]|45"]],["(\\d{4})(\\d{3})(\\d{4})","$1 $2 $3",["0"]]],0,0,0,0,0,0,0,"00"],FK:["500","00","[2-7]\\d{4}",[5]],FM:["691","00","(?:[39]\\d\\d|820)\\d{4}",[7],[["(\\d{3})(\\d{4})","$1 $2",["[389]"]]]],FO:["298","00","[2-9]\\d{5}",[6],[["(\\d{6})","$1",["[2-9]"]]],0,0,"(10(?:01|[12]0|88))"],FR:["33","00","[1-9]\\d{8}",[9],[["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["8"],"0 $1"],["(\\d)(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4 $5",["[1-79]"],"0$1"]],"0"],GA:["241","00","(?:[067]\\d|11)\\d{6}|[2-7]\\d{6}",[7,8],[["(\\d)(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[2-7]"],"0$1"],["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["0"]],["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["11|[67]"],"0$1"]],0,0,"0(11\\d{6}|60\\d{6}|61\\d{6}|6[256]\\d{6}|7[467]\\d{6})","$1"],GB:["44","00","[1-357-9]\\d{9}|[18]\\d{8}|8\\d{6}",[7,9,10],[["(\\d{3})(\\d{4})","$1 $2",["800","8001","80011","800111","8001111"],"0$1"],["(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3",["845","8454","84546","845464"],"0$1"],["(\\d{3})(\\d{6})","$1 $2",["800"],"0$1"],["(\\d{5})(\\d{4,5})","$1 $2",["1(?:38|5[23]|69|76|94)","1(?:(?:38|69)7|5(?:24|39)|768|946)","1(?:3873|5(?:242|39[4-6])|(?:697|768)[347]|9467)"],"0$1"],["(\\d{4})(\\d{5,6})","$1 $2",["1(?:[2-69][02-9]|[78])"],"0$1"],["(\\d{2})(\\d{4})(\\d{4})","$1 $2 $3",["[25]|7(?:0|6[02-9])","[25]|7(?:0|6(?:[03-9]|2[356]))"],"0$1"],["(\\d{4})(\\d{6})","$1 $2",["7"],"0$1"],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["[1389]"],"0$1"]],"0",0,0,0,0,0,[["(?:1(?:1(?:3(?:[0-58]\\d\\d|73[0235])|4(?:[0-5]\\d\\d|69[7-9]|70[0-79])|(?:(?:5[0-26-9]|[78][0-49])\\d|6(?:[0-4]\\d|50))\\d)|(?:2(?:(?:0[024-9]|2[3-9]|3[3-79]|4[1-689]|[58][02-9]|6[0-47-9]|7[013-9]|9\\d)\\d|1(?:[0-7]\\d|8[0-2]))|(?:3(?:0\\d|1[0-8]|[25][02-9]|3[02-579]|[468][0-46-9]|7[1-35-79]|9[2-578])|4(?:0[03-9]|[137]\\d|[28][02-57-9]|4[02-69]|5[0-8]|[69][0-79])|5(?:0[1-35-9]|[16]\\d|2[024-9]|3[015689]|4[02-9]|5[03-9]|7[0-35-9]|8[0-468]|9[0-57-9])|6(?:0[034689]|1\\d|2[0-35689]|[38][013-9]|4[1-467]|5[0-69]|6[13-9]|7[0-8]|9[0-24578])|7(?:0[0246-9]|2\\d|3[0236-8]|4[03-9]|5[0-46-9]|6[013-9]|7[0-35-9]|8[024-9]|9[02-9])|8(?:0[35-9]|2[1-57-9]|3[02-578]|4[0-578]|5[124-9]|6[2-69]|7\\d|8[02-9]|9[02569])|9(?:0[02-589]|[18]\\d|2[02-689]|3[1-57-9]|4[2-9]|5[0-579]|6[2-47-9]|7[0-24578]|9[2-57]))\\d)\\d)|2(?:0[013478]|3[0189]|4[017]|8[0-46-9]|9[0-2])\\d{3})\\d{4}|1(?:2(?:0(?:46[1-4]|87[2-9])|545[1-79]|76(?:2\\d|3[1-8]|6[1-6])|9(?:7(?:2[0-4]|3[2-5])|8(?:2[2-8]|7[0-47-9]|8[3-5])))|3(?:6(?:38[2-5]|47[23])|8(?:47[04-9]|64[0157-9]))|4(?:044[1-7]|20(?:2[23]|8\\d)|6(?:0(?:30|5[2-57]|6[1-8]|7[2-8])|140)|8(?:052|87[1-3]))|5(?:2(?:4(?:3[2-79]|6\\d)|76\\d)|6(?:26[06-9]|686))|6(?:06(?:4\\d|7[4-79])|295[5-7]|35[34]\\d|47(?:24|61)|59(?:5[08]|6[67]|74)|9(?:55[0-4]|77[23]))|7(?:26(?:6[13-9]|7[0-7])|(?:442|688)\\d|50(?:2[0-3]|[3-68]2|76))|8(?:27[56]\\d|37(?:5[2-5]|8[239])|843[2-58])|9(?:0(?:0(?:6[1-8]|85)|52\\d)|3583|4(?:66[1-8]|9(?:2[01]|81))|63(?:23|3[1-4])|9561))\\d{3}",[9,10]],["7(?:457[0-57-9]|700[01]|911[028])\\d{5}|7(?:[1-3]\\d\\d|4(?:[0-46-9]\\d|5[0-689])|5(?:0[0-8]|[13-9]\\d|2[0-35-9])|7(?:0[1-9]|[1-7]\\d|8[02-9]|9[0-689])|8(?:[014-9]\\d|[23][0-8])|9(?:[024-9]\\d|1[02-9]|3[0-689]))\\d{6}",[10]],["80[08]\\d{7}|800\\d{6}|8001111"],["(?:8(?:4[2-5]|7[0-3])|9(?:[01]\\d|8[2-49]))\\d{7}|845464\\d",[7,10]],["70\\d{8}",[10]],0,["(?:3[0347]|55)\\d{8}",[10]],["76(?:464|652)\\d{5}|76(?:0[0-28]|2[356]|34|4[01347]|5[49]|6[0-369]|77|8[14]|9[139])\\d{6}",[10]],["56\\d{8}",[10]]],0," x"],GD:["1","011","(?:473|[58]\\d\\d|900)\\d{7}",[10],0,"1",0,"([2-9]\\d{6})$|1","473$1",0,"473"],GE:["995","00","(?:[3-57]\\d\\d|800)\\d{6}",[9],[["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["70"],"0$1"],["(\\d{2})(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3 $4",["32"],"0$1"],["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[57]"]],["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[348]"],"0$1"]],"0"],GF:["594","00","[56]94\\d{6}|(?:80|9\\d)\\d{7}",[9],[["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[56]|9[47]"],"0$1"],["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[89]"],"0$1"]],"0"],GG:["44","00","(?:1481|[357-9]\\d{3})\\d{6}|8\\d{6}(?:\\d{2})?",[7,9,10],0,"0",0,"([25-9]\\d{5})$|0","1481$1",0,0,[["1481[25-9]\\d{5}",[10]],["7(?:(?:781|839)\\d|911[17])\\d{5}",[10]],["80[08]\\d{7}|800\\d{6}|8001111"],["(?:8(?:4[2-5]|7[0-3])|9(?:[01]\\d|8[0-3]))\\d{7}|845464\\d",[7,10]],["70\\d{8}",[10]],0,["(?:3[0347]|55)\\d{8}",[10]],["76(?:464|652)\\d{5}|76(?:0[0-28]|2[356]|34|4[01347]|5[49]|6[0-369]|77|8[14]|9[139])\\d{6}",[10]],["56\\d{8}",[10]]]],GH:["233","00","(?:[235]\\d{3}|800)\\d{5}",[8,9],[["(\\d{3})(\\d{5})","$1 $2",["8"],"0$1"],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["[235]"],"0$1"]],"0"],GI:["350","00","(?:[25]\\d|60)\\d{6}",[8],[["(\\d{3})(\\d{5})","$1 $2",["2"]]]],GL:["299","00","(?:19|[2-689]\\d|70)\\d{4}",[6],[["(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3",["19|[2-9]"]]]],GM:["220","00","[2-9]\\d{6}",[7],[["(\\d{3})(\\d{4})","$1 $2",["[2-9]"]]]],GN:["224","00","722\\d{6}|(?:3|6\\d)\\d{7}",[8,9],[["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["3"]],["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[67]"]]]],GP:["590","00","590\\d{6}|(?:69|80|9\\d)\\d{7}",[9],[["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[569]"],"0$1"],["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["8"],"0$1"]],"0",0,0,0,0,0,[["590(?:0[1-68]|[14][0-24-9]|2[0-68]|3[1-9]|5[3-579]|[68][0-689]|7[08]|9\\d)\\d{4}"],["69(?:0\\d\\d|1(?:2[2-9]|3[0-5]))\\d{4}"],["80[0-5]\\d{6}"],0,0,0,0,0,["9(?:(?:395|76[018])\\d|475[0-5])\\d{4}"]]],GQ:["240","00","222\\d{6}|(?:3\\d|55|[89]0)\\d{7}",[9],[["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[235]"]],["(\\d{3})(\\d{6})","$1 $2",["[89]"]]]],GR:["30","00","5005000\\d{3}|8\\d{9,11}|(?:[269]\\d|70)\\d{8}",[10,11,12],[["(\\d{2})(\\d{4})(\\d{4})","$1 $2 $3",["21|7"]],["(\\d{4})(\\d{6})","$1 $2",["2(?:2|3[2-57-9]|4[2-469]|5[2-59]|6[2-9]|7[2-69]|8[2-49])|5"]],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["[2689]"]],["(\\d{3})(\\d{3,4})(\\d{5})","$1 $2 $3",["8"]]]],GT:["502","00","80\\d{6}|(?:1\\d{3}|[2-7])\\d{7}",[8,11],[["(\\d{4})(\\d{4})","$1 $2",["[2-8]"]],["(\\d{4})(\\d{3})(\\d{4})","$1 $2 $3",["1"]]]],GU:["1","011","(?:[58]\\d\\d|671|900)\\d{7}",[10],0,"1",0,"([2-9]\\d{6})$|1","671$1",0,"671"],GW:["245","00","[49]\\d{8}|4\\d{6}",[7,9],[["(\\d{3})(\\d{4})","$1 $2",["40"]],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[49]"]]]],GY:["592","001","(?:[2-8]\\d{3}|9008)\\d{3}",[7],[["(\\d{3})(\\d{4})","$1 $2",["[2-9]"]]]],HK:["852","00(?:30|5[09]|[126-9]?)","8[0-46-9]\\d{6,7}|9\\d{4,7}|(?:[2-7]|9\\d{3})\\d{7}",[5,6,7,8,9,11],[["(\\d{3})(\\d{2,5})","$1 $2",["900","9003"]],["(\\d{4})(\\d{4})","$1 $2",["[2-7]|8[1-4]|9(?:0[1-9]|[1-8])"]],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["8"]],["(\\d{3})(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3 $4",["9"]]],0,0,0,0,0,0,0,"00"],HN:["504","00","8\\d{10}|[237-9]\\d{7}",[8,11],[["(\\d{4})(\\d{4})","$1-$2",["[237-9]"]]]],HR:["385","00","(?:[24-69]\\d|3[0-79])\\d{7}|80\\d{5,7}|[1-79]\\d{7}|6\\d{5,6}",[6,7,8,9],[["(\\d{2})(\\d{2})(\\d{2,3})","$1 $2 $3",["6[01]"],"0$1"],["(\\d{3})(\\d{2})(\\d{2,3})","$1 $2 $3",["8"],"0$1"],["(\\d)(\\d{4})(\\d{3})","$1 $2 $3",["1"],"0$1"],["(\\d{2})(\\d{3})(\\d{3,4})","$1 $2 $3",["[67]"],"0$1"],["(\\d{2})(\\d{3})(\\d{3,4})","$1 $2 $3",["9"],"0$1"],["(\\d{2})(\\d{3})(\\d{3,4})","$1 $2 $3",["[2-5]"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["8"],"0$1"]],"0"],HT:["509","00","(?:[2-489]\\d|55)\\d{6}",[8],[["(\\d{2})(\\d{2})(\\d{4})","$1 $2 $3",["[2-589]"]]]],HU:["36","00","[235-7]\\d{8}|[1-9]\\d{7}",[8,9],[["(\\d)(\\d{3})(\\d{4})","$1 $2 $3",["1"],"(06 $1)"],["(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3",["[27][2-9]|3[2-7]|4[24-9]|5[2-79]|6|8[2-57-9]|9[2-69]"],"(06 $1)"],["(\\d{2})(\\d{3})(\\d{3,4})","$1 $2 $3",["[2-9]"],"06 $1"]],"06"],ID:["62","00[89]","(?:(?:00[1-9]|8\\d)\\d{4}|[1-36])\\d{6}|00\\d{10}|[1-9]\\d{8,10}|[2-9]\\d{7}",[7,8,9,10,11,12,13],[["(\\d)(\\d{3})(\\d{3})","$1 $2 $3",["15"]],["(\\d{2})(\\d{5,9})","$1 $2",["2[124]|[36]1"],"(0$1)"],["(\\d{3})(\\d{5,7})","$1 $2",["800"],"0$1"],["(\\d{3})(\\d{5,8})","$1 $2",["[2-79]"],"(0$1)"],["(\\d{3})(\\d{3,4})(\\d{3})","$1-$2-$3",["8[1-35-9]"],"0$1"],["(\\d{3})(\\d{6,8})","$1 $2",["1"],"0$1"],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["804"],"0$1"],["(\\d{3})(\\d)(\\d{3})(\\d{3})","$1 $2 $3 $4",["80"],"0$1"],["(\\d{3})(\\d{4})(\\d{4,5})","$1-$2-$3",["8"],"0$1"]],"0"],IE:["353","00","(?:1\\d|[2569])\\d{6,8}|4\\d{6,9}|7\\d{8}|8\\d{8,9}",[7,8,9,10],[["(\\d{2})(\\d{5})","$1 $2",["2[24-9]|47|58|6[237-9]|9[35-9]"],"(0$1)"],["(\\d{3})(\\d{5})","$1 $2",["[45]0"],"(0$1)"],["(\\d)(\\d{3,4})(\\d{4})","$1 $2 $3",["1"],"(0$1)"],["(\\d{2})(\\d{3})(\\d{3,4})","$1 $2 $3",["[2569]|4[1-69]|7[14]"],"(0$1)"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["70"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["81"],"(0$1)"],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["[78]"],"0$1"],["(\\d{4})(\\d{3})(\\d{3})","$1 $2 $3",["1"]],["(\\d{2})(\\d{4})(\\d{4})","$1 $2 $3",["4"],"(0$1)"],["(\\d{2})(\\d)(\\d{3})(\\d{4})","$1 $2 $3 $4",["8"],"0$1"]],"0"],IL:["972","0(?:0|1[2-9])","1\\d{6}(?:\\d{3,5})?|[57]\\d{8}|[1-489]\\d{7}",[7,8,9,10,11,12],[["(\\d{4})(\\d{3})","$1-$2",["125"]],["(\\d{4})(\\d{2})(\\d{2})","$1-$2-$3",["121"]],["(\\d)(\\d{3})(\\d{4})","$1-$2-$3",["[2-489]"],"0$1"],["(\\d{2})(\\d{3})(\\d{4})","$1-$2-$3",["[57]"],"0$1"],["(\\d{4})(\\d{3})(\\d{3})","$1-$2-$3",["12"]],["(\\d{4})(\\d{6})","$1-$2",["159"]],["(\\d)(\\d{3})(\\d{3})(\\d{3})","$1-$2-$3-$4",["1[7-9]"]],["(\\d{3})(\\d{1,2})(\\d{3})(\\d{4})","$1-$2 $3-$4",["15"]]],"0"],IM:["44","00","1624\\d{6}|(?:[3578]\\d|90)\\d{8}",[10],0,"0",0,"([25-8]\\d{5})$|0","1624$1",0,"74576|(?:16|7[56])24"],IN:["91","00","(?:000800|[2-9]\\d\\d)\\d{7}|1\\d{7,12}",[8,9,10,11,12,13],[["(\\d{8})","$1",["5(?:0|2[23]|3[03]|[67]1|88)","5(?:0|2(?:21|3)|3(?:0|3[23])|616|717|888)","5(?:0|2(?:21|3)|3(?:0|3[23])|616|717|8888)"],0,1],["(\\d{4})(\\d{4,5})","$1 $2",["180","1800"],0,1],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["140"],0,1],["(\\d{2})(\\d{4})(\\d{4})","$1 $2 $3",["11|2[02]|33|4[04]|79[1-7]|80[2-46]","11|2[02]|33|4[04]|79(?:[1-6]|7[19])|80(?:[2-4]|6[0-589])","11|2[02]|33|4[04]|79(?:[124-6]|3(?:[02-9]|1[0-24-9])|7(?:1|9[1-6]))|80(?:[2-4]|6[0-589])"],"0$1",1],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["1(?:2[0-249]|3[0-25]|4[145]|[68]|7[1257])|2(?:1[257]|3[013]|4[01]|5[0137]|6[0158]|78|8[1568])|3(?:26|4[1-3]|5[34]|6[01489]|7[02-46]|8[159])|4(?:1[36]|2[1-47]|5[12]|6[0-26-9]|7[0-24-9]|8[013-57]|9[014-7])|5(?:1[025]|22|[36][25]|4[28]|5[12]|[78]1)|6(?:12|[2-4]1|5[17]|6[13]|80)|7(?:12|3[134]|4[47]|61|88)|8(?:16|2[014]|3[126]|6[136]|7[078]|8[34]|91)|(?:43|59|75)[15]|(?:1[59]|29|67|72)[14]","1(?:2[0-24]|3[0-25]|4[145]|[59][14]|6[1-9]|7[1257]|8[1-57-9])|2(?:1[257]|3[013]|4[01]|5[0137]|6[058]|78|8[1568]|9[14])|3(?:26|4[1-3]|5[34]|6[01489]|7[02-46]|8[159])|4(?:1[36]|2[1-47]|3[15]|5[12]|6[0-26-9]|7[0-24-9]|8[013-57]|9[014-7])|5(?:1[025]|22|[36][25]|4[28]|[578]1|9[15])|674|7(?:(?:2[14]|3[34]|5[15])[2-6]|61[346]|88[0-8])|8(?:70[2-6]|84[235-7]|91[3-7])|(?:1(?:29|60|8[06])|261|552|6(?:12|[2-47]1|5[17]|6[13]|80)|7(?:12|31|4[47])|8(?:16|2[014]|3[126]|6[136]|7[78]|83))[2-7]","1(?:2[0-24]|3[0-25]|4[145]|[59][14]|6[1-9]|7[1257]|8[1-57-9])|2(?:1[257]|3[013]|4[01]|5[0137]|6[058]|78|8[1568]|9[14])|3(?:26|4[1-3]|5[34]|6[01489]|7[02-46]|8[159])|4(?:1[36]|2[1-47]|3[15]|5[12]|6[0-26-9]|7[0-24-9]|8[013-57]|9[014-7])|5(?:1[025]|22|[36][25]|4[28]|[578]1|9[15])|6(?:12(?:[2-6]|7[0-8])|74[2-7])|7(?:(?:2[14]|5[15])[2-6]|3171|61[346]|88(?:[2-7]|82))|8(?:70[2-6]|84(?:[2356]|7[19])|91(?:[3-6]|7[19]))|73[134][2-6]|(?:74[47]|8(?:16|2[014]|3[126]|6[136]|7[78]|83))(?:[2-6]|7[19])|(?:1(?:29|60|8[06])|261|552|6(?:[2-4]1|5[17]|6[13]|7(?:1|4[0189])|80)|7(?:12|88[01]))[2-7]"],"0$1",1],["(\\d{4})(\\d{3})(\\d{3})","$1 $2 $3",["1(?:[2-479]|5[0235-9])|[2-5]|6(?:1[1358]|2[2457-9]|3[2-5]|4[235-7]|5[2-689]|6[24578]|7[235689]|8[1-6])|7(?:1[013-9]|28|3[129]|4[1-35689]|5[29]|6[02-5]|70)|807","1(?:[2-479]|5[0235-9])|[2-5]|6(?:1[1358]|2(?:[2457]|84|95)|3(?:[2-4]|55)|4[235-7]|5[2-689]|6[24578]|7[235689]|8[1-6])|7(?:1(?:[013-8]|9[6-9])|28[6-8]|3(?:17|2[0-49]|9[2-57])|4(?:1[2-4]|[29][0-7]|3[0-8]|[56]|8[0-24-7])|5(?:2[1-3]|9[0-6])|6(?:0[5689]|2[5-9]|3[02-8]|4|5[0-367])|70[13-7])|807[19]","1(?:[2-479]|5(?:[0236-9]|5[013-9]))|[2-5]|6(?:2(?:84|95)|355|83)|73179|807(?:1|9[1-3])|(?:1552|6(?:1[1358]|2[2457]|3[2-4]|4[235-7]|5[2-689]|6[24578]|7[235689]|8[124-6])\\d|7(?:1(?:[013-8]\\d|9[6-9])|28[6-8]|3(?:2[0-49]|9[2-57])|4(?:1[2-4]|[29][0-7]|3[0-8]|[56]\\d|8[0-24-7])|5(?:2[1-3]|9[0-6])|6(?:0[5689]|2[5-9]|3[02-8]|4\\d|5[0-367])|70[13-7]))[2-7]"],"0$1",1],["(\\d{5})(\\d{5})","$1 $2",["[6-9]"],"0$1",1],["(\\d{4})(\\d{2,4})(\\d{4})","$1 $2 $3",["1(?:6|8[06])","1(?:6|8[06]0)"],0,1],["(\\d{4})(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3 $4",["18"],0,1]],"0"],IO:["246","00","3\\d{6}",[7],[["(\\d{3})(\\d{4})","$1 $2",["3"]]]],IQ:["964","00","(?:1|7\\d\\d)\\d{7}|[2-6]\\d{7,8}",[8,9,10],[["(\\d)(\\d{3})(\\d{4})","$1 $2 $3",["1"],"0$1"],["(\\d{2})(\\d{3})(\\d{3,4})","$1 $2 $3",["[2-6]"],"0$1"],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["7"],"0$1"]],"0"],IR:["98","00","[1-9]\\d{9}|(?:[1-8]\\d\\d|9)\\d{3,4}",[4,5,6,7,10],[["(\\d{4,5})","$1",["96"],"0$1"],["(\\d{2})(\\d{4,5})","$1 $2",["(?:1[137]|2[13-68]|3[1458]|4[145]|5[1468]|6[16]|7[1467]|8[13467])[12689]"],"0$1"],["(\\d{3})(\\d{3})(\\d{3,4})","$1 $2 $3",["9"],"0$1"],["(\\d{2})(\\d{4})(\\d{4})","$1 $2 $3",["[1-8]"],"0$1"]],"0"],IS:["354","00|1(?:0(?:01|[12]0)|100)","(?:38\\d|[4-9])\\d{6}",[7,9],[["(\\d{3})(\\d{4})","$1 $2",["[4-9]"]],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["3"]]],0,0,0,0,0,0,0,"00"],IT:["39","00","0\\d{5,10}|1\\d{8,10}|3(?:[0-8]\\d{7,10}|9\\d{7,8})|(?:55|70)\\d{8}|8\\d{5}(?:\\d{2,4})?",[6,7,8,9,10,11],[["(\\d{2})(\\d{4,6})","$1 $2",["0[26]"]],["(\\d{3})(\\d{3,6})","$1 $2",["0[13-57-9][0159]|8(?:03|4[17]|9[2-5])","0[13-57-9][0159]|8(?:03|4[17]|9(?:2|3[04]|[45][0-4]))"]],["(\\d{4})(\\d{2,6})","$1 $2",["0(?:[13-579][2-46-8]|8[236-8])"]],["(\\d{4})(\\d{4})","$1 $2",["894"]],["(\\d{2})(\\d{3,4})(\\d{4})","$1 $2 $3",["0[26]|5"]],["(\\d{3})(\\d{3})(\\d{3,4})","$1 $2 $3",["1(?:44|[679])|[378]"]],["(\\d{3})(\\d{3,4})(\\d{4})","$1 $2 $3",["0[13-57-9][0159]|14"]],["(\\d{2})(\\d{4})(\\d{5})","$1 $2 $3",["0[26]"]],["(\\d{4})(\\d{3})(\\d{4})","$1 $2 $3",["0"]],["(\\d{3})(\\d{4})(\\d{4,5})","$1 $2 $3",["3"]]],0,0,0,0,0,0,[["0669[0-79]\\d{1,6}|0(?:1(?:[0159]\\d|[27][1-5]|31|4[1-4]|6[1356]|8[2-57])|2\\d\\d|3(?:[0159]\\d|2[1-4]|3[12]|[48][1-6]|6[2-59]|7[1-7])|4(?:[0159]\\d|[23][1-9]|4[245]|6[1-5]|7[1-4]|81)|5(?:[0159]\\d|2[1-5]|3[2-6]|4[1-79]|6[4-6]|7[1-578]|8[3-8])|6(?:[0-57-9]\\d|6[0-8])|7(?:[0159]\\d|2[12]|3[1-7]|4[2-46]|6[13569]|7[13-6]|8[1-59])|8(?:[0159]\\d|2[3-578]|3[1-356]|[6-8][1-5])|9(?:[0159]\\d|[238][1-5]|4[12]|6[1-8]|7[1-6]))\\d{2,7}"],["3[1-9]\\d{8}|3[2-9]\\d{7}",[9,10]],["80(?:0\\d{3}|3)\\d{3}",[6,9]],["(?:0878\\d{3}|89(?:2\\d|3[04]|4(?:[0-4]|[5-9]\\d\\d)|5[0-4]))\\d\\d|(?:1(?:44|6[346])|89(?:38|5[5-9]|9))\\d{6}",[6,8,9,10]],["1(?:78\\d|99)\\d{6}",[9,10]],0,0,0,["55\\d{8}",[10]],["84(?:[08]\\d{3}|[17])\\d{3}",[6,9]]]],JE:["44","00","1534\\d{6}|(?:[3578]\\d|90)\\d{8}",[10],0,"0",0,"([0-24-8]\\d{5})$|0","1534$1",0,0,[["1534[0-24-8]\\d{5}"],["7(?:(?:(?:50|82)9|937)\\d|7(?:00[378]|97[7-9]))\\d{5}"],["80(?:07(?:35|81)|8901)\\d{4}"],["(?:8(?:4(?:4(?:4(?:05|42|69)|703)|5(?:041|800))|7(?:0002|1206))|90(?:066[59]|1810|71(?:07|55)))\\d{4}"],["701511\\d{4}"],0,["(?:3(?:0(?:07(?:35|81)|8901)|3\\d{4}|4(?:4(?:4(?:05|42|69)|703)|5(?:041|800))|7(?:0002|1206))|55\\d{4})\\d{4}"],["76(?:464|652)\\d{5}|76(?:0[0-28]|2[356]|34|4[01347]|5[49]|6[0-369]|77|8[14]|9[139])\\d{6}"],["56\\d{8}"]]],JM:["1","011","(?:[58]\\d\\d|658|900)\\d{7}",[10],0,"1",0,0,0,0,"658|876"],JO:["962","00","(?:(?:[2689]|7\\d)\\d|32|53)\\d{6}",[8,9],[["(\\d)(\\d{3})(\\d{4})","$1 $2 $3",["[2356]|87"],"(0$1)"],["(\\d{3})(\\d{5,6})","$1 $2",["[89]"],"0$1"],["(\\d{2})(\\d{7})","$1 $2",["70"],"0$1"],["(\\d)(\\d{4})(\\d{4})","$1 $2 $3",["7"],"0$1"]],"0"],JP:["81","010","00[1-9]\\d{6,14}|[257-9]\\d{9}|(?:00|[1-9]\\d\\d)\\d{6}",[8,9,10,11,12,13,14,15,16,17],[["(\\d{3})(\\d{3})(\\d{3})","$1-$2-$3",["(?:12|57|99)0"],"0$1"],["(\\d{4})(\\d)(\\d{4})","$1-$2-$3",["1(?:26|3[79]|4[56]|5[4-68]|6[3-5])|499|5(?:76|97)|746|8(?:3[89]|47|51)|9(?:80|9[16])","1(?:267|3(?:7[247]|9[278])|466|5(?:47|58|64)|6(?:3[245]|48|5[4-68]))|499[2468]|5(?:76|97)9|7468|8(?:3(?:8[7-9]|96)|477|51[2-9])|9(?:802|9(?:1[23]|69))|1(?:45|58)[67]","1(?:267|3(?:7[247]|9[278])|466|5(?:47|58|64)|6(?:3[245]|48|5[4-68]))|499[2468]|5(?:769|979[2-69])|7468|8(?:3(?:8[7-9]|96[2457-9])|477|51[2-9])|9(?:802|9(?:1[23]|69))|1(?:45|58)[67]"],"0$1"],["(\\d{2})(\\d{3})(\\d{4})","$1-$2-$3",["60"],"0$1"],["(\\d)(\\d{4})(\\d{4})","$1-$2-$3",["[36]|4(?:2[09]|7[01])","[36]|4(?:2(?:0|9[02-69])|7(?:0[019]|1))"],"0$1"],["(\\d{2})(\\d{3})(\\d{4})","$1-$2-$3",["1(?:1|5[45]|77|88|9[69])|2(?:2[1-37]|3[0-269]|4[59]|5|6[24]|7[1-358]|8[1369]|9[0-38])|4(?:[28][1-9]|3[0-57]|[45]|6[248]|7[2-579]|9[29])|5(?:2|3[0459]|4[0-369]|5[29]|8[02389]|9[0-389])|7(?:2[02-46-9]|34|[58]|6[0249]|7[57]|9[2-6])|8(?:2[124589]|3[26-9]|49|51|6|7[0-468]|8[68]|9[019])|9(?:[23][1-9]|4[15]|5[138]|6[1-3]|7[156]|8[189]|9[1-489])","1(?:1|5(?:4[018]|5[017])|77|88|9[69])|2(?:2(?:[127]|3[014-9])|3[0-269]|4[59]|5(?:[1-3]|5[0-69]|9[19])|62|7(?:[1-35]|8[0189])|8(?:[16]|3[0134]|9[0-5])|9(?:[028]|17))|4(?:2(?:[13-79]|8[014-6])|3[0-57]|[45]|6[248]|7[2-47]|8[1-9]|9[29])|5(?:2|3(?:[045]|9[0-8])|4[0-369]|5[29]|8[02389]|9[0-3])|7(?:2[02-46-9]|34|[58]|6[0249]|7[57]|9(?:[23]|4[0-59]|5[01569]|6[0167]))|8(?:2(?:[1258]|4[0-39]|9[0-2469])|3(?:[29]|60)|49|51|6(?:[0-24]|36|5[0-3589]|7[23]|9[01459])|7[0-468]|8[68])|9(?:[23][1-9]|4[15]|5[138]|6[1-3]|7[156]|8[189]|9(?:[1289]|3[34]|4[0178]))|(?:264|837)[016-9]|2(?:57|93)[015-9]|(?:25[0468]|422|838)[01]|(?:47[59]|59[89]|8(?:6[68]|9))[019]","1(?:1|5(?:4[018]|5[017])|77|88|9[69])|2(?:2[127]|3[0-269]|4[59]|5(?:[1-3]|5[0-69]|9(?:17|99))|6(?:2|4[016-9])|7(?:[1-35]|8[0189])|8(?:[16]|3[0134]|9[0-5])|9(?:[028]|17))|4(?:2(?:[13-79]|8[014-6])|3[0-57]|[45]|6[248]|7[2-47]|9[29])|5(?:2|3(?:[045]|9(?:[0-58]|6[4-9]|7[0-35689]))|4[0-369]|5[29]|8[02389]|9[0-3])|7(?:2[02-46-9]|34|[58]|6[0249]|7[57]|9(?:[23]|4[0-59]|5[01569]|6[0167]))|8(?:2(?:[1258]|4[0-39]|9[0169])|3(?:[29]|60|7(?:[017-9]|6[6-8]))|49|51|6(?:[0-24]|36[2-57-9]|5(?:[0-389]|5[23])|6(?:[01]|9[178])|7(?:2[2-468]|3[78])|9[0145])|7[0-468]|8[68])|9(?:4[15]|5[138]|7[156]|8[189]|9(?:[1289]|3(?:31|4[357])|4[0178]))|(?:8294|96)[1-3]|2(?:57|93)[015-9]|(?:223|8699)[014-9]|(?:25[0468]|422|838)[01]|(?:48|8292|9[23])[1-9]|(?:47[59]|59[89]|8(?:68|9))[019]"],"0$1"],["(\\d{3})(\\d{2})(\\d{4})","$1-$2-$3",["[14]|[289][2-9]|5[3-9]|7[2-4679]"],"0$1"],["(\\d{3})(\\d{3})(\\d{4})","$1-$2-$3",["800"],"0$1"],["(\\d{2})(\\d{4})(\\d{4})","$1-$2-$3",["[257-9]"],"0$1"]],"0",0,"(000[259]\\d{6})$|(?:(?:003768)0?)|0","$1"],KE:["254","000","(?:[17]\\d\\d|900)\\d{6}|(?:2|80)0\\d{6,7}|[4-6]\\d{6,8}",[7,8,9,10],[["(\\d{2})(\\d{5,7})","$1 $2",["[24-6]"],"0$1"],["(\\d{3})(\\d{6})","$1 $2",["[17]"],"0$1"],["(\\d{3})(\\d{3})(\\d{3,4})","$1 $2 $3",["[89]"],"0$1"]],"0"],KG:["996","00","8\\d{9}|[235-9]\\d{8}",[9,10],[["(\\d{4})(\\d{5})","$1 $2",["3(?:1[346]|[24-79])"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[235-79]|88"],"0$1"],["(\\d{3})(\\d{3})(\\d)(\\d{2,3})","$1 $2 $3 $4",["8"],"0$1"]],"0"],KH:["855","00[14-9]","1\\d{9}|[1-9]\\d{7,8}",[8,9,10],[["(\\d{2})(\\d{3})(\\d{3,4})","$1 $2 $3",["[1-9]"],"0$1"],["(\\d{4})(\\d{3})(\\d{3})","$1 $2 $3",["1"]]],"0"],KI:["686","00","(?:[37]\\d|6[0-79])\\d{6}|(?:[2-48]\\d|50)\\d{3}",[5,8],0,"0"],KM:["269","00","[3478]\\d{6}",[7],[["(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3",["[3478]"]]]],KN:["1","011","(?:[58]\\d\\d|900)\\d{7}",[10],0,"1",0,"([2-7]\\d{6})$|1","869$1",0,"869"],KP:["850","00|99","85\\d{6}|(?:19\\d|[2-7])\\d{7}",[8,10],[["(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3",["8"],"0$1"],["(\\d)(\\d{3})(\\d{4})","$1 $2 $3",["[2-7]"],"0$1"],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["1"],"0$1"]],"0"],KR:["82","00(?:[125689]|3(?:[46]5|91)|7(?:00|27|3|55|6[126]))","00[1-9]\\d{8,11}|(?:[12]|5\\d{3})\\d{7}|[13-6]\\d{9}|(?:[1-6]\\d|80)\\d{7}|[3-6]\\d{4,5}|(?:00|7)0\\d{8}",[5,6,8,9,10,11,12,13,14],[["(\\d{2})(\\d{3,4})","$1-$2",["(?:3[1-3]|[46][1-4]|5[1-5])1"],"0$1"],["(\\d{4})(\\d{4})","$1-$2",["1"]],["(\\d)(\\d{3,4})(\\d{4})","$1-$2-$3",["2"],"0$1"],["(\\d{2})(\\d{3})(\\d{4})","$1-$2-$3",["60|8"],"0$1"],["(\\d{2})(\\d{3,4})(\\d{4})","$1-$2-$3",["[1346]|5[1-5]"],"0$1"],["(\\d{2})(\\d{4})(\\d{4})","$1-$2-$3",["[57]"],"0$1"],["(\\d{2})(\\d{5})(\\d{4})","$1-$2-$3",["5"],"0$1"]],"0",0,"0(8(?:[1-46-8]|5\\d\\d))?"],KW:["965","00","18\\d{5}|(?:[2569]\\d|41)\\d{6}",[7,8],[["(\\d{4})(\\d{3,4})","$1 $2",["[169]|2(?:[235]|4[1-35-9])|52"]],["(\\d{3})(\\d{5})","$1 $2",["[245]"]]]],KY:["1","011","(?:345|[58]\\d\\d|900)\\d{7}",[10],0,"1",0,"([2-9]\\d{6})$|1","345$1",0,"345"],KZ:["7","810","(?:33622|8\\d{8})\\d{5}|[78]\\d{9}",[10,14],0,"8",0,0,0,0,"33|7",0,"8~10"],LA:["856","00","[23]\\d{9}|3\\d{8}|(?:[235-8]\\d|41)\\d{6}",[8,9,10],[["(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3",["2[13]|3[14]|[4-8]"],"0$1"],["(\\d{2})(\\d{2})(\\d{2})(\\d{3})","$1 $2 $3 $4",["30[013-9]"],"0$1"],["(\\d{2})(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3 $4",["[23]"],"0$1"]],"0"],LB:["961","00","[27-9]\\d{7}|[13-9]\\d{6}",[7,8],[["(\\d)(\\d{3})(\\d{3})","$1 $2 $3",["[13-69]|7(?:[2-57]|62|8[0-7]|9[04-9])|8[02-9]"],"0$1"],["(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3",["[27-9]"]]],"0"],LC:["1","011","(?:[58]\\d\\d|758|900)\\d{7}",[10],0,"1",0,"([2-8]\\d{6})$|1","758$1",0,"758"],LI:["423","00","[68]\\d{8}|(?:[2378]\\d|90)\\d{5}",[7,9],[["(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3",["[2379]|8(?:0[09]|7)","[2379]|8(?:0(?:02|9)|7)"]],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["8"]],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["69"]],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["6"]]],"0",0,"(1001)|0"],LK:["94","00","[1-9]\\d{8}",[9],[["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["7"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[1-689]"],"0$1"]],"0"],LR:["231","00","(?:[25]\\d|33|77|88)\\d{7}|(?:2\\d|[4-6])\\d{6}",[7,8,9],[["(\\d)(\\d{3})(\\d{3})","$1 $2 $3",["[4-6]"],"0$1"],["(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3",["2"],"0$1"],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["[23578]"],"0$1"]],"0"],LS:["266","00","(?:[256]\\d\\d|800)\\d{5}",[8],[["(\\d{4})(\\d{4})","$1 $2",["[2568]"]]]],LT:["370","00","(?:[3469]\\d|52|[78]0)\\d{6}",[8],[["(\\d)(\\d{3})(\\d{4})","$1 $2 $3",["52[0-7]"],"(8-$1)",1],["(\\d{3})(\\d{2})(\\d{3})","$1 $2 $3",["[7-9]"],"8 $1",1],["(\\d{2})(\\d{6})","$1 $2",["37|4(?:[15]|6[1-8])"],"(8-$1)",1],["(\\d{3})(\\d{5})","$1 $2",["[3-6]"],"(8-$1)",1]],"8",0,"[08]"],LU:["352","00","35[013-9]\\d{4,8}|6\\d{8}|35\\d{2,4}|(?:[2457-9]\\d|3[0-46-9])\\d{2,9}",[4,5,6,7,8,9,10,11],[["(\\d{2})(\\d{3})","$1 $2",["2(?:0[2-689]|[2-9])|[3-57]|8(?:0[2-9]|[13-9])|9(?:0[89]|[2-579])"]],["(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3",["2(?:0[2-689]|[2-9])|[3-57]|8(?:0[2-9]|[13-9])|9(?:0[89]|[2-579])"]],["(\\d{2})(\\d{2})(\\d{3})","$1 $2 $3",["20[2-689]"]],["(\\d{2})(\\d{2})(\\d{2})(\\d{1,2})","$1 $2 $3 $4",["2(?:[0367]|4[3-8])"]],["(\\d{3})(\\d{2})(\\d{3})","$1 $2 $3",["80[01]|90[015]"]],["(\\d{2})(\\d{2})(\\d{2})(\\d{3})","$1 $2 $3 $4",["20"]],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["6"]],["(\\d{2})(\\d{2})(\\d{2})(\\d{2})(\\d{1,2})","$1 $2 $3 $4 $5",["2(?:[0367]|4[3-8])"]],["(\\d{2})(\\d{2})(\\d{2})(\\d{1,5})","$1 $2 $3 $4",["[3-57]|8[13-9]|9(?:0[89]|[2-579])|(?:2|80)[2-9]"]]],0,0,"(15(?:0[06]|1[12]|[35]5|4[04]|6[26]|77|88|99)\\d)"],LV:["371","00","(?:[268]\\d|90)\\d{6}",[8],[["(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3",["[269]|8[01]"]]]],LY:["218","00","[2-9]\\d{8}",[9],[["(\\d{2})(\\d{7})","$1-$2",["[2-9]"],"0$1"]],"0"],MA:["212","00","[5-8]\\d{8}",[9],[["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["5[45]"],"0$1"],["(\\d{4})(\\d{5})","$1-$2",["5(?:2[2-489]|3[5-9]|9)|8(?:0[89]|92)","5(?:2(?:[2-49]|8[235-9])|3[5-9]|9)|8(?:0[89]|92)"],"0$1"],["(\\d{2})(\\d{7})","$1-$2",["8"],"0$1"],["(\\d{3})(\\d{6})","$1-$2",["[5-7]"],"0$1"]],"0",0,0,0,0,0,[["5(?:2(?:[0-25-79]\\d|3[1-578]|4[02-46-8]|8[0235-7])|3(?:[0-47]\\d|5[02-9]|6[02-8]|8[014-9]|9[3-9])|(?:4[067]|5[03])\\d)\\d{5}"],["(?:6(?:[0-79]\\d|8[0-247-9])|7(?:[0167]\\d|2[0-2]|5[01]|8[0-3]))\\d{6}"],["80[0-7]\\d{6}"],["89\\d{7}"],0,0,0,0,["(?:592(?:4[0-2]|93)|80[89]\\d\\d)\\d{4}"]]],MC:["377","00","(?:[3489]|6\\d)\\d{7}",[8,9],[["(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3",["4"],"0$1"],["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[389]"]],["(\\d)(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4 $5",["6"],"0$1"]],"0"],MD:["373","00","(?:[235-7]\\d|[89]0)\\d{6}",[8],[["(\\d{3})(\\d{5})","$1 $2",["[89]"],"0$1"],["(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3",["22|3"],"0$1"],["(\\d{3})(\\d{2})(\\d{3})","$1 $2 $3",["[25-7]"],"0$1"]],"0"],ME:["382","00","(?:20|[3-79]\\d)\\d{6}|80\\d{6,7}",[8,9],[["(\\d{2})(\\d{3})(\\d{3,4})","$1 $2 $3",["[2-9]"],"0$1"]],"0"],MF:["590","00","590\\d{6}|(?:69|80|9\\d)\\d{7}",[9],0,"0",0,0,0,0,0,[["590(?:0[079]|[14]3|[27][79]|3[03-7]|5[0-268]|87)\\d{4}"],["69(?:0\\d\\d|1(?:2[2-9]|3[0-5]))\\d{4}"],["80[0-5]\\d{6}"],0,0,0,0,0,["9(?:(?:395|76[018])\\d|475[0-5])\\d{4}"]]],MG:["261","00","[23]\\d{8}",[9],[["(\\d{2})(\\d{2})(\\d{3})(\\d{2})","$1 $2 $3 $4",["[23]"],"0$1"]],"0",0,"([24-9]\\d{6})$|0","20$1"],MH:["692","011","329\\d{4}|(?:[256]\\d|45)\\d{5}",[7],[["(\\d{3})(\\d{4})","$1-$2",["[2-6]"]]],"1"],MK:["389","00","[2-578]\\d{7}",[8],[["(\\d)(\\d{3})(\\d{4})","$1 $2 $3",["2|34[47]|4(?:[37]7|5[47]|64)"],"0$1"],["(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3",["[347]"],"0$1"],["(\\d{3})(\\d)(\\d{2})(\\d{2})","$1 $2 $3 $4",["[58]"],"0$1"]],"0"],ML:["223","00","[24-9]\\d{7}",[8],[["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[24-9]"]]]],MM:["95","00","1\\d{5,7}|95\\d{6}|(?:[4-7]|9[0-46-9])\\d{6,8}|(?:2|8\\d)\\d{5,8}",[6,7,8,9,10],[["(\\d)(\\d{2})(\\d{3})","$1 $2 $3",["16|2"],"0$1"],["(\\d{2})(\\d{2})(\\d{3})","$1 $2 $3",["[45]|6(?:0[23]|[1-689]|7[235-7])|7(?:[0-4]|5[2-7])|8[1-6]"],"0$1"],["(\\d)(\\d{3})(\\d{3,4})","$1 $2 $3",["[12]"],"0$1"],["(\\d{2})(\\d{3})(\\d{3,4})","$1 $2 $3",["[4-7]|8[1-35]"],"0$1"],["(\\d)(\\d{3})(\\d{4,6})","$1 $2 $3",["9(?:2[0-4]|[35-9]|4[137-9])"],"0$1"],["(\\d)(\\d{4})(\\d{4})","$1 $2 $3",["2"],"0$1"],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["8"],"0$1"],["(\\d)(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3 $4",["92"],"0$1"],["(\\d)(\\d{5})(\\d{4})","$1 $2 $3",["9"],"0$1"]],"0"],MN:["976","001","[12]\\d{7,9}|[5-9]\\d{7}",[8,9,10],[["(\\d{2})(\\d{2})(\\d{4})","$1 $2 $3",["[12]1"],"0$1"],["(\\d{4})(\\d{4})","$1 $2",["[5-9]"]],["(\\d{3})(\\d{5,6})","$1 $2",["[12]2[1-3]"],"0$1"],["(\\d{4})(\\d{5,6})","$1 $2",["[12](?:27|3[2-8]|4[2-68]|5[1-4689])","[12](?:27|3[2-8]|4[2-68]|5[1-4689])[0-3]"],"0$1"],["(\\d{5})(\\d{4,5})","$1 $2",["[12]"],"0$1"]],"0"],MO:["853","00","0800\\d{3}|(?:28|[68]\\d)\\d{6}",[7,8],[["(\\d{4})(\\d{3})","$1 $2",["0"]],["(\\d{4})(\\d{4})","$1 $2",["[268]"]]]],MP:["1","011","[58]\\d{9}|(?:67|90)0\\d{7}",[10],0,"1",0,"([2-9]\\d{6})$|1","670$1",0,"670"],MQ:["596","00","596\\d{6}|(?:69|80|9\\d)\\d{7}",[9],[["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[569]"],"0$1"],["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["8"],"0$1"]],"0"],MR:["222","00","(?:[2-4]\\d\\d|800)\\d{5}",[8],[["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[2-48]"]]]],MS:["1","011","(?:[58]\\d\\d|664|900)\\d{7}",[10],0,"1",0,"([34]\\d{6})$|1","664$1",0,"664"],MT:["356","00","3550\\d{4}|(?:[2579]\\d\\d|800)\\d{5}",[8],[["(\\d{4})(\\d{4})","$1 $2",["[2357-9]"]]]],MU:["230","0(?:0|[24-7]0|3[03])","(?:[57]|8\\d\\d)\\d{7}|[2-468]\\d{6}",[7,8,10],[["(\\d{3})(\\d{4})","$1 $2",["[2-46]|8[013]"]],["(\\d{4})(\\d{4})","$1 $2",["[57]"]],["(\\d{5})(\\d{5})","$1 $2",["8"]]],0,0,0,0,0,0,0,"020"],MV:["960","0(?:0|19)","(?:800|9[0-57-9]\\d)\\d{7}|[34679]\\d{6}",[7,10],[["(\\d{3})(\\d{4})","$1-$2",["[34679]"]],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["[89]"]]],0,0,0,0,0,0,0,"00"],MW:["265","00","(?:[1289]\\d|31|77)\\d{7}|1\\d{6}",[7,9],[["(\\d)(\\d{3})(\\d{3})","$1 $2 $3",["1[2-9]"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["2"],"0$1"],["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[137-9]"],"0$1"]],"0"],MX:["52","0[09]","1(?:(?:[27]2|44|87|99)[1-9]|65[0-689])\\d{7}|(?:1(?:[01]\\d|2[13-9]|[35][1-9]|4[0-35-9]|6[0-46-9]|7[013-9]|8[1-69]|9[1-8])|[2-9]\\d)\\d{8}",[10,11],[["(\\d{2})(\\d{4})(\\d{4})","$1 $2 $3",["33|5[56]|81"],0,1],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["[2-9]"],0,1],["(\\d)(\\d{2})(\\d{4})(\\d{4})","$2 $3 $4",["1(?:33|5[56]|81)"],0,1],["(\\d)(\\d{3})(\\d{3})(\\d{4})","$2 $3 $4",["1"],0,1]],"01",0,"0(?:[12]|4[45])|1",0,0,0,0,"00"],MY:["60","00","1\\d{8,9}|(?:3\\d|[4-9])\\d{7}",[8,9,10],[["(\\d)(\\d{3})(\\d{4})","$1-$2 $3",["[4-79]"],"0$1"],["(\\d{2})(\\d{3})(\\d{3,4})","$1-$2 $3",["1(?:[02469]|[378][1-9]|53)|8","1(?:[02469]|[37][1-9]|53|8(?:[1-46-9]|5[7-9]))|8"],"0$1"],["(\\d)(\\d{4})(\\d{4})","$1-$2 $3",["3"],"0$1"],["(\\d)(\\d{3})(\\d{2})(\\d{4})","$1-$2-$3-$4",["1(?:[367]|80)"]],["(\\d{3})(\\d{3})(\\d{4})","$1-$2 $3",["15"],"0$1"],["(\\d{2})(\\d{4})(\\d{4})","$1-$2 $3",["1"],"0$1"]],"0"],MZ:["258","00","(?:2|8\\d)\\d{7}",[8,9],[["(\\d{2})(\\d{3})(\\d{3,4})","$1 $2 $3",["2|8[2-79]"]],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["8"]]]],NA:["264","00","[68]\\d{7,8}",[8,9],[["(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3",["88"],"0$1"],["(\\d{2})(\\d{3})(\\d{3,4})","$1 $2 $3",["6"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["87"],"0$1"],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["8"],"0$1"]],"0"],NC:["687","00","(?:050|[2-57-9]\\d\\d)\\d{3}",[6],[["(\\d{2})(\\d{2})(\\d{2})","$1.$2.$3",["[02-57-9]"]]]],NE:["227","00","[027-9]\\d{7}",[8],[["(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3",["08"]],["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[089]|2[013]|7[047]"]]]],NF:["672","00","[13]\\d{5}",[6],[["(\\d{2})(\\d{4})","$1 $2",["1[0-3]"]],["(\\d)(\\d{5})","$1 $2",["[13]"]]],0,0,"([0-258]\\d{4})$","3$1"],NG:["234","009","(?:[124-7]|9\\d{3})\\d{6}|[1-9]\\d{7}|[78]\\d{9,13}",[7,8,10,11,12,13,14],[["(\\d{2})(\\d{2})(\\d{3})","$1 $2 $3",["78"],"0$1"],["(\\d)(\\d{3})(\\d{3,4})","$1 $2 $3",["[12]|9(?:0[3-9]|[1-9])"],"0$1"],["(\\d{2})(\\d{3})(\\d{2,3})","$1 $2 $3",["[3-7]|8[2-9]"],"0$1"],["(\\d{3})(\\d{3})(\\d{3,4})","$1 $2 $3",["[7-9]"],"0$1"],["(\\d{3})(\\d{4})(\\d{4,5})","$1 $2 $3",["[78]"],"0$1"],["(\\d{3})(\\d{5})(\\d{5,6})","$1 $2 $3",["[78]"],"0$1"]],"0"],NI:["505","00","(?:1800|[25-8]\\d{3})\\d{4}",[8],[["(\\d{4})(\\d{4})","$1 $2",["[125-8]"]]]],NL:["31","00","(?:[124-7]\\d\\d|3(?:[02-9]\\d|1[0-8]))\\d{6}|8\\d{6,9}|9\\d{6,10}|1\\d{4,5}",[5,6,7,8,9,10,11],[["(\\d{3})(\\d{4,7})","$1 $2",["[89]0"],"0$1"],["(\\d{2})(\\d{7})","$1 $2",["66"],"0$1"],["(\\d)(\\d{8})","$1 $2",["6"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["1[16-8]|2[259]|3[124]|4[17-9]|5[124679]"],"0$1"],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["[1-578]|91"],"0$1"],["(\\d{3})(\\d{3})(\\d{5})","$1 $2 $3",["9"],"0$1"]],"0"],NO:["47","00","(?:0|[2-9]\\d{3})\\d{4}",[5,8],[["(\\d{3})(\\d{2})(\\d{3})","$1 $2 $3",["8"]],["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[2-79]"]]],0,0,0,0,0,"[02-689]|7[0-8]"],NP:["977","00","(?:1\\d|9)\\d{9}|[1-9]\\d{7}",[8,10,11],[["(\\d)(\\d{7})","$1-$2",["1[2-6]"],"0$1"],["(\\d{2})(\\d{6})","$1-$2",["1[01]|[2-8]|9(?:[1-59]|[67][2-6])"],"0$1"],["(\\d{3})(\\d{7})","$1-$2",["9"]]],"0"],NR:["674","00","(?:444|(?:55|8\\d)\\d|666)\\d{4}",[7],[["(\\d{3})(\\d{4})","$1 $2",["[4-68]"]]]],NU:["683","00","(?:[4-7]|888\\d)\\d{3}",[4,7],[["(\\d{3})(\\d{4})","$1 $2",["8"]]]],NZ:["64","0(?:0|161)","[1289]\\d{9}|50\\d{5}(?:\\d{2,3})?|[27-9]\\d{7,8}|(?:[34]\\d|6[0-35-9])\\d{6}|8\\d{4,6}",[5,6,7,8,9,10],[["(\\d{2})(\\d{3,8})","$1 $2",["8[1-79]"],"0$1"],["(\\d{3})(\\d{2})(\\d{2,3})","$1 $2 $3",["50[036-8]|8|90","50(?:[0367]|88)|8|90"],"0$1"],["(\\d)(\\d{3})(\\d{4})","$1 $2 $3",["24|[346]|7[2-57-9]|9[2-9]"],"0$1"],["(\\d{3})(\\d{3})(\\d{3,4})","$1 $2 $3",["2(?:10|74)|[589]"],"0$1"],["(\\d{2})(\\d{3,4})(\\d{4})","$1 $2 $3",["1|2[028]"],"0$1"],["(\\d{2})(\\d{3})(\\d{3,5})","$1 $2 $3",["2(?:[169]|7[0-35-9])|7"],"0$1"]],"0",0,0,0,0,0,0,"00"],OM:["968","00","(?:1505|[279]\\d{3}|500)\\d{4}|800\\d{5,6}",[7,8,9],[["(\\d{3})(\\d{4,6})","$1 $2",["[58]"]],["(\\d{2})(\\d{6})","$1 $2",["2"]],["(\\d{4})(\\d{4})","$1 $2",["[179]"]]]],PA:["507","00","(?:00800|8\\d{3})\\d{6}|[68]\\d{7}|[1-57-9]\\d{6}",[7,8,10,11],[["(\\d{3})(\\d{4})","$1-$2",["[1-57-9]"]],["(\\d{4})(\\d{4})","$1-$2",["[68]"]],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["8"]]]],PE:["51","00|19(?:1[124]|77|90)00","(?:[14-8]|9\\d)\\d{7}",[8,9],[["(\\d{3})(\\d{5})","$1 $2",["80"],"(0$1)"],["(\\d)(\\d{7})","$1 $2",["1"],"(0$1)"],["(\\d{2})(\\d{6})","$1 $2",["[4-8]"],"(0$1)"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["9"]]],"0",0,0,0,0,0,0,"00"," Anexo "],PF:["689","00","4\\d{5}(?:\\d{2})?|8\\d{7,8}",[6,8,9],[["(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3",["44"]],["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["4|8[7-9]"]],["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["8"]]]],PG:["675","00|140[1-3]","(?:180|[78]\\d{3})\\d{4}|(?:[2-589]\\d|64)\\d{5}",[7,8],[["(\\d{3})(\\d{4})","$1 $2",["18|[2-69]|85"]],["(\\d{4})(\\d{4})","$1 $2",["[78]"]]],0,0,0,0,0,0,0,"00"],PH:["63","00","(?:[2-7]|9\\d)\\d{8}|2\\d{5}|(?:1800|8)\\d{7,9}",[6,8,9,10,11,12,13],[["(\\d)(\\d{5})","$1 $2",["2"],"(0$1)"],["(\\d{4})(\\d{4,6})","$1 $2",["3(?:23|39|46)|4(?:2[3-6]|[35]9|4[26]|76)|544|88[245]|(?:52|64|86)2","3(?:230|397|461)|4(?:2(?:35|[46]4|51)|396|4(?:22|63)|59[347]|76[15])|5(?:221|446)|642[23]|8(?:622|8(?:[24]2|5[13]))"],"(0$1)"],["(\\d{5})(\\d{4})","$1 $2",["346|4(?:27|9[35])|883","3469|4(?:279|9(?:30|56))|8834"],"(0$1)"],["(\\d)(\\d{4})(\\d{4})","$1 $2 $3",["2"],"(0$1)"],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["[3-7]|8[2-8]"],"(0$1)"],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["[89]"],"0$1"],["(\\d{4})(\\d{3})(\\d{4})","$1 $2 $3",["1"]],["(\\d{4})(\\d{1,2})(\\d{3})(\\d{4})","$1 $2 $3 $4",["1"]]],"0"],PK:["92","00","122\\d{6}|[24-8]\\d{10,11}|9(?:[013-9]\\d{8,10}|2(?:[01]\\d\\d|2(?:[06-8]\\d|1[01]))\\d{7})|(?:[2-8]\\d{3}|92(?:[0-7]\\d|8[1-9]))\\d{6}|[24-9]\\d{8}|[89]\\d{7}",[8,9,10,11,12],[["(\\d{3})(\\d{3})(\\d{2,7})","$1 $2 $3",["[89]0"],"0$1"],["(\\d{4})(\\d{5})","$1 $2",["1"]],["(\\d{3})(\\d{6,7})","$1 $2",["2(?:3[2358]|4[2-4]|9[2-8])|45[3479]|54[2-467]|60[468]|72[236]|8(?:2[2-689]|3[23578]|4[3478]|5[2356])|9(?:2[2-8]|3[27-9]|4[2-6]|6[3569]|9[25-8])","9(?:2[3-8]|98)|(?:2(?:3[2358]|4[2-4]|9[2-8])|45[3479]|54[2-467]|60[468]|72[236]|8(?:2[2-689]|3[23578]|4[3478]|5[2356])|9(?:22|3[27-9]|4[2-6]|6[3569]|9[25-7]))[2-9]"],"(0$1)"],["(\\d{2})(\\d{7,8})","$1 $2",["(?:2[125]|4[0-246-9]|5[1-35-7]|6[1-8]|7[14]|8[16]|91)[2-9]"],"(0$1)"],["(\\d{5})(\\d{5})","$1 $2",["58"],"(0$1)"],["(\\d{3})(\\d{7})","$1 $2",["3"],"0$1"],["(\\d{2})(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3 $4",["2[125]|4[0-246-9]|5[1-35-7]|6[1-8]|7[14]|8[16]|91"],"(0$1)"],["(\\d{3})(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3 $4",["[24-9]"],"(0$1)"]],"0"],PL:["48","00","(?:6|8\\d\\d)\\d{7}|[1-9]\\d{6}(?:\\d{2})?|[26]\\d{5}",[6,7,8,9,10],[["(\\d{5})","$1",["19"]],["(\\d{3})(\\d{3})","$1 $2",["11|20|64"]],["(\\d{2})(\\d{2})(\\d{3})","$1 $2 $3",["(?:1[2-8]|2[2-69]|3[2-4]|4[1-468]|5[24-689]|6[1-3578]|7[14-7]|8[1-79]|9[145])1","(?:1[2-8]|2[2-69]|3[2-4]|4[1-468]|5[24-689]|6[1-3578]|7[14-7]|8[1-79]|9[145])19"]],["(\\d{3})(\\d{2})(\\d{2,3})","$1 $2 $3",["64"]],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["21|39|45|5[0137]|6[0469]|7[02389]|8(?:0[14]|8)"]],["(\\d{2})(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3 $4",["1[2-8]|[2-7]|8[1-79]|9[145]"]],["(\\d{3})(\\d{3})(\\d{3,4})","$1 $2 $3",["8"]]]],PM:["508","00","[45]\\d{5}|(?:708|80\\d)\\d{6}",[6,9],[["(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3",["[45]"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["7"]],["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["8"],"0$1"]],"0"],PR:["1","011","(?:[589]\\d\\d|787)\\d{7}",[10],0,"1",0,0,0,0,"787|939"],PS:["970","00","[2489]2\\d{6}|(?:1\\d|5)\\d{8}",[8,9,10],[["(\\d)(\\d{3})(\\d{4})","$1 $2 $3",["[2489]"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["5"],"0$1"],["(\\d{4})(\\d{3})(\\d{3})","$1 $2 $3",["1"]]],"0"],PT:["351","00","1693\\d{5}|(?:[26-9]\\d|30)\\d{7}",[9],[["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["2[12]"]],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["16|[236-9]"]]]],PW:["680","01[12]","(?:[24-8]\\d\\d|345|900)\\d{4}",[7],[["(\\d{3})(\\d{4})","$1 $2",["[2-9]"]]]],PY:["595","00","59\\d{4,6}|9\\d{5,10}|(?:[2-46-8]\\d|5[0-8])\\d{4,7}",[6,7,8,9,10,11],[["(\\d{3})(\\d{3,6})","$1 $2",["[2-9]0"],"0$1"],["(\\d{2})(\\d{5})","$1 $2",["[26]1|3[289]|4[1246-8]|7[1-3]|8[1-36]"],"(0$1)"],["(\\d{3})(\\d{4,5})","$1 $2",["2[279]|3[13-5]|4[359]|5|6(?:[34]|7[1-46-8])|7[46-8]|85"],"(0$1)"],["(\\d{2})(\\d{3})(\\d{3,4})","$1 $2 $3",["2[14-68]|3[26-9]|4[1246-8]|6(?:1|75)|7[1-35]|8[1-36]"],"(0$1)"],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["87"]],["(\\d{3})(\\d{6})","$1 $2",["9(?:[5-79]|8[1-6])"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[2-8]"],"0$1"],["(\\d{4})(\\d{3})(\\d{4})","$1 $2 $3",["9"]]],"0"],QA:["974","00","800\\d{4}|(?:2|800)\\d{6}|(?:0080|[3-7])\\d{7}",[7,8,9,11],[["(\\d{3})(\\d{4})","$1 $2",["2[16]|8"]],["(\\d{4})(\\d{4})","$1 $2",["[3-7]"]]]],RE:["262","00","(?:26|[689]\\d)\\d{7}",[9],[["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[2689]"],"0$1"]],"0",0,0,0,0,0,[["26(?:2\\d\\d|3(?:0\\d|1[0-6]))\\d{4}"],["69(?:2\\d\\d|3(?:[06][0-6]|1[013]|2[0-2]|3[0-39]|4\\d|5[0-5]|7[0-37]|8[0-8]|9[0-479]))\\d{4}"],["80\\d{7}"],["89[1-37-9]\\d{6}"],0,0,0,0,["9(?:399[0-3]|479[0-5]|76(?:2[27]|3[0-37]))\\d{4}"],["8(?:1[019]|2[0156]|84|90)\\d{6}"]]],RO:["40","00","(?:[2378]\\d|62|90)\\d{7}|[23]\\d{5}",[6,9],[["(\\d{3})(\\d{3})","$1 $2",["2[3-6]","2[3-6]\\d9"],"0$1"],["(\\d{2})(\\d{4})","$1 $2",["219|31"],"0$1"],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["[23]1"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[236-9]"],"0$1"]],"0",0,0,0,0,0,0,0," int "],RS:["381","00","38[02-9]\\d{6,9}|6\\d{7,9}|90\\d{4,8}|38\\d{5,6}|(?:7\\d\\d|800)\\d{3,9}|(?:[12]\\d|3[0-79])\\d{5,10}",[6,7,8,9,10,11,12],[["(\\d{3})(\\d{3,9})","$1 $2",["(?:2[389]|39)0|[7-9]"],"0$1"],["(\\d{2})(\\d{5,10})","$1 $2",["[1-36]"],"0$1"]],"0"],RU:["7","810","8\\d{13}|[347-9]\\d{9}",[10,14],[["(\\d{4})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["7(?:1[0-8]|2[1-9])","7(?:1(?:[0-356]2|4[29]|7|8[27])|2(?:1[23]|[2-9]2))","7(?:1(?:[0-356]2|4[29]|7|8[27])|2(?:13[03-69]|62[013-9]))|72[1-57-9]2"],"8 ($1)",1],["(\\d{5})(\\d)(\\d{2})(\\d{2})","$1 $2 $3 $4",["7(?:1[0-68]|2[1-9])","7(?:1(?:[06][3-6]|[18]|2[35]|[3-5][3-5])|2(?:[13][3-5]|[24-689]|7[457]))","7(?:1(?:0(?:[356]|4[023])|[18]|2(?:3[013-9]|5)|3[45]|43[013-79]|5(?:3[1-8]|4[1-7]|5)|6(?:3[0-35-9]|[4-6]))|2(?:1(?:3[178]|[45])|[24-689]|3[35]|7[457]))|7(?:14|23)4[0-8]|71(?:33|45)[1-79]"],"8 ($1)",1],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["7"],"8 ($1)",1],["(\\d{3})(\\d{3})(\\d{2})(\\d{2})","$1 $2-$3-$4",["[349]|8(?:[02-7]|1[1-8])"],"8 ($1)",1],["(\\d{4})(\\d{4})(\\d{3})(\\d{3})","$1 $2 $3 $4",["8"],"8 ($1)"]],"8",0,0,0,0,"3[04-689]|[489]",0,"8~10"],RW:["250","00","(?:06|[27]\\d\\d|[89]00)\\d{6}",[8,9],[["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["0"]],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["2"]],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[7-9]"],"0$1"]],"0"],SA:["966","00","92\\d{7}|(?:[15]|8\\d)\\d{8}",[9,10],[["(\\d{4})(\\d{5})","$1 $2",["9"]],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["1"],"0$1"],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["5"],"0$1"],["(\\d{3})(\\d{3})(\\d{3,4})","$1 $2 $3",["81"],"0$1"],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["8"]]],"0"],SB:["677","0[01]","(?:[1-6]|[7-9]\\d\\d)\\d{4}",[5,7],[["(\\d{2})(\\d{5})","$1 $2",["7|8[4-9]|9(?:[1-8]|9[0-8])"]]]],SC:["248","010|0[0-2]","800\\d{4}|(?:[249]\\d|64)\\d{5}",[7],[["(\\d)(\\d{3})(\\d{3})","$1 $2 $3",["[246]|9[57]"]]],0,0,0,0,0,0,0,"00"],SD:["249","00","[19]\\d{8}",[9],[["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["[19]"],"0$1"]],"0"],SE:["46","00","(?:[26]\\d\\d|9)\\d{9}|[1-9]\\d{8}|[1-689]\\d{7}|[1-4689]\\d{6}|2\\d{5}",[6,7,8,9,10],[["(\\d{2})(\\d{2,3})(\\d{2})","$1-$2 $3",["20"],"0$1",0,"$1 $2 $3"],["(\\d{3})(\\d{4})","$1-$2",["9(?:00|39|44|9)"],"0$1",0,"$1 $2"],["(\\d{2})(\\d{3})(\\d{2})","$1-$2 $3",["[12][136]|3[356]|4[0246]|6[03]|90[1-9]"],"0$1",0,"$1 $2 $3"],["(\\d)(\\d{2,3})(\\d{2})(\\d{2})","$1-$2 $3 $4",["8"],"0$1",0,"$1 $2 $3 $4"],["(\\d{3})(\\d{2,3})(\\d{2})","$1-$2 $3",["1[2457]|2(?:[247-9]|5[0138])|3[0247-9]|4[1357-9]|5[0-35-9]|6(?:[125689]|4[02-57]|7[0-2])|9(?:[125-8]|3[02-5]|4[0-3])"],"0$1",0,"$1 $2 $3"],["(\\d{3})(\\d{2,3})(\\d{3})","$1-$2 $3",["9(?:00|39|44)"],"0$1",0,"$1 $2 $3"],["(\\d{2})(\\d{2,3})(\\d{2})(\\d{2})","$1-$2 $3 $4",["1[13689]|2[0136]|3[1356]|4[0246]|54|6[03]|90[1-9]"],"0$1",0,"$1 $2 $3 $4"],["(\\d{2})(\\d{3})(\\d{2})(\\d{2})","$1-$2 $3 $4",["10|7"],"0$1",0,"$1 $2 $3 $4"],["(\\d)(\\d{3})(\\d{3})(\\d{2})","$1-$2 $3 $4",["8"],"0$1",0,"$1 $2 $3 $4"],["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1-$2 $3 $4",["[13-5]|2(?:[247-9]|5[0138])|6(?:[124-689]|7[0-2])|9(?:[125-8]|3[02-5]|4[0-3])"],"0$1",0,"$1 $2 $3 $4"],["(\\d{3})(\\d{2})(\\d{2})(\\d{3})","$1-$2 $3 $4",["9"],"0$1",0,"$1 $2 $3 $4"],["(\\d{3})(\\d{2})(\\d{3})(\\d{2})(\\d{2})","$1-$2 $3 $4 $5",["[26]"],"0$1",0,"$1 $2 $3 $4 $5"]],"0"],SG:["65","0[0-3]\\d","(?:(?:1\\d|8)\\d\\d|7000)\\d{7}|[3689]\\d{7}",[8,10,11],[["(\\d{4})(\\d{4})","$1 $2",["[369]|8(?:0[1-8]|[1-9])"]],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["8"]],["(\\d{4})(\\d{4})(\\d{3})","$1 $2 $3",["7"]],["(\\d{4})(\\d{3})(\\d{4})","$1 $2 $3",["1"]]]],SH:["290","00","(?:[256]\\d|8)\\d{3}",[4,5],0,0,0,0,0,0,"[256]"],SI:["386","00|10(?:22|66|88|99)","[1-7]\\d{7}|8\\d{4,7}|90\\d{4,6}",[5,6,7,8],[["(\\d{2})(\\d{3,6})","$1 $2",["8[09]|9"],"0$1"],["(\\d{3})(\\d{5})","$1 $2",["59|8"],"0$1"],["(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3",["[37][01]|4[0139]|51|6"],"0$1"],["(\\d)(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[1-57]"],"(0$1)"]],"0",0,0,0,0,0,0,"00"],SJ:["47","00","0\\d{4}|(?:[489]\\d|79)\\d{6}",[5,8],0,0,0,0,0,0,"79"],SK:["421","00","[2-689]\\d{8}|[2-59]\\d{6}|[2-5]\\d{5}",[6,7,9],[["(\\d)(\\d{2})(\\d{3,4})","$1 $2 $3",["21"],"0$1"],["(\\d{2})(\\d{2})(\\d{2,3})","$1 $2 $3",["[3-5][1-8]1","[3-5][1-8]1[67]"],"0$1"],["(\\d)(\\d{3})(\\d{3})(\\d{2})","$1/$2 $3 $4",["2"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[689]"],"0$1"],["(\\d{2})(\\d{3})(\\d{2})(\\d{2})","$1/$2 $3 $4",["[3-5]"],"0$1"]],"0"],SL:["232","00","(?:[237-9]\\d|66)\\d{6}",[8],[["(\\d{2})(\\d{6})","$1 $2",["[236-9]"],"(0$1)"]],"0"],SM:["378","00","(?:0549|[5-7]\\d)\\d{6}",[8,10],[["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[5-7]"]],["(\\d{4})(\\d{6})","$1 $2",["0"]]],0,0,"([89]\\d{5})$","0549$1"],SN:["221","00","(?:[378]\\d|93)\\d{7}",[9],[["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["8"]],["(\\d{2})(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[379]"]]]],SO:["252","00","[346-9]\\d{8}|[12679]\\d{7}|[1-5]\\d{6}|[1348]\\d{5}",[6,7,8,9],[["(\\d{2})(\\d{4})","$1 $2",["8[125]"]],["(\\d{6})","$1",["[134]"]],["(\\d)(\\d{6})","$1 $2",["[15]|2[0-79]|3[0-46-8]|4[0-7]"]],["(\\d)(\\d{7})","$1 $2",["(?:2|90)4|[67]"]],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[348]|64|79|90"]],["(\\d{2})(\\d{5,7})","$1 $2",["1|28|6[0-35-9]|77|9[2-9]"]]],"0"],SR:["597","00","(?:[2-5]|68|[78]\\d)\\d{5}",[6,7],[["(\\d{2})(\\d{2})(\\d{2})","$1-$2-$3",["56"]],["(\\d{3})(\\d{3})","$1-$2",["[2-5]"]],["(\\d{3})(\\d{4})","$1-$2",["[6-8]"]]]],SS:["211","00","[19]\\d{8}",[9],[["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[19]"],"0$1"]],"0"],ST:["239","00","(?:22|9\\d)\\d{5}",[7],[["(\\d{3})(\\d{4})","$1 $2",["[29]"]]]],SV:["503","00","[267]\\d{7}|[89]00\\d{4}(?:\\d{4})?",[7,8,11],[["(\\d{3})(\\d{4})","$1 $2",["[89]"]],["(\\d{4})(\\d{4})","$1 $2",["[267]"]],["(\\d{3})(\\d{4})(\\d{4})","$1 $2 $3",["[89]"]]]],SX:["1","011","7215\\d{6}|(?:[58]\\d\\d|900)\\d{7}",[10],0,"1",0,"(5\\d{6})$|1","721$1",0,"721"],SY:["963","00","[1-39]\\d{8}|[1-5]\\d{7}",[8,9],[["(\\d{2})(\\d{3})(\\d{3,4})","$1 $2 $3",["[1-5]"],"0$1",1],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["9"],"0$1",1]],"0"],SZ:["268","00","0800\\d{4}|(?:[237]\\d|900)\\d{6}",[8,9],[["(\\d{4})(\\d{4})","$1 $2",["[0237]"]],["(\\d{5})(\\d{4})","$1 $2",["9"]]]],TA:["290","00","8\\d{3}",[4],0,0,0,0,0,0,"8"],TC:["1","011","(?:[58]\\d\\d|649|900)\\d{7}",[10],0,"1",0,"([2-479]\\d{6})$|1","649$1",0,"649"],TD:["235","00|16","(?:22|[69]\\d|77)\\d{6}",[8],[["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[2679]"]]],0,0,0,0,0,0,0,"00"],TG:["228","00","[279]\\d{7}",[8],[["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[279]"]]]],TH:["66","00[1-9]","(?:001800|[2-57]|[689]\\d)\\d{7}|1\\d{7,9}",[8,9,10,13],[["(\\d)(\\d{3})(\\d{4})","$1 $2 $3",["2"],"0$1"],["(\\d{2})(\\d{3})(\\d{3,4})","$1 $2 $3",["[13-9]"],"0$1"],["(\\d{4})(\\d{3})(\\d{3})","$1 $2 $3",["1"]]],"0"],TJ:["992","810","[0-57-9]\\d{8}",[9],[["(\\d{6})(\\d)(\\d{2})","$1 $2 $3",["331","3317"]],["(\\d{3})(\\d{2})(\\d{4})","$1 $2 $3",["44[02-479]|[34]7"]],["(\\d{4})(\\d)(\\d{4})","$1 $2 $3",["3[1-5]"]],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["[0-57-9]"]]],0,0,0,0,0,0,0,"8~10"],TK:["690","00","[2-47]\\d{3,6}",[4,5,6,7]],TL:["670","00","7\\d{7}|(?:[2-47]\\d|[89]0)\\d{5}",[7,8],[["(\\d{3})(\\d{4})","$1 $2",["[2-489]|70"]],["(\\d{4})(\\d{4})","$1 $2",["7"]]]],TM:["993","810","[1-6]\\d{7}",[8],[["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2-$3-$4",["12"],"(8 $1)"],["(\\d{3})(\\d)(\\d{2})(\\d{2})","$1 $2-$3-$4",["[1-5]"],"(8 $1)"],["(\\d{2})(\\d{6})","$1 $2",["6"],"8 $1"]],"8",0,0,0,0,0,0,"8~10"],TN:["216","00","[2-57-9]\\d{7}",[8],[["(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3",["[2-57-9]"]]]],TO:["676","00","(?:0800|(?:[5-8]\\d\\d|999)\\d)\\d{3}|[2-8]\\d{4}",[5,7],[["(\\d{2})(\\d{3})","$1-$2",["[2-4]|50|6[09]|7[0-24-69]|8[05]"]],["(\\d{4})(\\d{3})","$1 $2",["0"]],["(\\d{3})(\\d{4})","$1 $2",["[5-9]"]]]],TR:["90","00","4\\d{6}|8\\d{11,12}|(?:[2-58]\\d\\d|900)\\d{7}",[7,10,12,13],[["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["512|8[01589]|90"],"0$1",1],["(\\d{3})(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3 $4",["5(?:[0-59]|61)","5(?:[0-59]|61[06])","5(?:[0-59]|61[06]1)"],"0$1",1],["(\\d{3})(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[24][1-8]|3[1-9]"],"(0$1)",1],["(\\d{3})(\\d{3})(\\d{6,7})","$1 $2 $3",["80"],"0$1",1]],"0"],TT:["1","011","(?:[58]\\d\\d|900)\\d{7}",[10],0,"1",0,"([2-46-8]\\d{6})$|1","868$1",0,"868"],TV:["688","00","(?:2|7\\d\\d|90)\\d{4}",[5,6,7],[["(\\d{2})(\\d{3})","$1 $2",["2"]],["(\\d{2})(\\d{4})","$1 $2",["90"]],["(\\d{2})(\\d{5})","$1 $2",["7"]]]],TW:["886","0(?:0[25-79]|19)","[2-689]\\d{8}|7\\d{9,10}|[2-8]\\d{7}|2\\d{6}",[7,8,9,10,11],[["(\\d{2})(\\d)(\\d{4})","$1 $2 $3",["202"],"0$1"],["(\\d{2})(\\d{3})(\\d{3,4})","$1 $2 $3",["[258]0"],"0$1"],["(\\d)(\\d{3,4})(\\d{4})","$1 $2 $3",["[23568]|4(?:0[02-48]|[1-47-9])|7[1-9]","[23568]|4(?:0[2-48]|[1-47-9])|(?:400|7)[1-9]"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[49]"],"0$1"],["(\\d{2})(\\d{4})(\\d{4,5})","$1 $2 $3",["7"],"0$1"]],"0",0,0,0,0,0,0,0,"#"],TZ:["255","00[056]","(?:[25-8]\\d|41|90)\\d{7}",[9],[["(\\d{3})(\\d{2})(\\d{4})","$1 $2 $3",["[89]"],"0$1"],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["[24]"],"0$1"],["(\\d{2})(\\d{7})","$1 $2",["5"]],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[67]"],"0$1"]],"0"],UA:["380","00","[89]\\d{9}|[3-9]\\d{8}",[9,10],[["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["6[12][29]|(?:3[1-8]|4[136-8]|5[12457]|6[49])2|(?:56|65)[24]","6[12][29]|(?:35|4[1378]|5[12457]|6[49])2|(?:56|65)[24]|(?:3[1-46-8]|46)2[013-9]"],"0$1"],["(\\d{4})(\\d{5})","$1 $2",["3[1-8]|4(?:[1367]|[45][6-9]|8[4-6])|5(?:[1-5]|6[0135689]|7[4-6])|6(?:[12][3-7]|[459])","3[1-8]|4(?:[1367]|[45][6-9]|8[4-6])|5(?:[1-5]|6(?:[015689]|3[02389])|7[4-6])|6(?:[12][3-7]|[459])"],"0$1"],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["[3-7]|89|9[1-9]"],"0$1"],["(\\d{3})(\\d{3})(\\d{3,4})","$1 $2 $3",["[89]"],"0$1"]],"0",0,0,0,0,0,0,"0~0"],UG:["256","00[057]","800\\d{6}|(?:[29]0|[347]\\d)\\d{7}",[9],[["(\\d{4})(\\d{5})","$1 $2",["202","2024"],"0$1"],["(\\d{3})(\\d{6})","$1 $2",["[27-9]|4(?:6[45]|[7-9])"],"0$1"],["(\\d{2})(\\d{7})","$1 $2",["[34]"],"0$1"]],"0"],US:["1","011","[2-9]\\d{9}|3\\d{6}",[10],[["(\\d{3})(\\d{4})","$1-$2",["310"],0,1],["(\\d{3})(\\d{3})(\\d{4})","($1) $2-$3",["[2-9]"],0,1,"$1-$2-$3"]],"1",0,0,0,0,0,[["(?:5056(?:[0-35-9]\\d|4[468])|73020\\d)\\d{4}|(?:4722|505[2-57-9]|983[289])\\d{6}|(?:2(?:0[1-35-9]|1[02-9]|2[03-57-9]|3[149]|4[08]|5[1-46]|6[0279]|7[0269]|8[13])|3(?:0[1-57-9]|1[02-9]|2[013569]|3[0-24679]|4[167]|5[0-2]|6[0149]|8[056])|4(?:0[124-9]|1[02-579]|2[3-5]|3[0245]|4[023578]|58|6[349]|7[0589]|8[04])|5(?:0[1-47-9]|1[0235-8]|20|3[0149]|4[01]|5[179]|6[1-47]|7[0-5]|8[0256])|6(?:0[1-35-9]|1[024-9]|2[03689]|[34][016]|5[01679]|6[0-279]|78|8[0-29])|7(?:0[1-46-8]|1[2-9]|2[04-7]|3[1247]|4[037]|5[47]|6[02359]|7[0-59]|8[156])|8(?:0[1-68]|1[02-8]|2[068]|3[0-2589]|4[03578]|5[046-9]|6[02-5]|7[028])|9(?:0[1346-9]|1[02-9]|2[0589]|3[0146-8]|4[01357-9]|5[12469]|7[0-389]|8[04-69]))[2-9]\\d{6}"],[""],["8(?:00|33|44|55|66|77|88)[2-9]\\d{6}"],["900[2-9]\\d{6}"],["52(?:3(?:[2-46-9][02-9]\\d|5(?:[02-46-9]\\d|5[0-46-9]))|4(?:[2-478][02-9]\\d|5(?:[034]\\d|2[024-9]|5[0-46-9])|6(?:0[1-9]|[2-9]\\d)|9(?:[05-9]\\d|2[0-5]|49)))\\d{4}|52[34][2-9]1[02-9]\\d{4}|5(?:00|2[125-9]|33|44|66|77|88)[2-9]\\d{6}"]]],UY:["598","0(?:0|1[3-9]\\d)","0004\\d{2,9}|[1249]\\d{7}|(?:[49]\\d|80)\\d{5}",[6,7,8,9,10,11,12,13],[["(\\d{3})(\\d{3,4})","$1 $2",["0"]],["(\\d{3})(\\d{4})","$1 $2",["[49]0|8"],"0$1"],["(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3",["9"],"0$1"],["(\\d{4})(\\d{4})","$1 $2",["[124]"]],["(\\d{3})(\\d{3})(\\d{2,4})","$1 $2 $3",["0"]],["(\\d{3})(\\d{3})(\\d{3})(\\d{2,4})","$1 $2 $3 $4",["0"]]],"0",0,0,0,0,0,0,"00"," int. "],UZ:["998","810","(?:20|33|[5-79]\\d|88)\\d{7}",[9],[["(\\d{2})(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[235-9]"],"8 $1"]],"8",0,0,0,0,0,0,"8~10"],VA:["39","00","0\\d{5,10}|3[0-8]\\d{7,10}|55\\d{8}|8\\d{5}(?:\\d{2,4})?|(?:1\\d|39)\\d{7,8}",[6,7,8,9,10,11],0,0,0,0,0,0,"06698"],VC:["1","011","(?:[58]\\d\\d|784|900)\\d{7}",[10],0,"1",0,"([2-7]\\d{6})$|1","784$1",0,"784"],VE:["58","00","[68]00\\d{7}|(?:[24]\\d|[59]0)\\d{8}",[10],[["(\\d{3})(\\d{7})","$1-$2",["[24-689]"],"0$1"]],"0"],VG:["1","011","(?:284|[58]\\d\\d|900)\\d{7}",[10],0,"1",0,"([2-578]\\d{6})$|1","284$1",0,"284"],VI:["1","011","[58]\\d{9}|(?:34|90)0\\d{7}",[10],0,"1",0,"([2-9]\\d{6})$|1","340$1",0,"340"],VN:["84","00","[12]\\d{9}|[135-9]\\d{8}|[16]\\d{7}|[16-8]\\d{6}",[7,8,9,10],[["(\\d{2})(\\d{5})","$1 $2",["80"],"0$1",1],["(\\d{4})(\\d{4,6})","$1 $2",["1"],0,1],["(\\d{2})(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3 $4",["6"],"0$1",1],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[357-9]"],"0$1",1],["(\\d{2})(\\d{4})(\\d{4})","$1 $2 $3",["2[48]"],"0$1",1],["(\\d{3})(\\d{4})(\\d{3})","$1 $2 $3",["2"],"0$1",1]],"0"],VU:["678","00","[57-9]\\d{6}|(?:[238]\\d|48)\\d{3}",[5,7],[["(\\d{3})(\\d{4})","$1 $2",["[57-9]"]]]],WF:["681","00","(?:40|72)\\d{4}|8\\d{5}(?:\\d{3})?",[6,9],[["(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3",["[478]"]],["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["8"]]]],WS:["685","0","(?:[2-6]|8\\d{5})\\d{4}|[78]\\d{6}|[68]\\d{5}",[5,6,7,10],[["(\\d{5})","$1",["[2-5]|6[1-9]"]],["(\\d{3})(\\d{3,7})","$1 $2",["[68]"]],["(\\d{2})(\\d{5})","$1 $2",["7"]]]],XK:["383","00","[23]\\d{7,8}|(?:4\\d\\d|[89]00)\\d{5}",[8,9],[["(\\d{3})(\\d{5})","$1 $2",["[89]"],"0$1"],["(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3",["[2-4]"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[23]"],"0$1"]],"0"],YE:["967","00","(?:1|7\\d)\\d{7}|[1-7]\\d{6}",[7,8,9],[["(\\d)(\\d{3})(\\d{3,4})","$1 $2 $3",["[1-6]|7(?:[24-6]|8[0-7])"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["7"],"0$1"]],"0"],YT:["262","00","(?:80|9\\d)\\d{7}|(?:26|63)9\\d{6}",[9],0,"0",0,0,0,0,0,[["269(?:0[0-467]|5[0-4]|6\\d|[78]0)\\d{4}"],["639(?:0[0-79]|1[019]|[267]\\d|3[09]|40|5[05-9]|9[04-79])\\d{4}"],["80\\d{7}"],0,0,0,0,0,["9(?:(?:39|47)8[01]|769\\d)\\d{4}"]]],ZA:["27","00","[1-79]\\d{8}|8\\d{4,9}",[5,6,7,8,9,10],[["(\\d{2})(\\d{3,4})","$1 $2",["8[1-4]"],"0$1"],["(\\d{2})(\\d{3})(\\d{2,3})","$1 $2 $3",["8[1-4]"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["860"],"0$1"],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["[1-9]"],"0$1"],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["8"],"0$1"]],"0"],ZM:["260","00","800\\d{6}|(?:21|63|[79]\\d)\\d{7}",[9],[["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[28]"],"0$1"],["(\\d{2})(\\d{7})","$1 $2",["[79]"],"0$1"]],"0"],ZW:["263","00","2(?:[0-57-9]\\d{6,8}|6[0-24-9]\\d{6,7})|[38]\\d{9}|[35-8]\\d{8}|[3-6]\\d{7}|[1-689]\\d{6}|[1-3569]\\d{5}|[1356]\\d{4}",[5,6,7,8,9,10],[["(\\d{3})(\\d{3,5})","$1 $2",["2(?:0[45]|2[278]|[49]8)|3(?:[09]8|17)|6(?:[29]8|37|75)|[23][78]|(?:33|5[15]|6[68])[78]"],"0$1"],["(\\d)(\\d{3})(\\d{2,4})","$1 $2 $3",["[49]"],"0$1"],["(\\d{3})(\\d{4})","$1 $2",["80"],"0$1"],["(\\d{2})(\\d{7})","$1 $2",["24|8[13-59]|(?:2[05-79]|39|5[45]|6[15-8])2","2(?:02[014]|4|[56]20|[79]2)|392|5(?:42|525)|6(?:[16-8]21|52[013])|8[13-59]"],"(0$1)"],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["7"],"0$1"],["(\\d{3})(\\d{3})(\\d{3,4})","$1 $2 $3",["2(?:1[39]|2[0157]|[378]|[56][14])|3(?:12|29)","2(?:1[39]|2[0157]|[378]|[56][14])|3(?:123|29)"],"0$1"],["(\\d{4})(\\d{6})","$1 $2",["8"],"0$1"],["(\\d{2})(\\d{3,5})","$1 $2",["1|2(?:0[0-36-9]|12|29|[56])|3(?:1[0-689]|[24-6])|5(?:[0236-9]|1[2-4])|6(?:[013-59]|7[0-46-9])|(?:33|55|6[68])[0-69]|(?:29|3[09]|62)[0-79]"],"0$1"],["(\\d{2})(\\d{3})(\\d{3,4})","$1 $2 $3",["29[013-9]|39|54"],"0$1"],["(\\d{4})(\\d{3,5})","$1 $2",["(?:25|54)8","258|5483"],"0$1"]],"0"]},nonGeographic:{800:["800",0,"(?:00|[1-9]\\d)\\d{6}",[8],[["(\\d{4})(\\d{4})","$1 $2",["\\d"]]],0,0,0,0,0,0,[0,0,["(?:00|[1-9]\\d)\\d{6}"]]],808:["808",0,"[1-9]\\d{7}",[8],[["(\\d{4})(\\d{4})","$1 $2",["[1-9]"]]],0,0,0,0,0,0,[0,0,0,0,0,0,0,0,0,["[1-9]\\d{7}"]]],870:["870",0,"7\\d{11}|[35-7]\\d{8}",[9,12],[["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[35-7]"]]],0,0,0,0,0,0,[0,["(?:[356]|774[45])\\d{8}|7[6-8]\\d{7}"]]],878:["878",0,"10\\d{10}",[12],[["(\\d{2})(\\d{5})(\\d{5})","$1 $2 $3",["1"]]],0,0,0,0,0,0,[0,0,0,0,0,0,0,0,["10\\d{10}"]]],881:["881",0,"6\\d{9}|[0-36-9]\\d{8}",[9,10],[["(\\d)(\\d{3})(\\d{5})","$1 $2 $3",["[0-37-9]"]],["(\\d)(\\d{3})(\\d{5,6})","$1 $2 $3",["6"]]],0,0,0,0,0,0,[0,["6\\d{9}|[0-36-9]\\d{8}"]]],882:["882",0,"[13]\\d{6}(?:\\d{2,5})?|[19]\\d{7}|(?:[25]\\d\\d|4)\\d{7}(?:\\d{2})?",[7,8,9,10,11,12],[["(\\d{2})(\\d{5})","$1 $2",["16|342"]],["(\\d{2})(\\d{6})","$1 $2",["49"]],["(\\d{2})(\\d{2})(\\d{4})","$1 $2 $3",["1[36]|9"]],["(\\d{2})(\\d{4})(\\d{3})","$1 $2 $3",["3[23]"]],["(\\d{2})(\\d{3,4})(\\d{4})","$1 $2 $3",["16"]],["(\\d{2})(\\d{4})(\\d{4})","$1 $2 $3",["10|23|3(?:[15]|4[57])|4|51"]],["(\\d{3})(\\d{4})(\\d{4})","$1 $2 $3",["34"]],["(\\d{2})(\\d{4,5})(\\d{5})","$1 $2 $3",["[1-35]"]]],0,0,0,0,0,0,[0,["342\\d{4}|(?:337|49)\\d{6}|(?:3(?:2|47|7\\d{3})|50\\d{3})\\d{7}",[7,8,9,10,12]],0,0,0,0,0,0,["1(?:3(?:0[0347]|[13][0139]|2[035]|4[013568]|6[0459]|7[06]|8[15-8]|9[0689])\\d{4}|6\\d{5,10})|(?:345\\d|9[89])\\d{6}|(?:10|2(?:3|85\\d)|3(?:[15]|[69]\\d\\d)|4[15-8]|51)\\d{8}"]]],883:["883",0,"(?:[1-4]\\d|51)\\d{6,10}",[8,9,10,11,12],[["(\\d{3})(\\d{3})(\\d{2,8})","$1 $2 $3",["[14]|2[24-689]|3[02-689]|51[24-9]"]],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["510"]],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["21"]],["(\\d{4})(\\d{4})(\\d{4})","$1 $2 $3",["51[13]"]],["(\\d{3})(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3 $4",["[235]"]]],0,0,0,0,0,0,[0,0,0,0,0,0,0,0,["(?:2(?:00\\d\\d|10)|(?:370[1-9]|51\\d0)\\d)\\d{7}|51(?:00\\d{5}|[24-9]0\\d{4,7})|(?:1[0-79]|2[24-689]|3[02-689]|4[0-4])0\\d{5,9}"]]],888:["888",0,"\\d{11}",[11],[["(\\d{3})(\\d{3})(\\d{5})","$1 $2 $3"]],0,0,0,0,0,0,[0,0,0,0,0,0,["\\d{11}"]]],979:["979",0,"[1359]\\d{8}",[9],[["(\\d)(\\d{4})(\\d{4})","$1 $2 $3",["[1359]"]]],0,0,0,0,0,0,[0,0,0,["[1359]\\d{8}"]]]}};function hf(t,n){var e=Array.prototype.slice.call(n);return e.push(ff),t.apply(this,e)}function Xr(t){"@babel/helpers - typeof";return Xr=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(n){return typeof n}:function(n){return n&&typeof Symbol=="function"&&n.constructor===Symbol&&n!==Symbol.prototype?"symbol":typeof n},Xr(t)}function qo(t,n){for(var e=0;e<n.length;e++){var o=n[e];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(t,o.key,o)}}function pf(t,n,e){return n&&qo(t.prototype,n),e&&qo(t,e),Object.defineProperty(t,"prototype",{writable:!1}),t}function mf(t,n){if(!(t instanceof n))throw new TypeError("Cannot call a class as a function")}function gf(t,n){if(typeof n!="function"&&n!==null)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(n&&n.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),n&&Nn(t,n)}function yf(t){var n=Ho();return function(){var e=An(t),o;if(n){var a=An(this).constructor;o=Reflect.construct(e,arguments,a)}else o=e.apply(this,arguments);return bf(this,o)}}function bf(t,n){if(n&&(Xr(n)==="object"||typeof n=="function"))return n;if(n!==void 0)throw new TypeError("Derived constructors may only return object or undefined");return Fo(t)}function Fo(t){if(t===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}function Qr(t){var n=typeof Map=="function"?new Map:void 0;return Qr=function(e){if(e===null||!vf(e))return e;if(typeof e!="function")throw new TypeError("Super expression must either be null or a function");if(typeof n<"u"){if(n.has(e))return n.get(e);n.set(e,o)}function o(){return cr(e,arguments,An(this).constructor)}return o.prototype=Object.create(e.prototype,{constructor:{value:o,enumerable:!1,writable:!0,configurable:!0}}),Nn(o,e)},Qr(t)}function cr(t,n,e){return Ho()?cr=Reflect.construct:cr=function(o,a,r){var s=[null];s.push.apply(s,a);var l=Function.bind.apply(o,s),u=new l;return r&&Nn(u,r.prototype),u},cr.apply(null,arguments)}function Ho(){if(typeof Reflect>"u"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch{return!1}}function vf(t){return Function.toString.call(t).indexOf("[native code]")!==-1}function Nn(t,n){return Nn=Object.setPrototypeOf||function(e,o){return e.__proto__=o,e},Nn(t,n)}function An(t){return An=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},An(t)}var At=function(t){gf(e,t);var n=yf(e);function e(o){var a;return mf(this,e),a=n.call(this,o),Object.setPrototypeOf(Fo(a),e.prototype),a.name=a.constructor.name,a}return pf(e)}(Qr(Error)),ei=2,_f=17,$f=3,yt="0-90-9٠-٩۰-۹",wf="-‐-―−ー-",kf="//",Cf="..",Of=" ",Ef="()()[]\\[\\]",Sf="~⁓∼~",dr="".concat(wf).concat(kf).concat(Cf).concat(Of).concat(Ef).concat(Sf),ti="++";function zo(t,n){t=t.split("-"),n=n.split("-");for(var e=t[0].split("."),o=n[0].split("."),a=0;a<3;a++){var r=Number(e[a]),s=Number(o[a]);if(r>s)return 1;if(s>r)return-1;if(!isNaN(r)&&isNaN(s))return 1;if(isNaN(r)&&!isNaN(s))return-1}return t[1]&&n[1]?t[1]>n[1]?1:t[1]<n[1]?-1:0:!t[1]&&n[1]?1:t[1]&&!n[1]?-1:0}var xf={}.constructor;function ur(t){return t!=null&&t.constructor===xf}function ni(t){"@babel/helpers - typeof";return ni=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(n){return typeof n}:function(n){return n&&typeof Symbol=="function"&&n.constructor===Symbol&&n!==Symbol.prototype?"symbol":typeof n},ni(t)}function fr(t,n){if(!(t instanceof n))throw new TypeError("Cannot call a class as a function")}function Uo(t,n){for(var e=0;e<n.length;e++){var o=n[e];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(t,o.key,o)}}function hr(t,n,e){return n&&Uo(t.prototype,n),e&&Uo(t,e),Object.defineProperty(t,"prototype",{writable:!1}),t}var Tf="1.2.0",Nf="1.7.35",Ko=" ext. ",Af=/^\d+$/,nt=function(){function t(n){fr(this,t),Mf(n),this.metadata=n,Yo.call(this,n)}return hr(t,[{key:"getCountries",value:function(){return Object.keys(this.metadata.countries).filter(function(n){return n!=="001"})}},{key:"getCountryMetadata",value:function(n){return this.metadata.countries[n]}},{key:"nonGeographic",value:function(){if(!(this.v1||this.v2||this.v3))return this.metadata.nonGeographic||this.metadata.nonGeographical}},{key:"hasCountry",value:function(n){return this.getCountryMetadata(n)!==void 0}},{key:"hasCallingCode",value:function(n){if(this.getCountryCodesForCallingCode(n))return!0;if(this.nonGeographic()){if(this.nonGeographic()[n])return!0}else{var e=this.countryCallingCodes()[n];if(e&&e.length===1&&e[0]==="001")return!0}}},{key:"isNonGeographicCallingCode",value:function(n){return this.nonGeographic()?!!this.nonGeographic()[n]:!this.getCountryCodesForCallingCode(n)}},{key:"country",value:function(n){return this.selectNumberingPlan(n)}},{key:"selectNumberingPlan",value:function(n,e){if(n&&Af.test(n)&&(e=n,n=null),n&&n!=="001"){if(!this.hasCountry(n))throw new Error("Unknown country: ".concat(n));this.numberingPlan=new Go(this.getCountryMetadata(n),this)}else if(e){if(!this.hasCallingCode(e))throw new Error("Unknown calling code: ".concat(e));this.numberingPlan=new Go(this.getNumberingPlanMetadata(e),this)}else this.numberingPlan=void 0;return this}},{key:"getCountryCodesForCallingCode",value:function(n){var e=this.countryCallingCodes()[n];if(e)return e.length===1&&e[0].length===3?void 0:e}},{key:"getCountryCodeForCallingCode",value:function(n){var e=this.getCountryCodesForCallingCode(n);if(e)return e[0]}},{key:"getNumberingPlanMetadata",value:function(n){var e=this.getCountryCodeForCallingCode(n);if(e)return this.getCountryMetadata(e);if(this.nonGeographic()){var o=this.nonGeographic()[n];if(o)return o}else{var a=this.countryCallingCodes()[n];if(a&&a.length===1&&a[0]==="001")return this.metadata.countries["001"]}}},{key:"countryCallingCode",value:function(){return this.numberingPlan.callingCode()}},{key:"IDDPrefix",value:function(){return this.numberingPlan.IDDPrefix()}},{key:"defaultIDDPrefix",value:function(){return this.numberingPlan.defaultIDDPrefix()}},{key:"nationalNumberPattern",value:function(){return this.numberingPlan.nationalNumberPattern()}},{key:"possibleLengths",value:function(){return this.numberingPlan.possibleLengths()}},{key:"formats",value:function(){return this.numberingPlan.formats()}},{key:"nationalPrefixForParsing",value:function(){return this.numberingPlan.nationalPrefixForParsing()}},{key:"nationalPrefixTransformRule",value:function(){return this.numberingPlan.nationalPrefixTransformRule()}},{key:"leadingDigits",value:function(){return this.numberingPlan.leadingDigits()}},{key:"hasTypes",value:function(){return this.numberingPlan.hasTypes()}},{key:"type",value:function(n){return this.numberingPlan.type(n)}},{key:"ext",value:function(){return this.numberingPlan.ext()}},{key:"countryCallingCodes",value:function(){return this.v1?this.metadata.country_phone_code_to_countries:this.metadata.country_calling_codes}},{key:"chooseCountryByCountryCallingCode",value:function(n){return this.selectNumberingPlan(n)}},{key:"hasSelectedNumberingPlan",value:function(){return this.numberingPlan!==void 0}}]),t}(),Go=function(){function t(n,e){fr(this,t),this.globalMetadataObject=e,this.metadata=n,Yo.call(this,e.metadata)}return hr(t,[{key:"callingCode",value:function(){return this.metadata[0]}},{key:"getDefaultCountryMetadataForRegion",value:function(){return this.globalMetadataObject.getNumberingPlanMetadata(this.callingCode())}},{key:"IDDPrefix",value:function(){if(!(this.v1||this.v2))return this.metadata[1]}},{key:"defaultIDDPrefix",value:function(){if(!(this.v1||this.v2))return this.metadata[12]}},{key:"nationalNumberPattern",value:function(){return this.v1||this.v2?this.metadata[1]:this.metadata[2]}},{key:"possibleLengths",value:function(){if(!this.v1)return this.metadata[this.v2?2:3]}},{key:"_getFormats",value:function(n){return n[this.v1?2:this.v2?3:4]}},{key:"formats",value:function(){var n=this,e=this._getFormats(this.metadata)||this._getFormats(this.getDefaultCountryMetadataForRegion())||[];return e.map(function(o){return new Df(o,n)})}},{key:"nationalPrefix",value:function(){return this.metadata[this.v1?3:this.v2?4:5]}},{key:"_getNationalPrefixFormattingRule",value:function(n){return n[this.v1?4:this.v2?5:6]}},{key:"nationalPrefixFormattingRule",value:function(){return this._getNationalPrefixFormattingRule(this.metadata)||this._getNationalPrefixFormattingRule(this.getDefaultCountryMetadataForRegion())}},{key:"_nationalPrefixForParsing",value:function(){return this.metadata[this.v1?5:this.v2?6:7]}},{key:"nationalPrefixForParsing",value:function(){return this._nationalPrefixForParsing()||this.nationalPrefix()}},{key:"nationalPrefixTransformRule",value:function(){return this.metadata[this.v1?6:this.v2?7:8]}},{key:"_getNationalPrefixIsOptionalWhenFormatting",value:function(){return!!this.metadata[this.v1?7:this.v2?8:9]}},{key:"nationalPrefixIsOptionalWhenFormattingInNationalFormat",value:function(){return this._getNationalPrefixIsOptionalWhenFormatting(this.metadata)||this._getNationalPrefixIsOptionalWhenFormatting(this.getDefaultCountryMetadataForRegion())}},{key:"leadingDigits",value:function(){return this.metadata[this.v1?8:this.v2?9:10]}},{key:"types",value:function(){return this.metadata[this.v1?9:this.v2?10:11]}},{key:"hasTypes",value:function(){return this.types()&&this.types().length===0?!1:!!this.types()}},{key:"type",value:function(n){if(this.hasTypes()&&Wo(this.types(),n))return new If(Wo(this.types(),n),this)}},{key:"ext",value:function(){return this.v1||this.v2?Ko:this.metadata[13]||Ko}}]),t}(),Df=function(){function t(n,e){fr(this,t),this._format=n,this.metadata=e}return hr(t,[{key:"pattern",value:function(){return this._format[0]}},{key:"format",value:function(){return this._format[1]}},{key:"leadingDigitsPatterns",value:function(){return this._format[2]||[]}},{key:"nationalPrefixFormattingRule",value:function(){return this._format[3]||this.metadata.nationalPrefixFormattingRule()}},{key:"nationalPrefixIsOptionalWhenFormattingInNationalFormat",value:function(){return!!this._format[4]||this.metadata.nationalPrefixIsOptionalWhenFormattingInNationalFormat()}},{key:"nationalPrefixIsMandatoryWhenFormattingInNationalFormat",value:function(){return this.usesNationalPrefix()&&!this.nationalPrefixIsOptionalWhenFormattingInNationalFormat()}},{key:"usesNationalPrefix",value:function(){return!!(this.nationalPrefixFormattingRule()&&!Pf.test(this.nationalPrefixFormattingRule()))}},{key:"internationalFormat",value:function(){return this._format[5]||this.format()}}]),t}(),Pf=/^\(?\$1\)?$/,If=function(){function t(n,e){fr(this,t),this.type=n,this.metadata=e}return hr(t,[{key:"pattern",value:function(){return this.metadata.v1?this.type:this.type[0]}},{key:"possibleLengths",value:function(){if(!this.metadata.v1)return this.type[1]||this.metadata.possibleLengths()}}]),t}();function Wo(t,n){switch(n){case"FIXED_LINE":return t[0];case"MOBILE":return t[1];case"TOLL_FREE":return t[2];case"PREMIUM_RATE":return t[3];case"PERSONAL_NUMBER":return t[4];case"VOICEMAIL":return t[5];case"UAN":return t[6];case"PAGER":return t[7];case"VOIP":return t[8];case"SHARED_COST":return t[9]}}function Mf(t){if(!t)throw new Error("[libphonenumber-js] `metadata` argument not passed. Check your arguments.");if(!ur(t)||!ur(t.countries))throw new Error("[libphonenumber-js] `metadata` argument was passed but it's not a valid metadata. Must be an object having `.countries` child object property. Got ".concat(ur(t)?"an object of shape: { "+Object.keys(t).join(", ")+" }":"a "+Bf(t)+": "+t,"."))}var Bf=function(t){return ni(t)};function ri(t,n){if(n=new nt(n),n.hasCountry(t))return n.country(t).countryCallingCode();throw new Error("Unknown country: ".concat(t))}function Lf(t,n){return n.countries.hasOwnProperty(t)}function Yo(t){var n=t.version;typeof n=="number"?(this.v1=n===1,this.v2=n===2,this.v3=n===3,this.v4=n===4):n?zo(n,Tf)===-1?this.v2=!0:zo(n,Nf)===-1?this.v3=!0:this.v4=!0:this.v1=!0}var Rf=";ext=",un=function(t){return"([".concat(yt,"]{1,").concat(t,"})")};function Zo(t){var n="20",e="15",o="9",a="6",r="[ \\t,]*",s="[:\\..]?[ \\t,-]*",l="#?",u="(?:e?xt(?:ensi(?:ó?|ó))?n?|e?xtn?|доб|anexo)",d="(?:[xx##~~]|int|int)",p="[- ]+",f="[ \\t]*",c="(?:,{2}|;)",h=Rf+un(n),v=r+u+s+un(n)+l,m=r+d+s+un(o)+l,_=p+un(a)+"#",y=f+c+s+un(e)+l,g=f+"(?:,)+"+s+un(o)+l;return h+"|"+v+"|"+m+"|"+_+"|"+y+"|"+g}var jf="["+yt+"]{"+ei+"}",Vf="["+ti+"]{0,1}(?:["+dr+"]*["+yt+"]){3,}["+dr+yt+"]*",qf=new RegExp("^["+ti+"]{0,1}(?:["+dr+"]*["+yt+"]){1,2}$","i"),Ff=Vf+"(?:"+Zo()+")?",Hf=new RegExp("^"+jf+"$|^"+Ff+"$","i");function zf(t){return t.length>=ei&&Hf.test(t)}function Uf(t){return qf.test(t)}var Jo=new RegExp("(?:"+Zo()+")$","i");function Kf(t){var n=t.search(Jo);if(n<0)return{};for(var e=t.slice(0,n),o=t.match(Jo),a=1;a<o.length;){if(o[a])return{number:e,ext:o[a]};a++}}var Gf={0:"0",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9","0":"0","1":"1","2":"2","3":"3","4":"4","5":"5","6":"6","7":"7","8":"8","9":"9","٠":"0","١":"1","٢":"2","٣":"3","٤":"4","٥":"5","٦":"6","٧":"7","٨":"8","٩":"9","۰":"0","۱":"1","۲":"2","۳":"3","۴":"4","۵":"5","۶":"6","۷":"7","۸":"8","۹":"9"};function Wf(t){return Gf[t]}function Yf(t,n){var e=typeof Symbol<"u"&&t[Symbol.iterator]||t["@@iterator"];if(e)return(e=e.call(t)).next.bind(e);if(Array.isArray(t)||(e=Zf(t))||n&&t&&typeof t.length=="number"){e&&(t=e);var o=0;return function(){return o>=t.length?{done:!0}:{done:!1,value:t[o++]}}}throw new TypeError(`Invalid attempt to iterate non-iterable instance.
|
|
86
|
+
In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function Zf(t,n){if(t){if(typeof t=="string")return Xo(t,n);var e=Object.prototype.toString.call(t).slice(8,-1);if(e==="Object"&&t.constructor&&(e=t.constructor.name),e==="Map"||e==="Set")return Array.from(t);if(e==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(e))return Xo(t,n)}}function Xo(t,n){(n==null||n>t.length)&&(n=t.length);for(var e=0,o=new Array(n);e<n;e++)o[e]=t[e];return o}function Qo(t){for(var n="",e=Yf(t.split("")),o;!(o=e()).done;){var a=o.value;n+=Jf(a,n)||""}return n}function Jf(t,n){return t==="+"?n?void 0:"+":Wf(t)}function Xf(t,n){var e=typeof Symbol<"u"&&t[Symbol.iterator]||t["@@iterator"];if(e)return(e=e.call(t)).next.bind(e);if(Array.isArray(t)||(e=Qf(t))||n&&t&&typeof t.length=="number"){e&&(t=e);var o=0;return function(){return o>=t.length?{done:!0}:{done:!1,value:t[o++]}}}throw new TypeError(`Invalid attempt to iterate non-iterable instance.
|
|
87
|
+
In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function Qf(t,n){if(t){if(typeof t=="string")return ea(t,n);var e=Object.prototype.toString.call(t).slice(8,-1);if(e==="Object"&&t.constructor&&(e=t.constructor.name),e==="Map"||e==="Set")return Array.from(t);if(e==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(e))return ea(t,n)}}function ea(t,n){(n==null||n>t.length)&&(n=t.length);for(var e=0,o=new Array(n);e<n;e++)o[e]=t[e];return o}function eh(t,n){for(var e=t.slice(),o=Xf(n),a;!(a=o()).done;){var r=a.value;t.indexOf(r)<0&&e.push(r)}return e.sort(function(s,l){return s-l})}function ii(t,n){return ta(t,void 0,n)}function ta(t,n,e){var o=e.type(n),a=o&&o.possibleLengths()||e.possibleLengths();if(!a)return"IS_POSSIBLE";if(n==="FIXED_LINE_OR_MOBILE"){if(!e.type("FIXED_LINE"))return ta(t,"MOBILE",e);var r=e.type("MOBILE");r&&(a=eh(a,r.possibleLengths()))}else if(n&&!o)return"INVALID_LENGTH";var s=t.length,l=a[0];return l===s?"IS_POSSIBLE":l>s?"TOO_SHORT":a[a.length-1]<s?"TOO_LONG":a.indexOf(s,1)>=0?"IS_POSSIBLE":"INVALID_LENGTH"}function th(t,n,e){if(n===void 0&&(n={}),e=new nt(e),n.v2){if(!t.countryCallingCode)throw new Error("Invalid phone number object passed");e.selectNumberingPlan(t.countryCallingCode)}else{if(!t.phone)return!1;if(t.country){if(!e.hasCountry(t.country))throw new Error("Unknown country: ".concat(t.country));e.country(t.country)}else{if(!t.countryCallingCode)throw new Error("Invalid phone number object passed");e.selectNumberingPlan(t.countryCallingCode)}}if(e.possibleLengths())return na(t.phone||t.nationalNumber,e);if(t.countryCallingCode&&e.isNonGeographicCallingCode(t.countryCallingCode))return!0;throw new Error('Missing "possibleLengths" in metadata. Perhaps the metadata has been generated before v1.0.18.')}function na(t,n){switch(ii(t,n)){case"IS_POSSIBLE":return!0;default:return!1}}function Dt(t,n){return t=t||"",new RegExp("^(?:"+n+")$").test(t)}function nh(t,n){var e=typeof Symbol<"u"&&t[Symbol.iterator]||t["@@iterator"];if(e)return(e=e.call(t)).next.bind(e);if(Array.isArray(t)||(e=rh(t))||n&&t&&typeof t.length=="number"){e&&(t=e);var o=0;return function(){return o>=t.length?{done:!0}:{done:!1,value:t[o++]}}}throw new TypeError(`Invalid attempt to iterate non-iterable instance.
|
|
88
|
+
In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function rh(t,n){if(t){if(typeof t=="string")return ra(t,n);var e=Object.prototype.toString.call(t).slice(8,-1);if(e==="Object"&&t.constructor&&(e=t.constructor.name),e==="Map"||e==="Set")return Array.from(t);if(e==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(e))return ra(t,n)}}function ra(t,n){(n==null||n>t.length)&&(n=t.length);for(var e=0,o=new Array(n);e<n;e++)o[e]=t[e];return o}var ih=["MOBILE","PREMIUM_RATE","TOLL_FREE","SHARED_COST","VOIP","PERSONAL_NUMBER","PAGER","UAN","VOICEMAIL"];function oi(t,n,e){if(n=n||{},!(!t.country&&!t.countryCallingCode)){e=new nt(e),e.selectNumberingPlan(t.country,t.countryCallingCode);var o=n.v2?t.nationalNumber:t.phone;if(Dt(o,e.nationalNumberPattern())){if(ai(o,"FIXED_LINE",e))return e.type("MOBILE")&&e.type("MOBILE").pattern()===""||!e.type("MOBILE")||ai(o,"MOBILE",e)?"FIXED_LINE_OR_MOBILE":"FIXED_LINE";for(var a=nh(ih),r;!(r=a()).done;){var s=r.value;if(ai(o,s,e))return s}}}}function ai(t,n,e){return n=e.type(n),!n||!n.pattern()||n.possibleLengths()&&n.possibleLengths().indexOf(t.length)<0?!1:Dt(t,n.pattern())}function oh(t,n,e){if(n=n||{},e=new nt(e),e.selectNumberingPlan(t.country,t.countryCallingCode),e.hasTypes())return oi(t,n,e.metadata)!==void 0;var o=n.v2?t.nationalNumber:t.phone;return Dt(o,e.nationalNumberPattern())}function ah(t,n,e){var o=new nt(e),a=o.getCountryCodesForCallingCode(t);return a?a.filter(function(r){return lh(n,r,e)}):[]}function lh(t,n,e){var o=new nt(e);return o.selectNumberingPlan(n),o.numberingPlan.possibleLengths().indexOf(t.length)>=0}function sh(t){return t.replace(new RegExp("[".concat(dr,"]+"),"g")," ").trim()}var ch=/(\$\d)/;function dh(t,n,e){var o=e.useInternationalFormat,a=e.withNationalPrefix;e.carrierCode,e.metadata;var r=t.replace(new RegExp(n.pattern()),o?n.internationalFormat():a&&n.nationalPrefixFormattingRule()?n.format().replace(ch,n.nationalPrefixFormattingRule()):n.format());return o?sh(r):r}var uh=/^[\d]+(?:[~\u2053\u223C\uFF5E][\d]+)?$/;function fh(t,n,e){var o=new nt(e);if(o.selectNumberingPlan(t,n),o.defaultIDDPrefix())return o.defaultIDDPrefix();if(uh.test(o.IDDPrefix()))return o.IDDPrefix()}function hh(t){var n=t.number,e=t.ext;if(!n)return"";if(n[0]!=="+")throw new Error('"formatRFC3966()" expects "number" to be in E.164 format.');return"tel:".concat(n).concat(e?";ext="+e:"")}function ph(t,n){var e=typeof Symbol<"u"&&t[Symbol.iterator]||t["@@iterator"];if(e)return(e=e.call(t)).next.bind(e);if(Array.isArray(t)||(e=mh(t))||n&&t&&typeof t.length=="number"){e&&(t=e);var o=0;return function(){return o>=t.length?{done:!0}:{done:!1,value:t[o++]}}}throw new TypeError(`Invalid attempt to iterate non-iterable instance.
|
|
89
|
+
In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function mh(t,n){if(t){if(typeof t=="string")return ia(t,n);var e=Object.prototype.toString.call(t).slice(8,-1);if(e==="Object"&&t.constructor&&(e=t.constructor.name),e==="Map"||e==="Set")return Array.from(t);if(e==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(e))return ia(t,n)}}function ia(t,n){(n==null||n>t.length)&&(n=t.length);for(var e=0,o=new Array(n);e<n;e++)o[e]=t[e];return o}function oa(t,n){var e=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);n&&(o=o.filter(function(a){return Object.getOwnPropertyDescriptor(t,a).enumerable})),e.push.apply(e,o)}return e}function aa(t){for(var n=1;n<arguments.length;n++){var e=arguments[n]!=null?arguments[n]:{};n%2?oa(Object(e),!0).forEach(function(o){gh(t,o,e[o])}):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(e)):oa(Object(e)).forEach(function(o){Object.defineProperty(t,o,Object.getOwnPropertyDescriptor(e,o))})}return t}function gh(t,n,e){return n in t?Object.defineProperty(t,n,{value:e,enumerable:!0,configurable:!0,writable:!0}):t[n]=e,t}var la={formatExtension:function(t,n,e){return"".concat(t).concat(e.ext()).concat(n)}};function yh(t,n,e,o){if(e?e=aa(aa({},la),e):e=la,o=new nt(o),t.country&&t.country!=="001"){if(!o.hasCountry(t.country))throw new Error("Unknown country: ".concat(t.country));o.country(t.country)}else if(t.countryCallingCode)o.selectNumberingPlan(t.countryCallingCode);else return t.phone||"";var a=o.countryCallingCode(),r=e.v2?t.nationalNumber:t.phone,s;switch(n){case"NATIONAL":return r?(s=pr(r,t.carrierCode,"NATIONAL",o,e),li(s,t.ext,o,e.formatExtension)):"";case"INTERNATIONAL":return r?(s=pr(r,null,"INTERNATIONAL",o,e),s="+".concat(a," ").concat(s),li(s,t.ext,o,e.formatExtension)):"+".concat(a);case"E.164":return"+".concat(a).concat(r);case"RFC3966":return hh({number:"+".concat(a).concat(r),ext:t.ext});case"IDD":if(!e.fromCountry)return;var l=vh(r,t.carrierCode,a,e.fromCountry,o);return li(l,t.ext,o,e.formatExtension);default:throw new Error('Unknown "format" argument passed to "formatNumber()": "'.concat(n,'"'))}}function pr(t,n,e,o,a){var r=bh(o.formats(),t);return r?dh(t,r,{useInternationalFormat:e==="INTERNATIONAL",withNationalPrefix:!(r.nationalPrefixIsOptionalWhenFormattingInNationalFormat()&&a&&a.nationalPrefix===!1),carrierCode:n,metadata:o}):t}function bh(t,n){for(var e=ph(t),o;!(o=e()).done;){var a=o.value;if(a.leadingDigitsPatterns().length>0){var r=a.leadingDigitsPatterns()[a.leadingDigitsPatterns().length-1];if(n.search(r)!==0)continue}if(Dt(n,a.pattern()))return a}}function li(t,n,e,o){return n?o(t,n,e):t}function vh(t,n,e,o,a){var r=ri(o,a.metadata);if(r===e){var s=pr(t,n,"NATIONAL",a);return e==="1"?e+" "+s:s}var l=fh(o,void 0,a.metadata);if(l)return"".concat(l," ").concat(e," ").concat(pr(t,null,"INTERNATIONAL",a))}function sa(t,n){var e=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);n&&(o=o.filter(function(a){return Object.getOwnPropertyDescriptor(t,a).enumerable})),e.push.apply(e,o)}return e}function ca(t){for(var n=1;n<arguments.length;n++){var e=arguments[n]!=null?arguments[n]:{};n%2?sa(Object(e),!0).forEach(function(o){_h(t,o,e[o])}):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(e)):sa(Object(e)).forEach(function(o){Object.defineProperty(t,o,Object.getOwnPropertyDescriptor(e,o))})}return t}function _h(t,n,e){return n in t?Object.defineProperty(t,n,{value:e,enumerable:!0,configurable:!0,writable:!0}):t[n]=e,t}function $h(t,n){if(!(t instanceof n))throw new TypeError("Cannot call a class as a function")}function da(t,n){for(var e=0;e<n.length;e++){var o=n[e];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(t,o.key,o)}}function wh(t,n,e){return n&&da(t.prototype,n),e&&da(t,e),Object.defineProperty(t,"prototype",{writable:!1}),t}var kh=function(){function t(n,e,o){if($h(this,t),!n)throw new TypeError("`country` or `countryCallingCode` not passed");if(!e)throw new TypeError("`nationalNumber` not passed");if(!o)throw new TypeError("`metadata` not passed");var a=Oh(n,o),r=a.country,s=a.countryCallingCode;this.country=r,this.countryCallingCode=s,this.nationalNumber=e,this.number="+"+this.countryCallingCode+this.nationalNumber,this.getMetadata=function(){return o}}return wh(t,[{key:"setExt",value:function(n){this.ext=n}},{key:"getPossibleCountries",value:function(){return this.country?[this.country]:ah(this.countryCallingCode,this.nationalNumber,this.getMetadata())}},{key:"isPossible",value:function(){return th(this,{v2:!0},this.getMetadata())}},{key:"isValid",value:function(){return oh(this,{v2:!0},this.getMetadata())}},{key:"isNonGeographic",value:function(){var n=new nt(this.getMetadata());return n.isNonGeographicCallingCode(this.countryCallingCode)}},{key:"isEqual",value:function(n){return this.number===n.number&&this.ext===n.ext}},{key:"getType",value:function(){return oi(this,{v2:!0},this.getMetadata())}},{key:"format",value:function(n,e){return yh(this,n,e?ca(ca({},e),{},{v2:!0}):{v2:!0},this.getMetadata())}},{key:"formatNational",value:function(n){return this.format("NATIONAL",n)}},{key:"formatInternational",value:function(n){return this.format("INTERNATIONAL",n)}},{key:"getURI",value:function(n){return this.format("RFC3966",n)}}]),t}(),Ch=function(t){return/^[A-Z]{2}$/.test(t)};function Oh(t,n){var e,o,a=new nt(n);return Ch(t)?(e=t,a.selectNumberingPlan(e),o=a.countryCallingCode()):o=t,{country:e,countryCallingCode:o}}var Eh=new RegExp("(["+yt+"])");function Sh(t,n,e,o){if(n){var a=new nt(o);a.selectNumberingPlan(n,e);var r=new RegExp(a.IDDPrefix());if(t.search(r)===0){t=t.slice(t.match(r)[0].length);var s=t.match(Eh);if(!(s&&s[1]!=null&&s[1].length>0&&s[1]==="0"))return t}}}function xh(t,n){if(t&&n.numberingPlan.nationalPrefixForParsing()){var e=new RegExp("^(?:"+n.numberingPlan.nationalPrefixForParsing()+")"),o=e.exec(t);if(o){var a,r,s=o.length-1,l=s>0&&o[s];if(n.nationalPrefixTransformRule()&&l)a=t.replace(e,n.nationalPrefixTransformRule()),s>1&&(r=o[1]);else{var u=o[0];a=t.slice(u.length),l&&(r=o[1])}var d;if(l){var p=t.indexOf(o[1]),f=t.slice(0,p);f===n.numberingPlan.nationalPrefix()&&(d=n.numberingPlan.nationalPrefix())}else d=o[0];return{nationalNumber:a,nationalPrefix:d,carrierCode:r}}}return{nationalNumber:t}}function si(t,n){var e=xh(t,n),o=e.carrierCode,a=e.nationalNumber;if(a!==t){if(!Th(t,a,n))return{nationalNumber:t};if(n.possibleLengths()&&!Nh(a,n))return{nationalNumber:t}}return{nationalNumber:a,carrierCode:o}}function Th(t,n,e){return!(Dt(t,e.nationalNumberPattern())&&!Dt(n,e.nationalNumberPattern()))}function Nh(t,n){switch(ii(t,n)){case"TOO_SHORT":case"INVALID_LENGTH":return!1;default:return!0}}function Ah(t,n,e,o){var a=n?ri(n,o):e;if(t.indexOf(a)===0){o=new nt(o),o.selectNumberingPlan(n,e);var r=t.slice(a.length),s=si(r,o),l=s.nationalNumber,u=si(t,o),d=u.nationalNumber;if(!Dt(d,o.nationalNumberPattern())&&Dt(l,o.nationalNumberPattern())||ii(d,o)==="TOO_LONG")return{countryCallingCode:a,number:r}}return{number:t}}function Dh(t,n,e,o){if(!t)return{};var a;if(t[0]!=="+"){var r=Sh(t,n,e,o);if(r&&r!==t)a=!0,t="+"+r;else{if(n||e){var s=Ah(t,n,e,o),l=s.countryCallingCode,u=s.number;if(l)return{countryCallingCodeSource:"FROM_NUMBER_WITHOUT_PLUS_SIGN",countryCallingCode:l,number:u}}return{number:t}}}if(t[1]==="0")return{};o=new nt(o);for(var d=2;d-1<=$f&&d<=t.length;){var p=t.slice(1,d);if(o.hasCallingCode(p))return o.selectNumberingPlan(p),{countryCallingCodeSource:a?"FROM_NUMBER_WITH_IDD":"FROM_NUMBER_WITH_PLUS_SIGN",countryCallingCode:p,number:t.slice(d)};d++}return{}}function Ph(t,n){var e=typeof Symbol<"u"&&t[Symbol.iterator]||t["@@iterator"];if(e)return(e=e.call(t)).next.bind(e);if(Array.isArray(t)||(e=Ih(t))||n&&t&&typeof t.length=="number"){e&&(t=e);var o=0;return function(){return o>=t.length?{done:!0}:{done:!1,value:t[o++]}}}throw new TypeError(`Invalid attempt to iterate non-iterable instance.
|
|
90
|
+
In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function Ih(t,n){if(t){if(typeof t=="string")return ua(t,n);var e=Object.prototype.toString.call(t).slice(8,-1);if(e==="Object"&&t.constructor&&(e=t.constructor.name),e==="Map"||e==="Set")return Array.from(t);if(e==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(e))return ua(t,n)}}function ua(t,n){(n==null||n>t.length)&&(n=t.length);for(var e=0,o=new Array(n);e<n;e++)o[e]=t[e];return o}function Mh(t,n){var e=n.countries,o=n.defaultCountry,a=n.metadata;a=new nt(a);for(var r=[],s=Ph(e),l;!(l=s()).done;){var u=l.value;if(a.country(u),a.leadingDigits()){if(t&&t.search(a.leadingDigits())===0)return u}else if(oi({phone:t,country:u},void 0,a.metadata))if(o){if(u===o)return u;r.push(u)}else return u}if(r.length>0)return r[0]}function Bh(t,n){var e=n.nationalNumber,o=n.defaultCountry,a=n.metadata,r=a.getCountryCodesForCallingCode(t);if(r)return r.length===1?r[0]:Mh(e,{countries:r,defaultCountry:o,metadata:a.metadata})}var fa="+",Lh="[\\-\\.\\(\\)]?",ha="(["+yt+"]|"+Lh+")",Rh="^\\"+fa+ha+"*["+yt+"]"+ha+"*$",jh=new RegExp(Rh,"g"),ci=yt,Vh="["+ci+"]+((\\-)*["+ci+"])*",qh="a-zA-Z",Fh="["+qh+"]+((\\-)*["+ci+"])*",Hh="^("+Vh+"\\.)*"+Fh+"\\.?$",zh=new RegExp(Hh,"g"),pa="tel:",di=";phone-context=",Uh=";isub=";function Kh(t){var n=t.indexOf(di);if(n<0)return null;var e=n+di.length;if(e>=t.length)return"";var o=t.indexOf(";",e);return o>=0?t.substring(e,o):t.substring(e)}function Gh(t){return t===null?!0:t.length===0?!1:jh.test(t)||zh.test(t)}function Wh(t,n){var e=n.extractFormattedPhoneNumber,o=Kh(t);if(!Gh(o))throw new At("NOT_A_NUMBER");var a;if(o===null)a=e(t)||"";else{a="",o.charAt(0)===fa&&(a+=o);var r=t.indexOf(pa),s;r>=0?s=r+pa.length:s=0;var l=t.indexOf(di);a+=t.substring(s,l)}var u=a.indexOf(Uh);if(u>0&&(a=a.substring(0,u)),a!=="")return a}var Yh=250,Zh=new RegExp("["+ti+yt+"]"),Jh=new RegExp("[^"+yt+"#]+$");function Xh(t,n,e){if(n=n||{},e=new nt(e),n.defaultCountry&&!e.hasCountry(n.defaultCountry))throw n.v2?new At("INVALID_COUNTRY"):new Error("Unknown country: ".concat(n.defaultCountry));var o=e1(t,n.v2,n.extract),a=o.number,r=o.ext,s=o.error;if(!a){if(n.v2)throw s==="TOO_SHORT"?new At("TOO_SHORT"):new At("NOT_A_NUMBER");return{}}var l=n1(a,n.defaultCountry,n.defaultCallingCode,e),u=l.country,d=l.nationalNumber,p=l.countryCallingCode,f=l.countryCallingCodeSource,c=l.carrierCode;if(!e.hasSelectedNumberingPlan()){if(n.v2)throw new At("INVALID_COUNTRY");return{}}if(!d||d.length<ei){if(n.v2)throw new At("TOO_SHORT");return{}}if(d.length>_f){if(n.v2)throw new At("TOO_LONG");return{}}if(n.v2){var h=new kh(p,d,e.metadata);return u&&(h.country=u),c&&(h.carrierCode=c),r&&(h.ext=r),h.__countryCallingCodeSource=f,h}var v=(n.extended?e.hasSelectedNumberingPlan():u)?Dt(d,e.nationalNumberPattern()):!1;return n.extended?{country:u,countryCallingCode:p,carrierCode:c,valid:v,possible:v?!0:!!(n.extended===!0&&e.possibleLengths()&&na(d,e)),phone:d,ext:r}:v?t1(u,d,r):{}}function Qh(t,n,e){if(t){if(t.length>Yh){if(e)throw new At("TOO_LONG");return}if(n===!1)return t;var o=t.search(Zh);if(!(o<0))return t.slice(o).replace(Jh,"")}}function e1(t,n,e){var o=Wh(t,{extractFormattedPhoneNumber:function(r){return Qh(r,e,n)}});if(!o)return{};if(!zf(o))return Uf(o)?{error:"TOO_SHORT"}:{};var a=Kf(o);return a.ext?a:{number:o}}function t1(t,n,e){var o={country:t,phone:n};return e&&(o.ext=e),o}function n1(t,n,e,o){var a=Dh(Qo(t),n,e,o.metadata),r=a.countryCallingCodeSource,s=a.countryCallingCode,l=a.number,u;if(s)o.selectNumberingPlan(s);else if(l&&(n||e))o.selectNumberingPlan(n,e),n&&(u=n),s=e||ri(n,o.metadata);else return{};if(!l)return{countryCallingCodeSource:r,countryCallingCode:s};var d=si(Qo(l),o),p=d.nationalNumber,f=d.carrierCode,c=Bh(s,{nationalNumber:p,defaultCountry:n,metadata:o});return c&&(u=c,c==="001"||o.country(u)),{country:u,countryCallingCode:s,countryCallingCodeSource:r,nationalNumber:p,carrierCode:f}}function ma(t,n){var e=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);n&&(o=o.filter(function(a){return Object.getOwnPropertyDescriptor(t,a).enumerable})),e.push.apply(e,o)}return e}function ga(t){for(var n=1;n<arguments.length;n++){var e=arguments[n]!=null?arguments[n]:{};n%2?ma(Object(e),!0).forEach(function(o){r1(t,o,e[o])}):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(e)):ma(Object(e)).forEach(function(o){Object.defineProperty(t,o,Object.getOwnPropertyDescriptor(e,o))})}return t}function r1(t,n,e){return n in t?Object.defineProperty(t,n,{value:e,enumerable:!0,configurable:!0,writable:!0}):t[n]=e,t}function i1(t,n,e){return Xh(t,ga(ga({},n),{},{v2:!0}),e)}function ya(t,n){var e=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);n&&(o=o.filter(function(a){return Object.getOwnPropertyDescriptor(t,a).enumerable})),e.push.apply(e,o)}return e}function o1(t){for(var n=1;n<arguments.length;n++){var e=arguments[n]!=null?arguments[n]:{};n%2?ya(Object(e),!0).forEach(function(o){a1(t,o,e[o])}):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(e)):ya(Object(e)).forEach(function(o){Object.defineProperty(t,o,Object.getOwnPropertyDescriptor(e,o))})}return t}function a1(t,n,e){return n in t?Object.defineProperty(t,n,{value:e,enumerable:!0,configurable:!0,writable:!0}):t[n]=e,t}function l1(t,n){return u1(t)||d1(t,n)||c1(t,n)||s1()}function s1(){throw new TypeError(`Invalid attempt to destructure non-iterable instance.
|
|
91
|
+
In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function c1(t,n){if(t){if(typeof t=="string")return ba(t,n);var e=Object.prototype.toString.call(t).slice(8,-1);if(e==="Object"&&t.constructor&&(e=t.constructor.name),e==="Map"||e==="Set")return Array.from(t);if(e==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(e))return ba(t,n)}}function ba(t,n){(n==null||n>t.length)&&(n=t.length);for(var e=0,o=new Array(n);e<n;e++)o[e]=t[e];return o}function d1(t,n){var e=t==null?null:typeof Symbol<"u"&&t[Symbol.iterator]||t["@@iterator"];if(e!=null){var o=[],a=!0,r=!1,s,l;try{for(e=e.call(t);!(a=(s=e.next()).done)&&(o.push(s.value),!(n&&o.length===n));a=!0);}catch(u){r=!0,l=u}finally{try{!a&&e.return!=null&&e.return()}finally{if(r)throw l}}return o}}function u1(t){if(Array.isArray(t))return t}function f1(t){var n=Array.prototype.slice.call(t),e=l1(n,4),o=e[0],a=e[1],r=e[2],s=e[3],l,u,d;if(typeof o=="string")l=o;else throw new TypeError("A text for parsing must be a string.");if(!a||typeof a=="string")s?(u=r,d=s):(u=void 0,d=r),a&&(u=o1({defaultCountry:a},u));else if(ur(a))r?(u=a,d=r):d=a;else throw new Error("Invalid second argument: ".concat(a));return{text:l,options:u,metadata:d}}function va(t,n){var e=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);n&&(o=o.filter(function(a){return Object.getOwnPropertyDescriptor(t,a).enumerable})),e.push.apply(e,o)}return e}function _a(t){for(var n=1;n<arguments.length;n++){var e=arguments[n]!=null?arguments[n]:{};n%2?va(Object(e),!0).forEach(function(o){h1(t,o,e[o])}):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(e)):va(Object(e)).forEach(function(o){Object.defineProperty(t,o,Object.getOwnPropertyDescriptor(e,o))})}return t}function h1(t,n,e){return n in t?Object.defineProperty(t,n,{value:e,enumerable:!0,configurable:!0,writable:!0}):t[n]=e,t}function p1(t,n,e){n&&n.defaultCountry&&!Lf(n.defaultCountry,e)&&(n=_a(_a({},n),{},{defaultCountry:void 0}));try{return i1(t,n,e)}catch(o){if(!(o instanceof At))throw o}}function m1(){var t=f1(arguments),n=t.text,e=t.options,o=t.metadata;return p1(n,e,o)}function ui(){return hf(m1,arguments)}const g1={beforeMount(t,n,e){if(typeof n.value!="function"){const o=e.context.name;let a=`[Vue-click-outside:] provided expression ${n.expression} is not a function, but has to be`;o&&(a+=`Found in component ${o}`),console.warn(a)}t.clickOutsideEvent=function(o){const a=o.composedPath?o.composedPath():o.path;t===o.target||t.contains(o.target)||a.includes(t)||n.value(o,t)},document.body.addEventListener("click",t.clickOutsideEvent)},unmounted(t){document.body.removeEventListener("click",t.clickOutsideEvent)}},y1=["aria-expanded","tabindex"],b1={class:"vti__selection"},v1={key:1,class:"vti__country-code"},_1={class:"vti__dropdown-arrow"},$1={key:0,class:"vti__search_box_container"},w1=["placeholder"],k1=["onClick","onMousemove","aria-selected"],C1={key:1},O1=["type","autocomplete","autofocus","disabled","id","maxlength","name","placeholder","readonly","required","tabindex","value","aria-describedby"],E1=i.defineComponent({name:"VueTelInput",directives:{clickOutside:g1},__name:"vue-tel-input",props:i.mergeModels({allCountries:{type:Array,default:()=>tt("allCountries")},autoFormat:{type:Boolean,default:()=>tt("autoFormat")},customValidate:{type:[Boolean,RegExp],default:()=>tt("customValidate")},defaultCountry:{type:[String,Number],default:()=>tt("defaultCountry")},disabled:{type:Boolean,default:()=>tt("disabled")},autoDefaultCountry:{type:Boolean,default:()=>tt("autoDefaultCountry")},dropdownOptions:{type:Object,default:()=>tt("dropdownOptions")},ignoredCountries:{type:Array,default:()=>tt("ignoredCountries")},inputOptions:{type:Object,default:()=>tt("inputOptions")},invalidMsg:{type:String,default:()=>tt("invalidMsg")},mode:{type:String,default:()=>tt("mode")},onlyCountries:{type:Array,default:()=>tt("onlyCountries")},preferredCountries:{type:Array,default:()=>tt("preferredCountries")},validCharactersOnly:{type:Boolean,default:()=>tt("validCharactersOnly")},styleClasses:{type:[String,Array,Object],default:()=>tt("styleClasses")}},{modelValue:{type:String},modelModifiers:{}}),emits:i.mergeModels(["blur","close","country-changed","enter","focus","on-input","open","space","validate"],["update:modelValue"]),setup(t,{expose:n,emit:e}){const o=i.shallowRef(),a=i.shallowRef(),r=i.shallowRef(),s=e,l=t,u=i.useModel(t,"modelValue");i.watch(u,(A,I)=>{S()?d.phone=A??"":i.nextTick(()=>{d.phone=I??"",B()})});const d=i.reactive({phone:"",activeCountryCode:void 0,open:!1,finishMounted:!1,selectedIndex:null,typeToFindInput:"",typeToFindTimer:void 0,dropdownOpenDirection:"below",parsedPlaceholder:l.inputOptions.placeholder,searchQuery:""});i.watch(()=>d.open,A=>{A?(D(),s("open")):s("close")});const p=i.computed(()=>l.onlyCountries.length?l.allCountries.filter(({iso2:A})=>l.onlyCountries.some(I=>Tn(I)===A)):l.ignoredCountries.length?l.allCountries.filter(({iso2:A})=>!l.ignoredCountries.includes(Tn(A))&&!l.ignoredCountries.includes(xn(A))):l.allCountries),f=i.computed(()=>g(d.activeCountryCode));i.watch(f,(A,I)=>{if(!A&&I!=null&&I.iso2){d.activeCountryCode=I.iso2;return}A!=null&&A.iso2&&s("country-changed",A)});const c=i.computed(()=>{var A;const I=xn(l.mode);return I==="auto"?(A=d.phone)!=null&&A.startsWith("+")?"international":"national":["national","international","e.164","rfc3966","idd"].includes(I)?I:(console.error('Invalid value of prop "mode"'),"international")}),h=i.computed(()=>{const A=[...y(l.preferredCountries).map(U=>({...U,preferred:!0})),...p.value];if(!l.dropdownOptions.showSearchBox)return A;const I=d.searchQuery.toLowerCase().replace(/[~`!@#$%^&*()+={}\[\];:\'\"<>.,\/\\\?-_]/g,"");return A.filter(U=>new RegExp(I,"i").test(U.name)||new RegExp(I,"i").test(U.iso2)||new RegExp(I,"i").test(U.dialCode))}),v=i.computed(()=>{var A;const I=d.phone.startsWith("+")?ui(d.phone):ui(d.phone,d.activeCountryCode),U={country:I==null?void 0:I.country,countryCode:I==null?void 0:I.country,formatted:d.phone,valid:I==null?void 0:I.isValid(),possible:(A=I==null?void 0:I.isPossible)==null?void 0:A.call(I),nationalNumber:I==null?void 0:I.nationalNumber};return U.valid&&(U.formatted=I==null?void 0:I.format(Tn(c.value))),I!=null&&I.country&&(l.ignoredCountries.length||l.onlyCountries.length)&&!g(I.country)&&(U.valid=!1,U.possible=!1,I.country=null),I?{...U,...I}:U});i.watch(()=>v.value.countryCode,A=>{A&&(d.activeCountryCode=A)}),i.watch(()=>v.value.valid,()=>{s("validate",v.value)}),i.watch(()=>v.value.formatted,A=>{!l.autoFormat||l.customValidate||(E(A),i.nextTick(()=>{A&&!u.value&&(d.phone=A)}))}),i.watch(()=>l.inputOptions.placeholder,m),i.onMounted(()=>{u.value&&(d.phone=u.value.trim()),T(),_().then(()=>{var A;!d.phone&&(A=l.inputOptions)!=null&&A.showDialCode&&d.activeCountryCode&&(d.phone=`+${d.activeCountryCode}`),s("validate",v.value)}).catch(console.error).then(()=>{d.finishMounted=!0})});function m(){d.parsedPlaceholder=l.inputOptions.placeholder}function _(){return new Promise(A=>{var I;if(((I=d.phone)==null?void 0:I[0])==="+"){A();return}if(l.defaultCountry){if(typeof l.defaultCountry=="string"){k(l.defaultCountry),A();return}if(typeof l.defaultCountry=="number"){const F=w(l.defaultCountry);if(F){k(F.iso2),A();return}}}const U=l.preferredCountries[0]||p.value[0];l.autoDefaultCountry?sf().then(F=>{k(F||d.activeCountryCode)}).catch(F=>{console.warn(F),k(U)}).then(()=>{A()}):(k(U),A())})}function y(A=[]){return A.map(g).filter(Boolean)}function g(A=""){return p.value.find(I=>I.iso2===Tn(A))}function w(A){return p.value.find(I=>Number(I.dialCode)===A)}function b(A,I){const U=d.selectedIndex===A,F=A===l.preferredCountries.length-1,L=l.preferredCountries.some(z=>Tn(z)===I);return{highlighted:U,"last-preferred":F,preferred:L}}function k(A){var I,U,F;let L=A;if(typeof L=="string"&&(L=g(L)),!!L){if(((I=d.phone)==null?void 0:I[0])==="+"&&L.iso2&&v.value.nationalNumber){d.activeCountryCode=L.iso2,d.phone=((U=ui(v.value.nationalNumber,L.iso2))==null?void 0:U.formatInternational())??"";return}if((F=l.inputOptions)!=null&&F.showDialCode&&L){d.phone=`+${L.dialCode}`,d.activeCountryCode=L.iso2;return}d.activeCountryCode=L.iso2,E(d.phone)}}function T(){const A=d.phone;if(l.validCharactersOnly){const I=d.phone.match(/[()\-+0-9\s]*/g);d.phone=I.join("")}if(l.customValidate&&l.customValidate instanceof RegExp){const I=d.phone.match(l.customValidate);d.phone=I.join("")}A!==d.phone&&E(d.phone)}function S(){return l.validCharactersOnly&&!/^[()\-+0-9\s]*$/.test(d.phone)?!1:l.customValidate?x():!0}function x(){return l.customValidate instanceof RegExp?l.customValidate.test(d.phone):!1}function B(){var A;(A=r.value)==null||A.setCustomValidity(v.value.valid?"":l.invalidMsg),E(d.phone)}function E(A){u.value=A,s("on-input",A,v.value,r.value)}function C(A){s("blur",A)}function O(A){cf(r.value,d.phone.length),s("focus",A)}function N(A){s("enter",A)}function R(A){s("space",A)}function q(){var A;(A=r.value)==null||A.focus()}function W(){var A;(A=r.value)==null||A.blur()}function Y(){l.disabled||l.dropdownOptions.disabled||(d.searchQuery="",d.open=!d.open)}function re(){d.open=!1}function K(A){if(A.keyCode===40){A.preventDefault(),d.open=!0,d.selectedIndex===null?d.selectedIndex=0:d.selectedIndex=Math.min(h.value.length-1,d.selectedIndex+1);const I=a.value.children[d.selectedIndex];I.focus(),I.offsetTop+I.clientHeight>a.value.scrollTop+a.value.clientHeight&&(a.value.scrollTop=I.offsetTop-a.value.clientHeight+I.clientHeight)}else if(A.keyCode===38){A.preventDefault(),d.open=!0,d.selectedIndex===null?d.selectedIndex=h.value.length-1:d.selectedIndex=Math.max(0,d.selectedIndex-1);const I=a.value.children[d.selectedIndex];I.focus(),I.offsetTop<a.value.scrollTop&&(a.value.scrollTop=I.offsetTop)}else if(A.keyCode===13)d.selectedIndex!==null&&k(h.value[d.selectedIndex]),d.open=!d.open;else if(d.open){d.typeToFindInput+=A.key,clearTimeout(d.typeToFindTimer),d.typeToFindTimer=setTimeout(()=>{d.typeToFindInput=""},700);const I=h.value.slice(l.preferredCountries.length).findIndex(U=>xn(U.name).startsWith(d.typeToFindInput));if(I>=0){d.selectedIndex=l.preferredCountries.length+I;const U=a.value.children[d.selectedIndex],F=U.offsetTop<a.value.scrollTop,L=U.offsetTop+U.clientHeight>a.value.scrollTop+a.value.clientHeight;(F||L)&&(a.value.scrollTop=U.offsetTop-a.value.clientHeight/2)}}}function V(){d.selectedIndex=h.value.map(A=>A.iso2).indexOf(d.activeCountryCode),d.open=!1}function D(){window.innerHeight-o.value.getBoundingClientRect().bottom>200?d.dropdownOpenDirection="below":d.dropdownOpenDirection="above"}return n({focus:q,blur:W}),(A,I)=>{const U=i.resolveDirective("click-outside");return i.openBlock(),i.createElementBlock("div",{ref_key:"refRoot",ref:o,class:i.normalizeClass(["vue-tel-input",t.styleClasses,{disabled:t.disabled}])},[i.withDirectives((i.openBlock(),i.createElementBlock("div",{"aria-label":"Country Code Selector","aria-haspopup":"listbox","aria-expanded":d.open,role:"button",class:i.normalizeClass(["vti__dropdown",{open:d.open,disabled:t.dropdownOptions.disabled}]),tabindex:t.dropdownOptions.tabindex,onKeydown:[K,i.withKeys(Y,["space"]),i.withKeys(V,["esc"]),i.withKeys(V,["tab"])],onClick:Y},[i.createElementVNode("span",b1,[t.dropdownOptions.showFlags?(i.openBlock(),i.createElementBlock("span",{key:0,class:i.normalizeClass(["vti__flag",i.unref(xn)(d.activeCountryCode)])},null,2)):i.createCommentVNode("",!0),t.dropdownOptions.showDialCodeInSelection?(i.openBlock(),i.createElementBlock("span",v1," +"+i.toDisplayString(f.value&&f.value.dialCode),1)):i.createCommentVNode("",!0),i.renderSlot(A.$slots,"arrow-icon",{open:d.open},()=>[i.createElementVNode("span",_1,i.toDisplayString(d.open?"▲":"▼"),1)])]),d.open?(i.openBlock(),i.createElementBlock("ul",{key:0,ref_key:"refList",ref:a,class:i.normalizeClass(["vti__dropdown-list",d.dropdownOpenDirection]),role:"listbox"},[t.dropdownOptions.showSearchBox?(i.openBlock(),i.createElementBlock("div",$1,[i.renderSlot(A.$slots,"search-icon"),i.withDirectives(i.createElementVNode("input",{class:i.normalizeClass(["vti__input","vti__search_box"]),"aria-label":"Search by country name or country code",placeholder:t.dropdownOptions.searchBoxPlaceholder||(h.value.length?h.value[0].name:""),type:"text","onUpdate:modelValue":I[0]||(I[0]=F=>d.searchQuery=F),onClick:I[1]||(I[1]=i.withModifiers(()=>{},["stop"]))},null,8,w1),[[i.vModelText,d.searchQuery]])])):i.createCommentVNode("",!0),(i.openBlock(!0),i.createElementBlock(i.Fragment,null,i.renderList(h.value,(F,L)=>(i.openBlock(),i.createElementBlock("li",{role:"option",class:i.normalizeClass(["vti__dropdown-item",b(L,F.iso2)]),key:F.iso2+(F.preferred?"-preferred":""),tabindex:"-1",onClick:z=>k(F),onMousemove:z=>d.selectedIndex=L,"aria-selected":d.activeCountryCode===F.iso2&&!F.preferred},[t.dropdownOptions.showFlags?(i.openBlock(),i.createElementBlock("span",{key:0,class:i.normalizeClass(["vti__flag",i.unref(xn)(F.iso2)])},null,2)):i.createCommentVNode("",!0),i.createElementVNode("strong",null,i.toDisplayString(F.name),1),t.dropdownOptions.showDialCodeInList?(i.openBlock(),i.createElementBlock("span",C1," +"+i.toDisplayString(F.dialCode),1)):i.createCommentVNode("",!0)],42,k1))),128))],2)):i.createCommentVNode("",!0)],42,y1)),[[U,re]]),i.withDirectives(i.createElementVNode("input",{"onUpdate:modelValue":I[2]||(I[2]=F=>d.phone=F),ref_key:"refInput",ref:r,type:t.inputOptions.type,autocomplete:t.inputOptions.autocomplete,autofocus:t.inputOptions.autofocus,class:i.normalizeClass(["vti__input","vti__phone",t.inputOptions.styleClasses]),disabled:t.disabled,id:t.inputOptions.id,maxlength:t.inputOptions.maxlength,name:t.inputOptions.name,placeholder:d.parsedPlaceholder,readonly:t.inputOptions.readonly,required:t.inputOptions.required,tabindex:t.inputOptions.tabindex,value:u.value,"aria-describedby":t.inputOptions["aria-describedby"],onBlur:C,onFocus:O,onInput:B,onKeyup:[i.withKeys(N,["enter"]),i.withKeys(R,["space"])]},null,42,O1),[[i.vModelDynamic,d.phone]]),i.renderSlot(A.$slots,"icon-right")],2)}}}),Rp="",jp="",S1={directives:{Outside:nr},props:{modelValue:{type:String},value:String,inputName:{type:String,default:"phone"},autoDefaultCountry:{type:Boolean,default:!0},ignoredCountries:{type:Array,default:()=>[]},error:{type:Boolean,default:!1},errorMessage:{type:String,default:""},disabled:{type:Boolean,default:!1}},emits:["update:modelValue","onReady"],components:{VueTelInput:E1,IbAlert:Ft,IbIcon:Le},data(){return{vueTel:null,dialCode:"",defaultCountry:"US",allowChange:!1}},mounted(){this.vueTel=this.$refs.vueTel,this.$emit("onReady")},computed:{phone:{get(){return this.modelValue},set(t){this.$emit("update:modelValue",t)}}},methods:{countryChanged(t){this.$globalEvents.$on("countrySelectValue",n=>{this.vueTel.choose(n)}),!this.phone||this.phone.length-1<this.dialCode.length?this.phone="+"+t.dialCode:this.dialCode&&(this.phone=this.phone.replace(this.dialCode,t.dialCode)),this.dialCode=t.dialCode},clickOutside(){this.vueTel.open&&this.vueTel.clickedOutside()}}};function x1(t,n,e,o,a,r){const s=i.resolveComponent("ib-alert"),l=i.resolveComponent("ib-icon"),u=i.resolveComponent("vue-tel-input"),d=i.resolveDirective("outside");return i.openBlock(),i.createElementBlock(i.Fragment,null,[e.errorMessage.length?(i.openBlock(),i.createBlock(s,{key:0,class:"ib-phone-error-message"},{default:i.withCtx(()=>[i.createTextVNode(i.toDisplayString(e.errorMessage),1)]),_:1})):i.createCommentVNode("",!0),i.withDirectives((i.openBlock(),i.createBlock(u,i.mergeProps({modelValue:r.phone,"onUpdate:modelValue":n[0]||(n[0]=p=>r.phone=p)},t.$attrs,{onCountryChanged:r.countryChanged,"input-options":{name:e.inputName,id:e.inputName,autocomplete:"off"},"auto-default-country":e.autoDefaultCountry,"dropdown-options":{showSearchBox:!0,showFlags:!0,tabindex:0},defaultCountry:a.defaultCountry,ignoredCountries:e.ignoredCountries,class:{error:e.error||e.errorMessage.length,disabled:e.disabled},disabled:e.disabled,"style-classes":"ib-phone-input",ref:"vueTel"}),{"arrow-icon":i.withCtx(()=>[i.createVNode(l,{name:"chevron-down-outline"})]),_:1},16,["modelValue","onCountryChanged","input-options","auto-default-country","defaultCountry","ignoredCountries","class","disabled"])),[[d,r.clickOutside]])],64)}const T1=_e(S1,[["render",x1]]);var $a={exports:{}};/*!
|
|
89
92
|
* Quill Editor v1.3.7
|
|
90
93
|
* https://quilljs.com/
|
|
91
94
|
* Copyright (c) 2014, Jason Chen
|
|
92
95
|
* Copyright (c) 2013, salesforce.com
|
|
93
|
-
*/(function(t,n){(function(o,a){t.exports=a()})(typeof self<"u"?self:
|
|
94
|
-
`;for(var
|
|
95
|
-
`)){var
|
|
96
|
-
`,E(this))),this.cache.delta}},{key:"deleteAt",value:function(
|
|
97
|
-
`),ie=W.shift();ie.length>0&&(P<this.length()-1||this.children.tail==null?s(O.prototype.__proto__||Object.getPrototypeOf(O.prototype),"insertAt",this).call(this,Math.min(P,this.length()-1),ie):this.children.tail.insertAt(this.children.tail.length(),ie),this.cache={});var U=this;W.reduce(function(R,A){return U=U.split(R,!0),U.insertAt(0,A),A.length},P+ie.length)}}},{key:"insertBefore",value:function(P,q){var G=this.children.head;s(O.prototype.__proto__||Object.getPrototypeOf(O.prototype),"insertBefore",this).call(this,P,q),G instanceof _.default&&G.remove(),this.cache={}}},{key:"length",value:function(){return this.cache.length==null&&(this.cache.length=s(O.prototype.__proto__||Object.getPrototypeOf(O.prototype),"length",this).call(this)+S),this.cache.length}},{key:"moveChildren",value:function(P,q){s(O.prototype.__proto__||Object.getPrototypeOf(O.prototype),"moveChildren",this).call(this,P,q),this.cache={}}},{key:"optimize",value:function(P){s(O.prototype.__proto__||Object.getPrototypeOf(O.prototype),"optimize",this).call(this,P),this.cache={}}},{key:"path",value:function(P){return s(O.prototype.__proto__||Object.getPrototypeOf(O.prototype),"path",this).call(this,P,!0)}},{key:"removeChild",value:function(P){s(O.prototype.__proto__||Object.getPrototypeOf(O.prototype),"removeChild",this).call(this,P),this.cache={}}},{key:"split",value:function(P){var q=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1;if(q&&(P===0||P>=this.length()-S)){var G=this.clone();return P===0?(this.parent.insertBefore(G,this),this):(this.parent.insertBefore(G,this.next),G)}else{var W=s(O.prototype.__proto__||Object.getPrototypeOf(O.prototype),"split",this).call(this,P,q);return this.cache={},W}}}]),O}(l.default.Block);M.blotName="block",M.tagName="P",M.defaultChild="break",M.allowedChildren=[b.default,l.default.Embed,y.default];function E(C){var O=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};return C==null||(typeof C.formats=="function"&&(O=(0,u.default)(O,C.formats())),C.parent==null||C.parent.blotName=="scroll"||C.parent.statics.scope!==C.statics.scope)?O:E(C.parent,O)}o.bubbleFormats=E,o.BlockEmbed=T,o.default=M},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.default=o.overload=o.expandConfig=void 0;var r=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(U){return typeof U}:function(U){return U&&typeof Symbol=="function"&&U.constructor===Symbol&&U!==Symbol.prototype?"symbol":typeof U},s=function(){function U(R,A){var j=[],V=!0,Y=!1,H=void 0;try{for(var B=R[Symbol.iterator](),z;!(V=(z=B.next()).done)&&(j.push(z.value),!(A&&j.length===A));V=!0);}catch(Z){Y=!0,H=Z}finally{try{!V&&B.return&&B.return()}finally{if(Y)throw H}}return j}return function(R,A){if(Array.isArray(R))return R;if(Symbol.iterator in Object(R))return U(R,A);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),d=function(){function U(R,A){for(var j=0;j<A.length;j++){var V=A[j];V.enumerable=V.enumerable||!1,V.configurable=!0,"value"in V&&(V.writable=!0),Object.defineProperty(R,V.key,V)}}return function(R,A,j){return A&&U(R.prototype,A),j&&U(R,j),R}}();a(50);var u=a(2),p=E(u),h=a(14),f=E(h),l=a(8),c=E(l),_=a(9),v=E(_),b=a(0),g=E(b),y=a(15),w=E(y),m=a(3),k=E(m),N=a(10),S=E(N),T=a(34),M=E(T);function E(U){return U&&U.__esModule?U:{default:U}}function C(U,R,A){return R in U?Object.defineProperty(U,R,{value:A,enumerable:!0,configurable:!0,writable:!0}):U[R]=A,U}function O(U,R){if(!(U instanceof R))throw new TypeError("Cannot call a class as a function")}var x=(0,S.default)("quill"),P=function(){d(U,null,[{key:"debug",value:function(A){A===!0&&(A="log"),S.default.level(A)}},{key:"find",value:function(A){return A.__quill||g.default.find(A)}},{key:"import",value:function(A){return this.imports[A]==null&&x.error("Cannot import "+A+". Are you sure it was registered?"),this.imports[A]}},{key:"register",value:function(A,j){var V=this,Y=arguments.length>2&&arguments[2]!==void 0?arguments[2]:!1;if(typeof A!="string"){var H=A.attrName||A.blotName;typeof H=="string"?this.register("formats/"+H,A,j):Object.keys(A).forEach(function(B){V.register(B,A[B],j)})}else this.imports[A]!=null&&!Y&&x.warn("Overwriting "+A+" with",j),this.imports[A]=j,(A.startsWith("blots/")||A.startsWith("formats/"))&&j.blotName!=="abstract"?g.default.register(j):A.startsWith("modules")&&typeof j.register=="function"&&j.register()}}]);function U(R){var A=this,j=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};if(O(this,U),this.options=q(R,j),this.container=this.options.container,this.container==null)return x.error("Invalid Quill container",R);this.options.debug&&U.debug(this.options.debug);var V=this.container.innerHTML.trim();this.container.classList.add("ql-container"),this.container.innerHTML="",this.container.__quill=this,this.root=this.addContainer("ql-editor"),this.root.classList.add("ql-blank"),this.root.setAttribute("data-gramm",!1),this.scrollingContainer=this.options.scrollingContainer||this.root,this.emitter=new c.default,this.scroll=g.default.create(this.root,{emitter:this.emitter,whitelist:this.options.formats}),this.editor=new f.default(this.scroll),this.selection=new w.default(this.scroll,this.emitter),this.theme=new this.options.theme(this,this.options),this.keyboard=this.theme.addModule("keyboard"),this.clipboard=this.theme.addModule("clipboard"),this.history=this.theme.addModule("history"),this.theme.init(),this.emitter.on(c.default.events.EDITOR_CHANGE,function(H){H===c.default.events.TEXT_CHANGE&&A.root.classList.toggle("ql-blank",A.editor.isBlank())}),this.emitter.on(c.default.events.SCROLL_UPDATE,function(H,B){var z=A.selection.lastRange,Z=z&&z.length===0?z.index:void 0;G.call(A,function(){return A.editor.update(null,B,Z)},H)});var Y=this.clipboard.convert(`<div class='ql-editor' style="white-space: normal;">`+V+"<p><br></p></div>");this.setContents(Y),this.history.clear(),this.options.placeholder&&this.root.setAttribute("data-placeholder",this.options.placeholder),this.options.readOnly&&this.disable()}return d(U,[{key:"addContainer",value:function(A){var j=arguments.length>1&&arguments[1]!==void 0?arguments[1]:null;if(typeof A=="string"){var V=A;A=document.createElement("div"),A.classList.add(V)}return this.container.insertBefore(A,j),A}},{key:"blur",value:function(){this.selection.setRange(null)}},{key:"deleteText",value:function(A,j,V){var Y=this,H=W(A,j,V),B=s(H,4);return A=B[0],j=B[1],V=B[3],G.call(this,function(){return Y.editor.deleteText(A,j)},V,A,-1*j)}},{key:"disable",value:function(){this.enable(!1)}},{key:"enable",value:function(){var A=arguments.length>0&&arguments[0]!==void 0?arguments[0]:!0;this.scroll.enable(A),this.container.classList.toggle("ql-disabled",!A)}},{key:"focus",value:function(){var A=this.scrollingContainer.scrollTop;this.selection.focus(),this.scrollingContainer.scrollTop=A,this.scrollIntoView()}},{key:"format",value:function(A,j){var V=this,Y=arguments.length>2&&arguments[2]!==void 0?arguments[2]:c.default.sources.API;return G.call(this,function(){var H=V.getSelection(!0),B=new p.default;if(H==null)return B;if(g.default.query(A,g.default.Scope.BLOCK))B=V.editor.formatLine(H.index,H.length,C({},A,j));else{if(H.length===0)return V.selection.format(A,j),B;B=V.editor.formatText(H.index,H.length,C({},A,j))}return V.setSelection(H,c.default.sources.SILENT),B},Y)}},{key:"formatLine",value:function(A,j,V,Y,H){var B=this,z=void 0,Z=W(A,j,V,Y,H),J=s(Z,4);return A=J[0],j=J[1],z=J[2],H=J[3],G.call(this,function(){return B.editor.formatLine(A,j,z)},H,A,0)}},{key:"formatText",value:function(A,j,V,Y,H){var B=this,z=void 0,Z=W(A,j,V,Y,H),J=s(Z,4);return A=J[0],j=J[1],z=J[2],H=J[3],G.call(this,function(){return B.editor.formatText(A,j,z)},H,A,0)}},{key:"getBounds",value:function(A){var j=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0,V=void 0;typeof A=="number"?V=this.selection.getBounds(A,j):V=this.selection.getBounds(A.index,A.length);var Y=this.container.getBoundingClientRect();return{bottom:V.bottom-Y.top,height:V.height,left:V.left-Y.left,right:V.right-Y.left,top:V.top-Y.top,width:V.width}}},{key:"getContents",value:function(){var A=arguments.length>0&&arguments[0]!==void 0?arguments[0]:0,j=arguments.length>1&&arguments[1]!==void 0?arguments[1]:this.getLength()-A,V=W(A,j),Y=s(V,2);return A=Y[0],j=Y[1],this.editor.getContents(A,j)}},{key:"getFormat",value:function(){var A=arguments.length>0&&arguments[0]!==void 0?arguments[0]:this.getSelection(!0),j=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0;return typeof A=="number"?this.editor.getFormat(A,j):this.editor.getFormat(A.index,A.length)}},{key:"getIndex",value:function(A){return A.offset(this.scroll)}},{key:"getLength",value:function(){return this.scroll.length()}},{key:"getLeaf",value:function(A){return this.scroll.leaf(A)}},{key:"getLine",value:function(A){return this.scroll.line(A)}},{key:"getLines",value:function(){var A=arguments.length>0&&arguments[0]!==void 0?arguments[0]:0,j=arguments.length>1&&arguments[1]!==void 0?arguments[1]:Number.MAX_VALUE;return typeof A!="number"?this.scroll.lines(A.index,A.length):this.scroll.lines(A,j)}},{key:"getModule",value:function(A){return this.theme.modules[A]}},{key:"getSelection",value:function(){var A=arguments.length>0&&arguments[0]!==void 0?arguments[0]:!1;return A&&this.focus(),this.update(),this.selection.getRange()[0]}},{key:"getText",value:function(){var A=arguments.length>0&&arguments[0]!==void 0?arguments[0]:0,j=arguments.length>1&&arguments[1]!==void 0?arguments[1]:this.getLength()-A,V=W(A,j),Y=s(V,2);return A=Y[0],j=Y[1],this.editor.getText(A,j)}},{key:"hasFocus",value:function(){return this.selection.hasFocus()}},{key:"insertEmbed",value:function(A,j,V){var Y=this,H=arguments.length>3&&arguments[3]!==void 0?arguments[3]:U.sources.API;return G.call(this,function(){return Y.editor.insertEmbed(A,j,V)},H,A)}},{key:"insertText",value:function(A,j,V,Y,H){var B=this,z=void 0,Z=W(A,0,V,Y,H),J=s(Z,4);return A=J[0],z=J[2],H=J[3],G.call(this,function(){return B.editor.insertText(A,j,z)},H,A,j.length)}},{key:"isEnabled",value:function(){return!this.container.classList.contains("ql-disabled")}},{key:"off",value:function(){return this.emitter.off.apply(this.emitter,arguments)}},{key:"on",value:function(){return this.emitter.on.apply(this.emitter,arguments)}},{key:"once",value:function(){return this.emitter.once.apply(this.emitter,arguments)}},{key:"pasteHTML",value:function(A,j,V){this.clipboard.dangerouslyPasteHTML(A,j,V)}},{key:"removeFormat",value:function(A,j,V){var Y=this,H=W(A,j,V),B=s(H,4);return A=B[0],j=B[1],V=B[3],G.call(this,function(){return Y.editor.removeFormat(A,j)},V,A)}},{key:"scrollIntoView",value:function(){this.selection.scrollIntoView(this.scrollingContainer)}},{key:"setContents",value:function(A){var j=this,V=arguments.length>1&&arguments[1]!==void 0?arguments[1]:c.default.sources.API;return G.call(this,function(){A=new p.default(A);var Y=j.getLength(),H=j.editor.deleteText(0,Y),B=j.editor.applyDelta(A),z=B.ops[B.ops.length-1];z!=null&&typeof z.insert=="string"&&z.insert[z.insert.length-1]===`
|
|
98
|
-
`&&(j.editor.deleteText(j.getLength()-1,1),B.delete(1));var Z=H.compose(B);return Z},V)}},{key:"setSelection",value:function(A,j,V){if(A==null)this.selection.setRange(null,j||U.sources.API);else{var Y=W(A,j,V),H=s(Y,4);A=H[0],j=H[1],V=H[3],this.selection.setRange(new y.Range(A,j),V),V!==c.default.sources.SILENT&&this.selection.scrollIntoView(this.scrollingContainer)}}},{key:"setText",value:function(A){var j=arguments.length>1&&arguments[1]!==void 0?arguments[1]:c.default.sources.API,V=new p.default().insert(A);return this.setContents(V,j)}},{key:"update",value:function(){var A=arguments.length>0&&arguments[0]!==void 0?arguments[0]:c.default.sources.USER,j=this.scroll.update(A);return this.selection.update(A),j}},{key:"updateContents",value:function(A){var j=this,V=arguments.length>1&&arguments[1]!==void 0?arguments[1]:c.default.sources.API;return G.call(this,function(){return A=new p.default(A),j.editor.applyDelta(A,V)},V,!0)}}]),U}();P.DEFAULTS={bounds:null,formats:null,modules:{},placeholder:"",readOnly:!1,scrollingContainer:null,strict:!0,theme:"default"},P.events=c.default.events,P.sources=c.default.sources,P.version="1.3.7",P.imports={delta:p.default,parchment:g.default,"core/module":v.default,"core/theme":M.default};function q(U,R){if(R=(0,k.default)(!0,{container:U,modules:{clipboard:!0,keyboard:!0,history:!0}},R),!R.theme||R.theme===P.DEFAULTS.theme)R.theme=M.default;else if(R.theme=P.import("themes/"+R.theme),R.theme==null)throw new Error("Invalid theme "+R.theme+". Did you register it?");var A=(0,k.default)(!0,{},R.theme.DEFAULTS);[A,R].forEach(function(Y){Y.modules=Y.modules||{},Object.keys(Y.modules).forEach(function(H){Y.modules[H]===!0&&(Y.modules[H]={})})});var j=Object.keys(A.modules).concat(Object.keys(R.modules)),V=j.reduce(function(Y,H){var B=P.import("modules/"+H);return B==null?x.error("Cannot load "+H+" module. Are you sure you registered it?"):Y[H]=B.DEFAULTS||{},Y},{});return R.modules!=null&&R.modules.toolbar&&R.modules.toolbar.constructor!==Object&&(R.modules.toolbar={container:R.modules.toolbar}),R=(0,k.default)(!0,{},P.DEFAULTS,{modules:V},A,R),["bounds","container","scrollingContainer"].forEach(function(Y){typeof R[Y]=="string"&&(R[Y]=document.querySelector(R[Y]))}),R.modules=Object.keys(R.modules).reduce(function(Y,H){return R.modules[H]&&(Y[H]=R.modules[H]),Y},{}),R}function G(U,R,A,j){if(this.options.strict&&!this.isEnabled()&&R===c.default.sources.USER)return new p.default;var V=A==null?null:this.getSelection(),Y=this.editor.delta,H=U();if(V!=null&&(A===!0&&(A=V.index),j==null?V=ie(V,H,R):j!==0&&(V=ie(V,A,j,R)),this.setSelection(V,c.default.sources.SILENT)),H.length()>0){var B,z=[c.default.events.TEXT_CHANGE,H,Y,R];if((B=this.emitter).emit.apply(B,[c.default.events.EDITOR_CHANGE].concat(z)),R!==c.default.sources.SILENT){var Z;(Z=this.emitter).emit.apply(Z,z)}}return H}function W(U,R,A,j,V){var Y={};return typeof U.index=="number"&&typeof U.length=="number"?typeof R!="number"?(V=j,j=A,A=R,R=U.length,U=U.index):(R=U.length,U=U.index):typeof R!="number"&&(V=j,j=A,A=R,R=0),(typeof A>"u"?"undefined":r(A))==="object"?(Y=A,V=j):typeof A=="string"&&(j!=null?Y[A]=j:V=A),V=V||c.default.sources.API,[U,R,Y,V]}function ie(U,R,A,j){if(U==null)return null;var V=void 0,Y=void 0;if(R instanceof p.default){var H=[U.index,U.index+U.length].map(function(J){return R.transformPosition(J,j!==c.default.sources.USER)}),B=s(H,2);V=B[0],Y=B[1]}else{var z=[U.index,U.index+U.length].map(function(J){return J<R||J===R&&j===c.default.sources.USER?J:A>=0?J+A:Math.max(R,J+A)}),Z=s(z,2);V=Z[0],Y=Z[1]}return new y.Range(V,Y-V)}o.expandConfig=q,o.overload=W,o.default=P},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=function(){function b(g,y){for(var w=0;w<y.length;w++){var m=y[w];m.enumerable=m.enumerable||!1,m.configurable=!0,"value"in m&&(m.writable=!0),Object.defineProperty(g,m.key,m)}}return function(g,y,w){return y&&b(g.prototype,y),w&&b(g,w),g}}(),s=function b(g,y,w){g===null&&(g=Function.prototype);var m=Object.getOwnPropertyDescriptor(g,y);if(m===void 0){var k=Object.getPrototypeOf(g);return k===null?void 0:b(k,y,w)}else{if("value"in m)return m.value;var N=m.get;return N===void 0?void 0:N.call(w)}},d=a(7),u=f(d),p=a(0),h=f(p);function f(b){return b&&b.__esModule?b:{default:b}}function l(b,g){if(!(b instanceof g))throw new TypeError("Cannot call a class as a function")}function c(b,g){if(!b)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return g&&(typeof g=="object"||typeof g=="function")?g:b}function _(b,g){if(typeof g!="function"&&g!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof g);b.prototype=Object.create(g&&g.prototype,{constructor:{value:b,enumerable:!1,writable:!0,configurable:!0}}),g&&(Object.setPrototypeOf?Object.setPrototypeOf(b,g):b.__proto__=g)}var v=function(b){_(g,b);function g(){return l(this,g),c(this,(g.__proto__||Object.getPrototypeOf(g)).apply(this,arguments))}return r(g,[{key:"formatAt",value:function(w,m,k,N){if(g.compare(this.statics.blotName,k)<0&&h.default.query(k,h.default.Scope.BLOT)){var S=this.isolate(w,m);N&&S.wrap(k,N)}else s(g.prototype.__proto__||Object.getPrototypeOf(g.prototype),"formatAt",this).call(this,w,m,k,N)}},{key:"optimize",value:function(w){if(s(g.prototype.__proto__||Object.getPrototypeOf(g.prototype),"optimize",this).call(this,w),this.parent instanceof g&&g.compare(this.statics.blotName,this.parent.statics.blotName)>0){var m=this.parent.isolate(this.offset(),this.length());this.moveChildren(m),m.wrap(this)}}}],[{key:"compare",value:function(w,m){var k=g.order.indexOf(w),N=g.order.indexOf(m);return k>=0||N>=0?k-N:w===m?0:w<m?-1:1}}]),g}(h.default.Inline);v.allowedChildren=[v,h.default.Embed,u.default],v.order=["cursor","inline","underline","strike","italic","bold","script","link","code"],o.default=v},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=a(0),s=d(r);function d(l){return l&&l.__esModule?l:{default:l}}function u(l,c){if(!(l instanceof c))throw new TypeError("Cannot call a class as a function")}function p(l,c){if(!l)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return c&&(typeof c=="object"||typeof c=="function")?c:l}function h(l,c){if(typeof c!="function"&&c!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof c);l.prototype=Object.create(c&&c.prototype,{constructor:{value:l,enumerable:!1,writable:!0,configurable:!0}}),c&&(Object.setPrototypeOf?Object.setPrototypeOf(l,c):l.__proto__=c)}var f=function(l){h(c,l);function c(){return u(this,c),p(this,(c.__proto__||Object.getPrototypeOf(c)).apply(this,arguments))}return c}(s.default.Text);o.default=f},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=function(){function y(w,m){for(var k=0;k<m.length;k++){var N=m[k];N.enumerable=N.enumerable||!1,N.configurable=!0,"value"in N&&(N.writable=!0),Object.defineProperty(w,N.key,N)}}return function(w,m,k){return m&&y(w.prototype,m),k&&y(w,k),w}}(),s=function y(w,m,k){w===null&&(w=Function.prototype);var N=Object.getOwnPropertyDescriptor(w,m);if(N===void 0){var S=Object.getPrototypeOf(w);return S===null?void 0:y(S,m,k)}else{if("value"in N)return N.value;var T=N.get;return T===void 0?void 0:T.call(k)}},d=a(54),u=f(d),p=a(10),h=f(p);function f(y){return y&&y.__esModule?y:{default:y}}function l(y,w){if(!(y instanceof w))throw new TypeError("Cannot call a class as a function")}function c(y,w){if(!y)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return w&&(typeof w=="object"||typeof w=="function")?w:y}function _(y,w){if(typeof w!="function"&&w!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof w);y.prototype=Object.create(w&&w.prototype,{constructor:{value:y,enumerable:!1,writable:!0,configurable:!0}}),w&&(Object.setPrototypeOf?Object.setPrototypeOf(y,w):y.__proto__=w)}var v=(0,h.default)("quill:events"),b=["selectionchange","mousedown","mouseup","click"];b.forEach(function(y){document.addEventListener(y,function(){for(var w=arguments.length,m=Array(w),k=0;k<w;k++)m[k]=arguments[k];[].slice.call(document.querySelectorAll(".ql-container")).forEach(function(N){if(N.__quill&&N.__quill.emitter){var S;(S=N.__quill.emitter).handleDOM.apply(S,m)}})})});var g=function(y){_(w,y);function w(){l(this,w);var m=c(this,(w.__proto__||Object.getPrototypeOf(w)).call(this));return m.listeners={},m.on("error",v.error),m}return r(w,[{key:"emit",value:function(){v.log.apply(v,arguments),s(w.prototype.__proto__||Object.getPrototypeOf(w.prototype),"emit",this).apply(this,arguments)}},{key:"handleDOM",value:function(k){for(var N=arguments.length,S=Array(N>1?N-1:0),T=1;T<N;T++)S[T-1]=arguments[T];(this.listeners[k.type]||[]).forEach(function(M){var E=M.node,C=M.handler;(k.target===E||E.contains(k.target))&&C.apply(void 0,[k].concat(S))})}},{key:"listenDOM",value:function(k,N,S){this.listeners[k]||(this.listeners[k]=[]),this.listeners[k].push({node:N,handler:S})}}]),w}(u.default);g.events={EDITOR_CHANGE:"editor-change",SCROLL_BEFORE_UPDATE:"scroll-before-update",SCROLL_OPTIMIZE:"scroll-optimize",SCROLL_UPDATE:"scroll-update",SELECTION_CHANGE:"selection-change",TEXT_CHANGE:"text-change"},g.sources={API:"api",SILENT:"silent",USER:"user"},o.default=g},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});function r(d,u){if(!(d instanceof u))throw new TypeError("Cannot call a class as a function")}var s=function d(u){var p=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};r(this,d),this.quill=u,this.options=p};s.DEFAULTS={},o.default=s},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=["error","warn","log","info"],s="warn";function d(p){if(r.indexOf(p)<=r.indexOf(s)){for(var h,f=arguments.length,l=Array(f>1?f-1:0),c=1;c<f;c++)l[c-1]=arguments[c];(h=console)[p].apply(h,l)}}function u(p){return r.reduce(function(h,f){return h[f]=d.bind(console,f,p),h},{})}d.level=u.level=function(p){s=p},o.default=u},function(e,o,a){var r=Array.prototype.slice,s=a(52),d=a(53),u=e.exports=function(l,c,_){return _||(_={}),l===c?!0:l instanceof Date&&c instanceof Date?l.getTime()===c.getTime():!l||!c||typeof l!="object"&&typeof c!="object"?_.strict?l===c:l==c:f(l,c,_)};function p(l){return l==null}function h(l){return!(!l||typeof l!="object"||typeof l.length!="number"||typeof l.copy!="function"||typeof l.slice!="function"||l.length>0&&typeof l[0]!="number")}function f(l,c,_){var v,b;if(p(l)||p(c)||l.prototype!==c.prototype)return!1;if(d(l))return d(c)?(l=r.call(l),c=r.call(c),u(l,c,_)):!1;if(h(l)){if(!h(c)||l.length!==c.length)return!1;for(v=0;v<l.length;v++)if(l[v]!==c[v])return!1;return!0}try{var g=s(l),y=s(c)}catch{return!1}if(g.length!=y.length)return!1;for(g.sort(),y.sort(),v=g.length-1;v>=0;v--)if(g[v]!=y[v])return!1;for(v=g.length-1;v>=0;v--)if(b=g[v],!u(l[b],c[b],_))return!1;return typeof l==typeof c}},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=a(1),s=function(){function d(u,p,h){h===void 0&&(h={}),this.attrName=u,this.keyName=p;var f=r.Scope.TYPE&r.Scope.ATTRIBUTE;h.scope!=null?this.scope=h.scope&r.Scope.LEVEL|f:this.scope=r.Scope.ATTRIBUTE,h.whitelist!=null&&(this.whitelist=h.whitelist)}return d.keys=function(u){return[].map.call(u.attributes,function(p){return p.name})},d.prototype.add=function(u,p){return this.canAdd(u,p)?(u.setAttribute(this.keyName,p),!0):!1},d.prototype.canAdd=function(u,p){var h=r.query(u,r.Scope.BLOT&(this.scope|r.Scope.TYPE));return h==null?!1:this.whitelist==null?!0:typeof p=="string"?this.whitelist.indexOf(p.replace(/["']/g,""))>-1:this.whitelist.indexOf(p)>-1},d.prototype.remove=function(u){u.removeAttribute(this.keyName)},d.prototype.value=function(u){var p=u.getAttribute(this.keyName);return this.canAdd(u,p)&&p?p:""},d}();o.default=s},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.default=o.Code=void 0;var r=function(){function T(M,E){var C=[],O=!0,x=!1,P=void 0;try{for(var q=M[Symbol.iterator](),G;!(O=(G=q.next()).done)&&(C.push(G.value),!(E&&C.length===E));O=!0);}catch(W){x=!0,P=W}finally{try{!O&&q.return&&q.return()}finally{if(x)throw P}}return C}return function(M,E){if(Array.isArray(M))return M;if(Symbol.iterator in Object(M))return T(M,E);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),s=function(){function T(M,E){for(var C=0;C<E.length;C++){var O=E[C];O.enumerable=O.enumerable||!1,O.configurable=!0,"value"in O&&(O.writable=!0),Object.defineProperty(M,O.key,O)}}return function(M,E,C){return E&&T(M.prototype,E),C&&T(M,C),M}}(),d=function T(M,E,C){M===null&&(M=Function.prototype);var O=Object.getOwnPropertyDescriptor(M,E);if(O===void 0){var x=Object.getPrototypeOf(M);return x===null?void 0:T(x,E,C)}else{if("value"in O)return O.value;var P=O.get;return P===void 0?void 0:P.call(C)}},u=a(2),p=y(u),h=a(0),f=y(h),l=a(4),c=y(l),_=a(6),v=y(_),b=a(7),g=y(b);function y(T){return T&&T.__esModule?T:{default:T}}function w(T,M){if(!(T instanceof M))throw new TypeError("Cannot call a class as a function")}function m(T,M){if(!T)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return M&&(typeof M=="object"||typeof M=="function")?M:T}function k(T,M){if(typeof M!="function"&&M!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof M);T.prototype=Object.create(M&&M.prototype,{constructor:{value:T,enumerable:!1,writable:!0,configurable:!0}}),M&&(Object.setPrototypeOf?Object.setPrototypeOf(T,M):T.__proto__=M)}var N=function(T){k(M,T);function M(){return w(this,M),m(this,(M.__proto__||Object.getPrototypeOf(M)).apply(this,arguments))}return M}(v.default);N.blotName="code",N.tagName="CODE";var S=function(T){k(M,T);function M(){return w(this,M),m(this,(M.__proto__||Object.getPrototypeOf(M)).apply(this,arguments))}return s(M,[{key:"delta",value:function(){var C=this,O=this.domNode.textContent;return O.endsWith(`
|
|
96
|
+
*/(function(t,n){(function(o,a){t.exports=a()})(typeof self<"u"?self:je,function(){return function(e){var o={};function a(r){if(o[r])return o[r].exports;var s=o[r]={i:r,l:!1,exports:{}};return e[r].call(s.exports,s,s.exports,a),s.l=!0,s.exports}return a.m=e,a.c=o,a.d=function(r,s,l){a.o(r,s)||Object.defineProperty(r,s,{configurable:!1,enumerable:!0,get:l})},a.n=function(r){var s=r&&r.__esModule?function(){return r.default}:function(){return r};return a.d(s,"a",s),s},a.o=function(r,s){return Object.prototype.hasOwnProperty.call(r,s)},a.p="",a(a.s=109)}([function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=a(17),s=a(18),l=a(19),u=a(45),d=a(46),p=a(47),f=a(48),c=a(49),h=a(12),v=a(32),m=a(33),_=a(31),y=a(1),g={Scope:y.Scope,create:y.create,find:y.find,query:y.query,register:y.register,Container:r.default,Format:s.default,Leaf:l.default,Embed:f.default,Scroll:u.default,Block:p.default,Inline:d.default,Text:c.default,Attributor:{Attribute:h.default,Class:v.default,Style:m.default,Store:_.default}};o.default=g},function(e,o,a){var r=this&&this.__extends||function(){var _=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(y,g){y.__proto__=g}||function(y,g){for(var w in g)g.hasOwnProperty(w)&&(y[w]=g[w])};return function(y,g){_(y,g);function w(){this.constructor=y}y.prototype=g===null?Object.create(g):(w.prototype=g.prototype,new w)}}();Object.defineProperty(o,"__esModule",{value:!0});var s=function(_){r(y,_);function y(g){var w=this;return g="[Parchment] "+g,w=_.call(this,g)||this,w.message=g,w.name=w.constructor.name,w}return y}(Error);o.ParchmentError=s;var l={},u={},d={},p={};o.DATA_KEY="__blot";var f;(function(_){_[_.TYPE=3]="TYPE",_[_.LEVEL=12]="LEVEL",_[_.ATTRIBUTE=13]="ATTRIBUTE",_[_.BLOT=14]="BLOT",_[_.INLINE=7]="INLINE",_[_.BLOCK=11]="BLOCK",_[_.BLOCK_BLOT=10]="BLOCK_BLOT",_[_.INLINE_BLOT=6]="INLINE_BLOT",_[_.BLOCK_ATTRIBUTE=9]="BLOCK_ATTRIBUTE",_[_.INLINE_ATTRIBUTE=5]="INLINE_ATTRIBUTE",_[_.ANY=15]="ANY"})(f=o.Scope||(o.Scope={}));function c(_,y){var g=v(_);if(g==null)throw new s("Unable to create "+_+" blot");var w=g,b=_ instanceof Node||_.nodeType===Node.TEXT_NODE?_:w.create(y);return new w(b,y)}o.create=c;function h(_,y){return y===void 0&&(y=!1),_==null?null:_[o.DATA_KEY]!=null?_[o.DATA_KEY].blot:y?h(_.parentNode,y):null}o.find=h;function v(_,y){y===void 0&&(y=f.ANY);var g;if(typeof _=="string")g=p[_]||l[_];else if(_ instanceof Text||_.nodeType===Node.TEXT_NODE)g=p.text;else if(typeof _=="number")_&f.LEVEL&f.BLOCK?g=p.block:_&f.LEVEL&f.INLINE&&(g=p.inline);else if(_ instanceof HTMLElement){var w=(_.getAttribute("class")||"").split(/\s+/);for(var b in w)if(g=u[w[b]],g)break;g=g||d[_.tagName]}return g==null?null:y&f.LEVEL&g.scope&&y&f.TYPE&g.scope?g:null}o.query=v;function m(){for(var _=[],y=0;y<arguments.length;y++)_[y]=arguments[y];if(_.length>1)return _.map(function(b){return m(b)});var g=_[0];if(typeof g.blotName!="string"&&typeof g.attrName!="string")throw new s("Invalid definition");if(g.blotName==="abstract")throw new s("Cannot register abstract class");if(p[g.blotName||g.attrName]=g,typeof g.keyName=="string")l[g.keyName]=g;else if(g.className!=null&&(u[g.className]=g),g.tagName!=null){Array.isArray(g.tagName)?g.tagName=g.tagName.map(function(b){return b.toUpperCase()}):g.tagName=g.tagName.toUpperCase();var w=Array.isArray(g.tagName)?g.tagName:[g.tagName];w.forEach(function(b){(d[b]==null||g.className==null)&&(d[b]=g)})}return g}o.register=m},function(e,o,a){var r=a(51),s=a(11),l=a(3),u=a(20),d=String.fromCharCode(0),p=function(f){Array.isArray(f)?this.ops=f:f!=null&&Array.isArray(f.ops)?this.ops=f.ops:this.ops=[]};p.prototype.insert=function(f,c){var h={};return f.length===0?this:(h.insert=f,c!=null&&typeof c=="object"&&Object.keys(c).length>0&&(h.attributes=c),this.push(h))},p.prototype.delete=function(f){return f<=0?this:this.push({delete:f})},p.prototype.retain=function(f,c){if(f<=0)return this;var h={retain:f};return c!=null&&typeof c=="object"&&Object.keys(c).length>0&&(h.attributes=c),this.push(h)},p.prototype.push=function(f){var c=this.ops.length,h=this.ops[c-1];if(f=l(!0,{},f),typeof h=="object"){if(typeof f.delete=="number"&&typeof h.delete=="number")return this.ops[c-1]={delete:h.delete+f.delete},this;if(typeof h.delete=="number"&&f.insert!=null&&(c-=1,h=this.ops[c-1],typeof h!="object"))return this.ops.unshift(f),this;if(s(f.attributes,h.attributes)){if(typeof f.insert=="string"&&typeof h.insert=="string")return this.ops[c-1]={insert:h.insert+f.insert},typeof f.attributes=="object"&&(this.ops[c-1].attributes=f.attributes),this;if(typeof f.retain=="number"&&typeof h.retain=="number")return this.ops[c-1]={retain:h.retain+f.retain},typeof f.attributes=="object"&&(this.ops[c-1].attributes=f.attributes),this}}return c===this.ops.length?this.ops.push(f):this.ops.splice(c,0,f),this},p.prototype.chop=function(){var f=this.ops[this.ops.length-1];return f&&f.retain&&!f.attributes&&this.ops.pop(),this},p.prototype.filter=function(f){return this.ops.filter(f)},p.prototype.forEach=function(f){this.ops.forEach(f)},p.prototype.map=function(f){return this.ops.map(f)},p.prototype.partition=function(f){var c=[],h=[];return this.forEach(function(v){var m=f(v)?c:h;m.push(v)}),[c,h]},p.prototype.reduce=function(f,c){return this.ops.reduce(f,c)},p.prototype.changeLength=function(){return this.reduce(function(f,c){return c.insert?f+u.length(c):c.delete?f-c.delete:f},0)},p.prototype.length=function(){return this.reduce(function(f,c){return f+u.length(c)},0)},p.prototype.slice=function(f,c){f=f||0,typeof c!="number"&&(c=1/0);for(var h=[],v=u.iterator(this.ops),m=0;m<c&&v.hasNext();){var _;m<f?_=v.next(f-m):(_=v.next(c-m),h.push(_)),m+=u.length(_)}return new p(h)},p.prototype.compose=function(f){var c=u.iterator(this.ops),h=u.iterator(f.ops),v=[],m=h.peek();if(m!=null&&typeof m.retain=="number"&&m.attributes==null){for(var _=m.retain;c.peekType()==="insert"&&c.peekLength()<=_;)_-=c.peekLength(),v.push(c.next());m.retain-_>0&&h.next(m.retain-_)}for(var y=new p(v);c.hasNext()||h.hasNext();)if(h.peekType()==="insert")y.push(h.next());else if(c.peekType()==="delete")y.push(c.next());else{var g=Math.min(c.peekLength(),h.peekLength()),w=c.next(g),b=h.next(g);if(typeof b.retain=="number"){var k={};typeof w.retain=="number"?k.retain=g:k.insert=w.insert;var T=u.attributes.compose(w.attributes,b.attributes,typeof w.retain=="number");if(T&&(k.attributes=T),y.push(k),!h.hasNext()&&s(y.ops[y.ops.length-1],k)){var S=new p(c.rest());return y.concat(S).chop()}}else typeof b.delete=="number"&&typeof w.retain=="number"&&y.push(b)}return y.chop()},p.prototype.concat=function(f){var c=new p(this.ops.slice());return f.ops.length>0&&(c.push(f.ops[0]),c.ops=c.ops.concat(f.ops.slice(1))),c},p.prototype.diff=function(f,c){if(this.ops===f.ops)return new p;var h=[this,f].map(function(g){return g.map(function(w){if(w.insert!=null)return typeof w.insert=="string"?w.insert:d;var b=g===f?"on":"with";throw new Error("diff() called "+b+" non-document")}).join("")}),v=new p,m=r(h[0],h[1],c),_=u.iterator(this.ops),y=u.iterator(f.ops);return m.forEach(function(g){for(var w=g[1].length;w>0;){var b=0;switch(g[0]){case r.INSERT:b=Math.min(y.peekLength(),w),v.push(y.next(b));break;case r.DELETE:b=Math.min(w,_.peekLength()),_.next(b),v.delete(b);break;case r.EQUAL:b=Math.min(_.peekLength(),y.peekLength(),w);var k=_.next(b),T=y.next(b);s(k.insert,T.insert)?v.retain(b,u.attributes.diff(k.attributes,T.attributes)):v.push(T).delete(b);break}w-=b}}),v.chop()},p.prototype.eachLine=function(f,c){c=c||`
|
|
97
|
+
`;for(var h=u.iterator(this.ops),v=new p,m=0;h.hasNext();){if(h.peekType()!=="insert")return;var _=h.peek(),y=u.length(_)-h.peekLength(),g=typeof _.insert=="string"?_.insert.indexOf(c,y)-y:-1;if(g<0)v.push(h.next());else if(g>0)v.push(h.next(g));else{if(f(v,h.next(1).attributes||{},m)===!1)return;m+=1,v=new p}}v.length()>0&&f(v,{},m)},p.prototype.transform=function(f,c){if(c=!!c,typeof f=="number")return this.transformPosition(f,c);for(var h=u.iterator(this.ops),v=u.iterator(f.ops),m=new p;h.hasNext()||v.hasNext();)if(h.peekType()==="insert"&&(c||v.peekType()!=="insert"))m.retain(u.length(h.next()));else if(v.peekType()==="insert")m.push(v.next());else{var _=Math.min(h.peekLength(),v.peekLength()),y=h.next(_),g=v.next(_);if(y.delete)continue;g.delete?m.push(g):m.retain(_,u.attributes.transform(y.attributes,g.attributes,c))}return m.chop()},p.prototype.transformPosition=function(f,c){c=!!c;for(var h=u.iterator(this.ops),v=0;h.hasNext()&&v<=f;){var m=h.peekLength(),_=h.peekType();if(h.next(),_==="delete"){f-=Math.min(m,f-v);continue}else _==="insert"&&(v<f||!c)&&(f+=m);v+=m}return f},e.exports=p},function(e,o){var a=Object.prototype.hasOwnProperty,r=Object.prototype.toString,s=Object.defineProperty,l=Object.getOwnPropertyDescriptor,u=function(h){return typeof Array.isArray=="function"?Array.isArray(h):r.call(h)==="[object Array]"},d=function(h){if(!h||r.call(h)!=="[object Object]")return!1;var v=a.call(h,"constructor"),m=h.constructor&&h.constructor.prototype&&a.call(h.constructor.prototype,"isPrototypeOf");if(h.constructor&&!v&&!m)return!1;var _;for(_ in h);return typeof _>"u"||a.call(h,_)},p=function(h,v){s&&v.name==="__proto__"?s(h,v.name,{enumerable:!0,configurable:!0,value:v.newValue,writable:!0}):h[v.name]=v.newValue},f=function(h,v){if(v==="__proto__")if(a.call(h,v)){if(l)return l(h,v).value}else return;return h[v]};e.exports=function c(){var h,v,m,_,y,g,w=arguments[0],b=1,k=arguments.length,T=!1;for(typeof w=="boolean"&&(T=w,w=arguments[1]||{},b=2),(w==null||typeof w!="object"&&typeof w!="function")&&(w={});b<k;++b)if(h=arguments[b],h!=null)for(v in h)m=f(w,v),_=f(h,v),w!==_&&(T&&_&&(d(_)||(y=u(_)))?(y?(y=!1,g=m&&u(m)?m:[]):g=m&&d(m)?m:{},p(w,{name:v,newValue:c(T,g,_)})):typeof _<"u"&&p(w,{name:v,newValue:_}));return w}},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.default=o.BlockEmbed=o.bubbleFormats=void 0;var r=function(){function C(O,N){for(var R=0;R<N.length;R++){var q=N[R];q.enumerable=q.enumerable||!1,q.configurable=!0,"value"in q&&(q.writable=!0),Object.defineProperty(O,q.key,q)}}return function(O,N,R){return N&&C(O.prototype,N),R&&C(O,R),O}}(),s=function C(O,N,R){O===null&&(O=Function.prototype);var q=Object.getOwnPropertyDescriptor(O,N);if(q===void 0){var W=Object.getPrototypeOf(O);return W===null?void 0:C(W,N,R)}else{if("value"in q)return q.value;var Y=q.get;return Y===void 0?void 0:Y.call(R)}},l=a(3),u=w(l),d=a(2),p=w(d),f=a(0),c=w(f),h=a(16),v=w(h),m=a(6),_=w(m),y=a(7),g=w(y);function w(C){return C&&C.__esModule?C:{default:C}}function b(C,O){if(!(C instanceof O))throw new TypeError("Cannot call a class as a function")}function k(C,O){if(!C)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return O&&(typeof O=="object"||typeof O=="function")?O:C}function T(C,O){if(typeof O!="function"&&O!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof O);C.prototype=Object.create(O&&O.prototype,{constructor:{value:C,enumerable:!1,writable:!0,configurable:!0}}),O&&(Object.setPrototypeOf?Object.setPrototypeOf(C,O):C.__proto__=O)}var S=1,x=function(C){T(O,C);function O(){return b(this,O),k(this,(O.__proto__||Object.getPrototypeOf(O)).apply(this,arguments))}return r(O,[{key:"attach",value:function(){s(O.prototype.__proto__||Object.getPrototypeOf(O.prototype),"attach",this).call(this),this.attributes=new c.default.Attributor.Store(this.domNode)}},{key:"delta",value:function(){return new p.default().insert(this.value(),(0,u.default)(this.formats(),this.attributes.values()))}},{key:"format",value:function(R,q){var W=c.default.query(R,c.default.Scope.BLOCK_ATTRIBUTE);W!=null&&this.attributes.attribute(W,q)}},{key:"formatAt",value:function(R,q,W,Y){this.format(W,Y)}},{key:"insertAt",value:function(R,q,W){if(typeof q=="string"&&q.endsWith(`
|
|
98
|
+
`)){var Y=c.default.create(B.blotName);this.parent.insertBefore(Y,R===0?this:this.next),Y.insertAt(0,q.slice(0,-1))}else s(O.prototype.__proto__||Object.getPrototypeOf(O.prototype),"insertAt",this).call(this,R,q,W)}}]),O}(c.default.Embed);x.scope=c.default.Scope.BLOCK_BLOT;var B=function(C){T(O,C);function O(N){b(this,O);var R=k(this,(O.__proto__||Object.getPrototypeOf(O)).call(this,N));return R.cache={},R}return r(O,[{key:"delta",value:function(){return this.cache.delta==null&&(this.cache.delta=this.descendants(c.default.Leaf).reduce(function(R,q){return q.length()===0?R:R.insert(q.value(),E(q))},new p.default).insert(`
|
|
99
|
+
`,E(this))),this.cache.delta}},{key:"deleteAt",value:function(R,q){s(O.prototype.__proto__||Object.getPrototypeOf(O.prototype),"deleteAt",this).call(this,R,q),this.cache={}}},{key:"formatAt",value:function(R,q,W,Y){q<=0||(c.default.query(W,c.default.Scope.BLOCK)?R+q===this.length()&&this.format(W,Y):s(O.prototype.__proto__||Object.getPrototypeOf(O.prototype),"formatAt",this).call(this,R,Math.min(q,this.length()-R-1),W,Y),this.cache={})}},{key:"insertAt",value:function(R,q,W){if(W!=null)return s(O.prototype.__proto__||Object.getPrototypeOf(O.prototype),"insertAt",this).call(this,R,q,W);if(q.length!==0){var Y=q.split(`
|
|
100
|
+
`),re=Y.shift();re.length>0&&(R<this.length()-1||this.children.tail==null?s(O.prototype.__proto__||Object.getPrototypeOf(O.prototype),"insertAt",this).call(this,Math.min(R,this.length()-1),re):this.children.tail.insertAt(this.children.tail.length(),re),this.cache={});var K=this;Y.reduce(function(V,D){return K=K.split(V,!0),K.insertAt(0,D),D.length},R+re.length)}}},{key:"insertBefore",value:function(R,q){var W=this.children.head;s(O.prototype.__proto__||Object.getPrototypeOf(O.prototype),"insertBefore",this).call(this,R,q),W instanceof v.default&&W.remove(),this.cache={}}},{key:"length",value:function(){return this.cache.length==null&&(this.cache.length=s(O.prototype.__proto__||Object.getPrototypeOf(O.prototype),"length",this).call(this)+S),this.cache.length}},{key:"moveChildren",value:function(R,q){s(O.prototype.__proto__||Object.getPrototypeOf(O.prototype),"moveChildren",this).call(this,R,q),this.cache={}}},{key:"optimize",value:function(R){s(O.prototype.__proto__||Object.getPrototypeOf(O.prototype),"optimize",this).call(this,R),this.cache={}}},{key:"path",value:function(R){return s(O.prototype.__proto__||Object.getPrototypeOf(O.prototype),"path",this).call(this,R,!0)}},{key:"removeChild",value:function(R){s(O.prototype.__proto__||Object.getPrototypeOf(O.prototype),"removeChild",this).call(this,R),this.cache={}}},{key:"split",value:function(R){var q=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1;if(q&&(R===0||R>=this.length()-S)){var W=this.clone();return R===0?(this.parent.insertBefore(W,this),this):(this.parent.insertBefore(W,this.next),W)}else{var Y=s(O.prototype.__proto__||Object.getPrototypeOf(O.prototype),"split",this).call(this,R,q);return this.cache={},Y}}}]),O}(c.default.Block);B.blotName="block",B.tagName="P",B.defaultChild="break",B.allowedChildren=[_.default,c.default.Embed,g.default];function E(C){var O=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};return C==null||(typeof C.formats=="function"&&(O=(0,u.default)(O,C.formats())),C.parent==null||C.parent.blotName=="scroll"||C.parent.statics.scope!==C.statics.scope)?O:E(C.parent,O)}o.bubbleFormats=E,o.BlockEmbed=x,o.default=B},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.default=o.overload=o.expandConfig=void 0;var r=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(K){return typeof K}:function(K){return K&&typeof Symbol=="function"&&K.constructor===Symbol&&K!==Symbol.prototype?"symbol":typeof K},s=function(){function K(V,D){var A=[],I=!0,U=!1,F=void 0;try{for(var L=V[Symbol.iterator](),z;!(I=(z=L.next()).done)&&(A.push(z.value),!(D&&A.length===D));I=!0);}catch(Z){U=!0,F=Z}finally{try{!I&&L.return&&L.return()}finally{if(U)throw F}}return A}return function(V,D){if(Array.isArray(V))return V;if(Symbol.iterator in Object(V))return K(V,D);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),l=function(){function K(V,D){for(var A=0;A<D.length;A++){var I=D[A];I.enumerable=I.enumerable||!1,I.configurable=!0,"value"in I&&(I.writable=!0),Object.defineProperty(V,I.key,I)}}return function(V,D,A){return D&&K(V.prototype,D),A&&K(V,A),V}}();a(50);var u=a(2),d=E(u),p=a(14),f=E(p),c=a(8),h=E(c),v=a(9),m=E(v),_=a(0),y=E(_),g=a(15),w=E(g),b=a(3),k=E(b),T=a(10),S=E(T),x=a(34),B=E(x);function E(K){return K&&K.__esModule?K:{default:K}}function C(K,V,D){return V in K?Object.defineProperty(K,V,{value:D,enumerable:!0,configurable:!0,writable:!0}):K[V]=D,K}function O(K,V){if(!(K instanceof V))throw new TypeError("Cannot call a class as a function")}var N=(0,S.default)("quill"),R=function(){l(K,null,[{key:"debug",value:function(D){D===!0&&(D="log"),S.default.level(D)}},{key:"find",value:function(D){return D.__quill||y.default.find(D)}},{key:"import",value:function(D){return this.imports[D]==null&&N.error("Cannot import "+D+". Are you sure it was registered?"),this.imports[D]}},{key:"register",value:function(D,A){var I=this,U=arguments.length>2&&arguments[2]!==void 0?arguments[2]:!1;if(typeof D!="string"){var F=D.attrName||D.blotName;typeof F=="string"?this.register("formats/"+F,D,A):Object.keys(D).forEach(function(L){I.register(L,D[L],A)})}else this.imports[D]!=null&&!U&&N.warn("Overwriting "+D+" with",A),this.imports[D]=A,(D.startsWith("blots/")||D.startsWith("formats/"))&&A.blotName!=="abstract"?y.default.register(A):D.startsWith("modules")&&typeof A.register=="function"&&A.register()}}]);function K(V){var D=this,A=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};if(O(this,K),this.options=q(V,A),this.container=this.options.container,this.container==null)return N.error("Invalid Quill container",V);this.options.debug&&K.debug(this.options.debug);var I=this.container.innerHTML.trim();this.container.classList.add("ql-container"),this.container.innerHTML="",this.container.__quill=this,this.root=this.addContainer("ql-editor"),this.root.classList.add("ql-blank"),this.root.setAttribute("data-gramm",!1),this.scrollingContainer=this.options.scrollingContainer||this.root,this.emitter=new h.default,this.scroll=y.default.create(this.root,{emitter:this.emitter,whitelist:this.options.formats}),this.editor=new f.default(this.scroll),this.selection=new w.default(this.scroll,this.emitter),this.theme=new this.options.theme(this,this.options),this.keyboard=this.theme.addModule("keyboard"),this.clipboard=this.theme.addModule("clipboard"),this.history=this.theme.addModule("history"),this.theme.init(),this.emitter.on(h.default.events.EDITOR_CHANGE,function(F){F===h.default.events.TEXT_CHANGE&&D.root.classList.toggle("ql-blank",D.editor.isBlank())}),this.emitter.on(h.default.events.SCROLL_UPDATE,function(F,L){var z=D.selection.lastRange,Z=z&&z.length===0?z.index:void 0;W.call(D,function(){return D.editor.update(null,L,Z)},F)});var U=this.clipboard.convert(`<div class='ql-editor' style="white-space: normal;">`+I+"<p><br></p></div>");this.setContents(U),this.history.clear(),this.options.placeholder&&this.root.setAttribute("data-placeholder",this.options.placeholder),this.options.readOnly&&this.disable()}return l(K,[{key:"addContainer",value:function(D){var A=arguments.length>1&&arguments[1]!==void 0?arguments[1]:null;if(typeof D=="string"){var I=D;D=document.createElement("div"),D.classList.add(I)}return this.container.insertBefore(D,A),D}},{key:"blur",value:function(){this.selection.setRange(null)}},{key:"deleteText",value:function(D,A,I){var U=this,F=Y(D,A,I),L=s(F,4);return D=L[0],A=L[1],I=L[3],W.call(this,function(){return U.editor.deleteText(D,A)},I,D,-1*A)}},{key:"disable",value:function(){this.enable(!1)}},{key:"enable",value:function(){var D=arguments.length>0&&arguments[0]!==void 0?arguments[0]:!0;this.scroll.enable(D),this.container.classList.toggle("ql-disabled",!D)}},{key:"focus",value:function(){var D=this.scrollingContainer.scrollTop;this.selection.focus(),this.scrollingContainer.scrollTop=D,this.scrollIntoView()}},{key:"format",value:function(D,A){var I=this,U=arguments.length>2&&arguments[2]!==void 0?arguments[2]:h.default.sources.API;return W.call(this,function(){var F=I.getSelection(!0),L=new d.default;if(F==null)return L;if(y.default.query(D,y.default.Scope.BLOCK))L=I.editor.formatLine(F.index,F.length,C({},D,A));else{if(F.length===0)return I.selection.format(D,A),L;L=I.editor.formatText(F.index,F.length,C({},D,A))}return I.setSelection(F,h.default.sources.SILENT),L},U)}},{key:"formatLine",value:function(D,A,I,U,F){var L=this,z=void 0,Z=Y(D,A,I,U,F),J=s(Z,4);return D=J[0],A=J[1],z=J[2],F=J[3],W.call(this,function(){return L.editor.formatLine(D,A,z)},F,D,0)}},{key:"formatText",value:function(D,A,I,U,F){var L=this,z=void 0,Z=Y(D,A,I,U,F),J=s(Z,4);return D=J[0],A=J[1],z=J[2],F=J[3],W.call(this,function(){return L.editor.formatText(D,A,z)},F,D,0)}},{key:"getBounds",value:function(D){var A=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0,I=void 0;typeof D=="number"?I=this.selection.getBounds(D,A):I=this.selection.getBounds(D.index,D.length);var U=this.container.getBoundingClientRect();return{bottom:I.bottom-U.top,height:I.height,left:I.left-U.left,right:I.right-U.left,top:I.top-U.top,width:I.width}}},{key:"getContents",value:function(){var D=arguments.length>0&&arguments[0]!==void 0?arguments[0]:0,A=arguments.length>1&&arguments[1]!==void 0?arguments[1]:this.getLength()-D,I=Y(D,A),U=s(I,2);return D=U[0],A=U[1],this.editor.getContents(D,A)}},{key:"getFormat",value:function(){var D=arguments.length>0&&arguments[0]!==void 0?arguments[0]:this.getSelection(!0),A=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0;return typeof D=="number"?this.editor.getFormat(D,A):this.editor.getFormat(D.index,D.length)}},{key:"getIndex",value:function(D){return D.offset(this.scroll)}},{key:"getLength",value:function(){return this.scroll.length()}},{key:"getLeaf",value:function(D){return this.scroll.leaf(D)}},{key:"getLine",value:function(D){return this.scroll.line(D)}},{key:"getLines",value:function(){var D=arguments.length>0&&arguments[0]!==void 0?arguments[0]:0,A=arguments.length>1&&arguments[1]!==void 0?arguments[1]:Number.MAX_VALUE;return typeof D!="number"?this.scroll.lines(D.index,D.length):this.scroll.lines(D,A)}},{key:"getModule",value:function(D){return this.theme.modules[D]}},{key:"getSelection",value:function(){var D=arguments.length>0&&arguments[0]!==void 0?arguments[0]:!1;return D&&this.focus(),this.update(),this.selection.getRange()[0]}},{key:"getText",value:function(){var D=arguments.length>0&&arguments[0]!==void 0?arguments[0]:0,A=arguments.length>1&&arguments[1]!==void 0?arguments[1]:this.getLength()-D,I=Y(D,A),U=s(I,2);return D=U[0],A=U[1],this.editor.getText(D,A)}},{key:"hasFocus",value:function(){return this.selection.hasFocus()}},{key:"insertEmbed",value:function(D,A,I){var U=this,F=arguments.length>3&&arguments[3]!==void 0?arguments[3]:K.sources.API;return W.call(this,function(){return U.editor.insertEmbed(D,A,I)},F,D)}},{key:"insertText",value:function(D,A,I,U,F){var L=this,z=void 0,Z=Y(D,0,I,U,F),J=s(Z,4);return D=J[0],z=J[2],F=J[3],W.call(this,function(){return L.editor.insertText(D,A,z)},F,D,A.length)}},{key:"isEnabled",value:function(){return!this.container.classList.contains("ql-disabled")}},{key:"off",value:function(){return this.emitter.off.apply(this.emitter,arguments)}},{key:"on",value:function(){return this.emitter.on.apply(this.emitter,arguments)}},{key:"once",value:function(){return this.emitter.once.apply(this.emitter,arguments)}},{key:"pasteHTML",value:function(D,A,I){this.clipboard.dangerouslyPasteHTML(D,A,I)}},{key:"removeFormat",value:function(D,A,I){var U=this,F=Y(D,A,I),L=s(F,4);return D=L[0],A=L[1],I=L[3],W.call(this,function(){return U.editor.removeFormat(D,A)},I,D)}},{key:"scrollIntoView",value:function(){this.selection.scrollIntoView(this.scrollingContainer)}},{key:"setContents",value:function(D){var A=this,I=arguments.length>1&&arguments[1]!==void 0?arguments[1]:h.default.sources.API;return W.call(this,function(){D=new d.default(D);var U=A.getLength(),F=A.editor.deleteText(0,U),L=A.editor.applyDelta(D),z=L.ops[L.ops.length-1];z!=null&&typeof z.insert=="string"&&z.insert[z.insert.length-1]===`
|
|
101
|
+
`&&(A.editor.deleteText(A.getLength()-1,1),L.delete(1));var Z=F.compose(L);return Z},I)}},{key:"setSelection",value:function(D,A,I){if(D==null)this.selection.setRange(null,A||K.sources.API);else{var U=Y(D,A,I),F=s(U,4);D=F[0],A=F[1],I=F[3],this.selection.setRange(new g.Range(D,A),I),I!==h.default.sources.SILENT&&this.selection.scrollIntoView(this.scrollingContainer)}}},{key:"setText",value:function(D){var A=arguments.length>1&&arguments[1]!==void 0?arguments[1]:h.default.sources.API,I=new d.default().insert(D);return this.setContents(I,A)}},{key:"update",value:function(){var D=arguments.length>0&&arguments[0]!==void 0?arguments[0]:h.default.sources.USER,A=this.scroll.update(D);return this.selection.update(D),A}},{key:"updateContents",value:function(D){var A=this,I=arguments.length>1&&arguments[1]!==void 0?arguments[1]:h.default.sources.API;return W.call(this,function(){return D=new d.default(D),A.editor.applyDelta(D,I)},I,!0)}}]),K}();R.DEFAULTS={bounds:null,formats:null,modules:{},placeholder:"",readOnly:!1,scrollingContainer:null,strict:!0,theme:"default"},R.events=h.default.events,R.sources=h.default.sources,R.version="1.3.7",R.imports={delta:d.default,parchment:y.default,"core/module":m.default,"core/theme":B.default};function q(K,V){if(V=(0,k.default)(!0,{container:K,modules:{clipboard:!0,keyboard:!0,history:!0}},V),!V.theme||V.theme===R.DEFAULTS.theme)V.theme=B.default;else if(V.theme=R.import("themes/"+V.theme),V.theme==null)throw new Error("Invalid theme "+V.theme+". Did you register it?");var D=(0,k.default)(!0,{},V.theme.DEFAULTS);[D,V].forEach(function(U){U.modules=U.modules||{},Object.keys(U.modules).forEach(function(F){U.modules[F]===!0&&(U.modules[F]={})})});var A=Object.keys(D.modules).concat(Object.keys(V.modules)),I=A.reduce(function(U,F){var L=R.import("modules/"+F);return L==null?N.error("Cannot load "+F+" module. Are you sure you registered it?"):U[F]=L.DEFAULTS||{},U},{});return V.modules!=null&&V.modules.toolbar&&V.modules.toolbar.constructor!==Object&&(V.modules.toolbar={container:V.modules.toolbar}),V=(0,k.default)(!0,{},R.DEFAULTS,{modules:I},D,V),["bounds","container","scrollingContainer"].forEach(function(U){typeof V[U]=="string"&&(V[U]=document.querySelector(V[U]))}),V.modules=Object.keys(V.modules).reduce(function(U,F){return V.modules[F]&&(U[F]=V.modules[F]),U},{}),V}function W(K,V,D,A){if(this.options.strict&&!this.isEnabled()&&V===h.default.sources.USER)return new d.default;var I=D==null?null:this.getSelection(),U=this.editor.delta,F=K();if(I!=null&&(D===!0&&(D=I.index),A==null?I=re(I,F,V):A!==0&&(I=re(I,D,A,V)),this.setSelection(I,h.default.sources.SILENT)),F.length()>0){var L,z=[h.default.events.TEXT_CHANGE,F,U,V];if((L=this.emitter).emit.apply(L,[h.default.events.EDITOR_CHANGE].concat(z)),V!==h.default.sources.SILENT){var Z;(Z=this.emitter).emit.apply(Z,z)}}return F}function Y(K,V,D,A,I){var U={};return typeof K.index=="number"&&typeof K.length=="number"?typeof V!="number"?(I=A,A=D,D=V,V=K.length,K=K.index):(V=K.length,K=K.index):typeof V!="number"&&(I=A,A=D,D=V,V=0),(typeof D>"u"?"undefined":r(D))==="object"?(U=D,I=A):typeof D=="string"&&(A!=null?U[D]=A:I=D),I=I||h.default.sources.API,[K,V,U,I]}function re(K,V,D,A){if(K==null)return null;var I=void 0,U=void 0;if(V instanceof d.default){var F=[K.index,K.index+K.length].map(function(J){return V.transformPosition(J,A!==h.default.sources.USER)}),L=s(F,2);I=L[0],U=L[1]}else{var z=[K.index,K.index+K.length].map(function(J){return J<V||J===V&&A===h.default.sources.USER?J:D>=0?J+D:Math.max(V,J+D)}),Z=s(z,2);I=Z[0],U=Z[1]}return new g.Range(I,U-I)}o.expandConfig=q,o.overload=Y,o.default=R},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=function(){function _(y,g){for(var w=0;w<g.length;w++){var b=g[w];b.enumerable=b.enumerable||!1,b.configurable=!0,"value"in b&&(b.writable=!0),Object.defineProperty(y,b.key,b)}}return function(y,g,w){return g&&_(y.prototype,g),w&&_(y,w),y}}(),s=function _(y,g,w){y===null&&(y=Function.prototype);var b=Object.getOwnPropertyDescriptor(y,g);if(b===void 0){var k=Object.getPrototypeOf(y);return k===null?void 0:_(k,g,w)}else{if("value"in b)return b.value;var T=b.get;return T===void 0?void 0:T.call(w)}},l=a(7),u=f(l),d=a(0),p=f(d);function f(_){return _&&_.__esModule?_:{default:_}}function c(_,y){if(!(_ instanceof y))throw new TypeError("Cannot call a class as a function")}function h(_,y){if(!_)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return y&&(typeof y=="object"||typeof y=="function")?y:_}function v(_,y){if(typeof y!="function"&&y!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof y);_.prototype=Object.create(y&&y.prototype,{constructor:{value:_,enumerable:!1,writable:!0,configurable:!0}}),y&&(Object.setPrototypeOf?Object.setPrototypeOf(_,y):_.__proto__=y)}var m=function(_){v(y,_);function y(){return c(this,y),h(this,(y.__proto__||Object.getPrototypeOf(y)).apply(this,arguments))}return r(y,[{key:"formatAt",value:function(w,b,k,T){if(y.compare(this.statics.blotName,k)<0&&p.default.query(k,p.default.Scope.BLOT)){var S=this.isolate(w,b);T&&S.wrap(k,T)}else s(y.prototype.__proto__||Object.getPrototypeOf(y.prototype),"formatAt",this).call(this,w,b,k,T)}},{key:"optimize",value:function(w){if(s(y.prototype.__proto__||Object.getPrototypeOf(y.prototype),"optimize",this).call(this,w),this.parent instanceof y&&y.compare(this.statics.blotName,this.parent.statics.blotName)>0){var b=this.parent.isolate(this.offset(),this.length());this.moveChildren(b),b.wrap(this)}}}],[{key:"compare",value:function(w,b){var k=y.order.indexOf(w),T=y.order.indexOf(b);return k>=0||T>=0?k-T:w===b?0:w<b?-1:1}}]),y}(p.default.Inline);m.allowedChildren=[m,p.default.Embed,u.default],m.order=["cursor","inline","underline","strike","italic","bold","script","link","code"],o.default=m},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=a(0),s=l(r);function l(c){return c&&c.__esModule?c:{default:c}}function u(c,h){if(!(c instanceof h))throw new TypeError("Cannot call a class as a function")}function d(c,h){if(!c)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return h&&(typeof h=="object"||typeof h=="function")?h:c}function p(c,h){if(typeof h!="function"&&h!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof h);c.prototype=Object.create(h&&h.prototype,{constructor:{value:c,enumerable:!1,writable:!0,configurable:!0}}),h&&(Object.setPrototypeOf?Object.setPrototypeOf(c,h):c.__proto__=h)}var f=function(c){p(h,c);function h(){return u(this,h),d(this,(h.__proto__||Object.getPrototypeOf(h)).apply(this,arguments))}return h}(s.default.Text);o.default=f},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=function(){function g(w,b){for(var k=0;k<b.length;k++){var T=b[k];T.enumerable=T.enumerable||!1,T.configurable=!0,"value"in T&&(T.writable=!0),Object.defineProperty(w,T.key,T)}}return function(w,b,k){return b&&g(w.prototype,b),k&&g(w,k),w}}(),s=function g(w,b,k){w===null&&(w=Function.prototype);var T=Object.getOwnPropertyDescriptor(w,b);if(T===void 0){var S=Object.getPrototypeOf(w);return S===null?void 0:g(S,b,k)}else{if("value"in T)return T.value;var x=T.get;return x===void 0?void 0:x.call(k)}},l=a(54),u=f(l),d=a(10),p=f(d);function f(g){return g&&g.__esModule?g:{default:g}}function c(g,w){if(!(g instanceof w))throw new TypeError("Cannot call a class as a function")}function h(g,w){if(!g)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return w&&(typeof w=="object"||typeof w=="function")?w:g}function v(g,w){if(typeof w!="function"&&w!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof w);g.prototype=Object.create(w&&w.prototype,{constructor:{value:g,enumerable:!1,writable:!0,configurable:!0}}),w&&(Object.setPrototypeOf?Object.setPrototypeOf(g,w):g.__proto__=w)}var m=(0,p.default)("quill:events"),_=["selectionchange","mousedown","mouseup","click"];_.forEach(function(g){document.addEventListener(g,function(){for(var w=arguments.length,b=Array(w),k=0;k<w;k++)b[k]=arguments[k];[].slice.call(document.querySelectorAll(".ql-container")).forEach(function(T){if(T.__quill&&T.__quill.emitter){var S;(S=T.__quill.emitter).handleDOM.apply(S,b)}})})});var y=function(g){v(w,g);function w(){c(this,w);var b=h(this,(w.__proto__||Object.getPrototypeOf(w)).call(this));return b.listeners={},b.on("error",m.error),b}return r(w,[{key:"emit",value:function(){m.log.apply(m,arguments),s(w.prototype.__proto__||Object.getPrototypeOf(w.prototype),"emit",this).apply(this,arguments)}},{key:"handleDOM",value:function(k){for(var T=arguments.length,S=Array(T>1?T-1:0),x=1;x<T;x++)S[x-1]=arguments[x];(this.listeners[k.type]||[]).forEach(function(B){var E=B.node,C=B.handler;(k.target===E||E.contains(k.target))&&C.apply(void 0,[k].concat(S))})}},{key:"listenDOM",value:function(k,T,S){this.listeners[k]||(this.listeners[k]=[]),this.listeners[k].push({node:T,handler:S})}}]),w}(u.default);y.events={EDITOR_CHANGE:"editor-change",SCROLL_BEFORE_UPDATE:"scroll-before-update",SCROLL_OPTIMIZE:"scroll-optimize",SCROLL_UPDATE:"scroll-update",SELECTION_CHANGE:"selection-change",TEXT_CHANGE:"text-change"},y.sources={API:"api",SILENT:"silent",USER:"user"},o.default=y},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});function r(l,u){if(!(l instanceof u))throw new TypeError("Cannot call a class as a function")}var s=function l(u){var d=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};r(this,l),this.quill=u,this.options=d};s.DEFAULTS={},o.default=s},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=["error","warn","log","info"],s="warn";function l(d){if(r.indexOf(d)<=r.indexOf(s)){for(var p,f=arguments.length,c=Array(f>1?f-1:0),h=1;h<f;h++)c[h-1]=arguments[h];(p=console)[d].apply(p,c)}}function u(d){return r.reduce(function(p,f){return p[f]=l.bind(console,f,d),p},{})}l.level=u.level=function(d){s=d},o.default=u},function(e,o,a){var r=Array.prototype.slice,s=a(52),l=a(53),u=e.exports=function(c,h,v){return v||(v={}),c===h?!0:c instanceof Date&&h instanceof Date?c.getTime()===h.getTime():!c||!h||typeof c!="object"&&typeof h!="object"?v.strict?c===h:c==h:f(c,h,v)};function d(c){return c==null}function p(c){return!(!c||typeof c!="object"||typeof c.length!="number"||typeof c.copy!="function"||typeof c.slice!="function"||c.length>0&&typeof c[0]!="number")}function f(c,h,v){var m,_;if(d(c)||d(h)||c.prototype!==h.prototype)return!1;if(l(c))return l(h)?(c=r.call(c),h=r.call(h),u(c,h,v)):!1;if(p(c)){if(!p(h)||c.length!==h.length)return!1;for(m=0;m<c.length;m++)if(c[m]!==h[m])return!1;return!0}try{var y=s(c),g=s(h)}catch{return!1}if(y.length!=g.length)return!1;for(y.sort(),g.sort(),m=y.length-1;m>=0;m--)if(y[m]!=g[m])return!1;for(m=y.length-1;m>=0;m--)if(_=y[m],!u(c[_],h[_],v))return!1;return typeof c==typeof h}},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=a(1),s=function(){function l(u,d,p){p===void 0&&(p={}),this.attrName=u,this.keyName=d;var f=r.Scope.TYPE&r.Scope.ATTRIBUTE;p.scope!=null?this.scope=p.scope&r.Scope.LEVEL|f:this.scope=r.Scope.ATTRIBUTE,p.whitelist!=null&&(this.whitelist=p.whitelist)}return l.keys=function(u){return[].map.call(u.attributes,function(d){return d.name})},l.prototype.add=function(u,d){return this.canAdd(u,d)?(u.setAttribute(this.keyName,d),!0):!1},l.prototype.canAdd=function(u,d){var p=r.query(u,r.Scope.BLOT&(this.scope|r.Scope.TYPE));return p==null?!1:this.whitelist==null?!0:typeof d=="string"?this.whitelist.indexOf(d.replace(/["']/g,""))>-1:this.whitelist.indexOf(d)>-1},l.prototype.remove=function(u){u.removeAttribute(this.keyName)},l.prototype.value=function(u){var d=u.getAttribute(this.keyName);return this.canAdd(u,d)&&d?d:""},l}();o.default=s},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.default=o.Code=void 0;var r=function(){function x(B,E){var C=[],O=!0,N=!1,R=void 0;try{for(var q=B[Symbol.iterator](),W;!(O=(W=q.next()).done)&&(C.push(W.value),!(E&&C.length===E));O=!0);}catch(Y){N=!0,R=Y}finally{try{!O&&q.return&&q.return()}finally{if(N)throw R}}return C}return function(B,E){if(Array.isArray(B))return B;if(Symbol.iterator in Object(B))return x(B,E);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),s=function(){function x(B,E){for(var C=0;C<E.length;C++){var O=E[C];O.enumerable=O.enumerable||!1,O.configurable=!0,"value"in O&&(O.writable=!0),Object.defineProperty(B,O.key,O)}}return function(B,E,C){return E&&x(B.prototype,E),C&&x(B,C),B}}(),l=function x(B,E,C){B===null&&(B=Function.prototype);var O=Object.getOwnPropertyDescriptor(B,E);if(O===void 0){var N=Object.getPrototypeOf(B);return N===null?void 0:x(N,E,C)}else{if("value"in O)return O.value;var R=O.get;return R===void 0?void 0:R.call(C)}},u=a(2),d=g(u),p=a(0),f=g(p),c=a(4),h=g(c),v=a(6),m=g(v),_=a(7),y=g(_);function g(x){return x&&x.__esModule?x:{default:x}}function w(x,B){if(!(x instanceof B))throw new TypeError("Cannot call a class as a function")}function b(x,B){if(!x)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return B&&(typeof B=="object"||typeof B=="function")?B:x}function k(x,B){if(typeof B!="function"&&B!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof B);x.prototype=Object.create(B&&B.prototype,{constructor:{value:x,enumerable:!1,writable:!0,configurable:!0}}),B&&(Object.setPrototypeOf?Object.setPrototypeOf(x,B):x.__proto__=B)}var T=function(x){k(B,x);function B(){return w(this,B),b(this,(B.__proto__||Object.getPrototypeOf(B)).apply(this,arguments))}return B}(m.default);T.blotName="code",T.tagName="CODE";var S=function(x){k(B,x);function B(){return w(this,B),b(this,(B.__proto__||Object.getPrototypeOf(B)).apply(this,arguments))}return s(B,[{key:"delta",value:function(){var C=this,O=this.domNode.textContent;return O.endsWith(`
|
|
99
102
|
`)&&(O=O.slice(0,-1)),O.split(`
|
|
100
|
-
`).reduce(function(
|
|
101
|
-
`,C.formats())},new
|
|
103
|
+
`).reduce(function(N,R){return N.insert(R).insert(`
|
|
104
|
+
`,C.formats())},new d.default)}},{key:"format",value:function(C,O){if(!(C===this.statics.blotName&&O)){var N=this.descendant(y.default,this.length()-1),R=r(N,1),q=R[0];q!=null&&q.deleteAt(q.length()-1,1),l(B.prototype.__proto__||Object.getPrototypeOf(B.prototype),"format",this).call(this,C,O)}}},{key:"formatAt",value:function(C,O,N,R){if(O!==0&&!(f.default.query(N,f.default.Scope.BLOCK)==null||N===this.statics.blotName&&R===this.statics.formats(this.domNode))){var q=this.newlineIndex(C);if(!(q<0||q>=C+O)){var W=this.newlineIndex(C,!0)+1,Y=q-W+1,re=this.isolate(W,Y),K=re.next;re.format(N,R),K instanceof B&&K.formatAt(0,C-W+O-Y,N,R)}}}},{key:"insertAt",value:function(C,O,N){if(N==null){var R=this.descendant(y.default,C),q=r(R,2),W=q[0],Y=q[1];W.insertAt(Y,O)}}},{key:"length",value:function(){var C=this.domNode.textContent.length;return this.domNode.textContent.endsWith(`
|
|
102
105
|
`)?C:C+1}},{key:"newlineIndex",value:function(C){var O=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1;if(O)return this.domNode.textContent.slice(0,C).lastIndexOf(`
|
|
103
|
-
`);var
|
|
104
|
-
`);return
|
|
106
|
+
`);var N=this.domNode.textContent.slice(C).indexOf(`
|
|
107
|
+
`);return N>-1?C+N:-1}},{key:"optimize",value:function(C){this.domNode.textContent.endsWith(`
|
|
105
108
|
`)||this.appendChild(f.default.create("text",`
|
|
106
|
-
`)),
|
|
107
|
-
`)&&
|
|
108
|
-
`)&&(
|
|
109
|
+
`)),l(B.prototype.__proto__||Object.getPrototypeOf(B.prototype),"optimize",this).call(this,C);var O=this.next;O!=null&&O.prev===this&&O.statics.blotName===this.statics.blotName&&this.statics.formats(this.domNode)===O.statics.formats(O.domNode)&&(O.optimize(C),O.moveChildren(this),O.remove())}},{key:"replace",value:function(C){l(B.prototype.__proto__||Object.getPrototypeOf(B.prototype),"replace",this).call(this,C),[].slice.call(this.domNode.querySelectorAll("*")).forEach(function(O){var N=f.default.find(O);N==null?O.parentNode.removeChild(O):N instanceof f.default.Embed?N.remove():N.unwrap()})}}],[{key:"create",value:function(C){var O=l(B.__proto__||Object.getPrototypeOf(B),"create",this).call(this,C);return O.setAttribute("spellcheck",!1),O}},{key:"formats",value:function(){return!0}}]),B}(h.default);S.blotName="code-block",S.tagName="PRE",S.TAB=" ",o.Code=T,o.default=S},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(K){return typeof K}:function(K){return K&&typeof Symbol=="function"&&K.constructor===Symbol&&K!==Symbol.prototype?"symbol":typeof K},s=function(){function K(V,D){var A=[],I=!0,U=!1,F=void 0;try{for(var L=V[Symbol.iterator](),z;!(I=(z=L.next()).done)&&(A.push(z.value),!(D&&A.length===D));I=!0);}catch(Z){U=!0,F=Z}finally{try{!I&&L.return&&L.return()}finally{if(U)throw F}}return A}return function(V,D){if(Array.isArray(V))return V;if(Symbol.iterator in Object(V))return K(V,D);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),l=function(){function K(V,D){for(var A=0;A<D.length;A++){var I=D[A];I.enumerable=I.enumerable||!1,I.configurable=!0,"value"in I&&(I.writable=!0),Object.defineProperty(V,I.key,I)}}return function(V,D,A){return D&&K(V.prototype,D),A&&K(V,A),V}}(),u=a(2),d=O(u),p=a(20),f=O(p),c=a(0),h=O(c),v=a(13),m=O(v),_=a(24),y=O(_),g=a(4),w=O(g),b=a(16),k=O(b),T=a(21),S=O(T),x=a(11),B=O(x),E=a(3),C=O(E);function O(K){return K&&K.__esModule?K:{default:K}}function N(K,V,D){return V in K?Object.defineProperty(K,V,{value:D,enumerable:!0,configurable:!0,writable:!0}):K[V]=D,K}function R(K,V){if(!(K instanceof V))throw new TypeError("Cannot call a class as a function")}var q=/^[ -~]*$/,W=function(){function K(V){R(this,K),this.scroll=V,this.delta=this.getDelta()}return l(K,[{key:"applyDelta",value:function(D){var A=this,I=!1;this.scroll.update();var U=this.scroll.length();return this.scroll.batchStart(),D=re(D),D.reduce(function(F,L){var z=L.retain||L.delete||L.insert.length||1,Z=L.attributes||{};if(L.insert!=null){if(typeof L.insert=="string"){var J=L.insert;J.endsWith(`
|
|
110
|
+
`)&&I&&(I=!1,J=J.slice(0,-1)),F>=U&&!J.endsWith(`
|
|
111
|
+
`)&&(I=!0),A.scroll.insertAt(F,J);var ne=A.scroll.line(F),ce=s(ne,2),he=ce[0],be=ce[1],ke=(0,C.default)({},(0,g.bubbleFormats)(he));if(he instanceof w.default){var Oe=he.descendant(h.default.Leaf,be),Re=s(Oe,1),Be=Re[0];ke=(0,C.default)(ke,(0,g.bubbleFormats)(Be))}Z=f.default.attributes.diff(ke,Z)||{}}else if(r(L.insert)==="object"){var Q=Object.keys(L.insert)[0];if(Q==null)return F;A.scroll.insertAt(F,Q,L.insert[Q])}U+=z}return Object.keys(Z).forEach(function(te){A.scroll.formatAt(F,z,te,Z[te])}),F+z},0),D.reduce(function(F,L){return typeof L.delete=="number"?(A.scroll.deleteAt(F,L.delete),F):F+(L.retain||L.insert.length||1)},0),this.scroll.batchEnd(),this.update(D)}},{key:"deleteText",value:function(D,A){return this.scroll.deleteAt(D,A),this.update(new d.default().retain(D).delete(A))}},{key:"formatLine",value:function(D,A){var I=this,U=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{};return this.scroll.update(),Object.keys(U).forEach(function(F){if(!(I.scroll.whitelist!=null&&!I.scroll.whitelist[F])){var L=I.scroll.lines(D,Math.max(A,1)),z=A;L.forEach(function(Z){var J=Z.length();if(!(Z instanceof m.default))Z.format(F,U[F]);else{var ne=D-Z.offset(I.scroll),ce=Z.newlineIndex(ne+z)-ne+1;Z.formatAt(ne,ce,F,U[F])}z-=J})}}),this.scroll.optimize(),this.update(new d.default().retain(D).retain(A,(0,S.default)(U)))}},{key:"formatText",value:function(D,A){var I=this,U=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{};return Object.keys(U).forEach(function(F){I.scroll.formatAt(D,A,F,U[F])}),this.update(new d.default().retain(D).retain(A,(0,S.default)(U)))}},{key:"getContents",value:function(D,A){return this.delta.slice(D,D+A)}},{key:"getDelta",value:function(){return this.scroll.lines().reduce(function(D,A){return D.concat(A.delta())},new d.default)}},{key:"getFormat",value:function(D){var A=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0,I=[],U=[];A===0?this.scroll.path(D).forEach(function(L){var z=s(L,1),Z=z[0];Z instanceof w.default?I.push(Z):Z instanceof h.default.Leaf&&U.push(Z)}):(I=this.scroll.lines(D,A),U=this.scroll.descendants(h.default.Leaf,D,A));var F=[I,U].map(function(L){if(L.length===0)return{};for(var z=(0,g.bubbleFormats)(L.shift());Object.keys(z).length>0;){var Z=L.shift();if(Z==null)return z;z=Y((0,g.bubbleFormats)(Z),z)}return z});return C.default.apply(C.default,F)}},{key:"getText",value:function(D,A){return this.getContents(D,A).filter(function(I){return typeof I.insert=="string"}).map(function(I){return I.insert}).join("")}},{key:"insertEmbed",value:function(D,A,I){return this.scroll.insertAt(D,A,I),this.update(new d.default().retain(D).insert(N({},A,I)))}},{key:"insertText",value:function(D,A){var I=this,U=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{};return A=A.replace(/\r\n/g,`
|
|
109
112
|
`).replace(/\r/g,`
|
|
110
|
-
`),this.scroll.insertAt(A
|
|
111
|
-
`));var ne=this.getContents(A
|
|
113
|
+
`),this.scroll.insertAt(D,A),Object.keys(U).forEach(function(F){I.scroll.formatAt(D,A.length,F,U[F])}),this.update(new d.default().retain(D).insert(A,(0,S.default)(U)))}},{key:"isBlank",value:function(){if(this.scroll.children.length==0)return!0;if(this.scroll.children.length>1)return!1;var D=this.scroll.children.head;return D.statics.blotName!==w.default.blotName||D.children.length>1?!1:D.children.head instanceof k.default}},{key:"removeFormat",value:function(D,A){var I=this.getText(D,A),U=this.scroll.line(D+A),F=s(U,2),L=F[0],z=F[1],Z=0,J=new d.default;L!=null&&(L instanceof m.default?Z=L.newlineIndex(z)-z+1:Z=L.length()-z,J=L.delta().slice(z,z+Z-1).insert(`
|
|
114
|
+
`));var ne=this.getContents(D,A+Z),ce=ne.diff(new d.default().insert(I).concat(J)),he=new d.default().retain(D).concat(ce);return this.applyDelta(he)}},{key:"update",value:function(D){var A=arguments.length>1&&arguments[1]!==void 0?arguments[1]:[],I=arguments.length>2&&arguments[2]!==void 0?arguments[2]:void 0,U=this.delta;if(A.length===1&&A[0].type==="characterData"&&A[0].target.data.match(q)&&h.default.find(A[0].target)){var F=h.default.find(A[0].target),L=(0,g.bubbleFormats)(F),z=F.offset(this.scroll),Z=A[0].oldValue.replace(y.default.CONTENTS,""),J=new d.default().insert(Z),ne=new d.default().insert(F.value()),ce=new d.default().retain(z).concat(J.diff(ne,I));D=ce.reduce(function(he,be){return be.insert?he.insert(be.insert,L):he.push(be)},new d.default),this.delta=U.compose(D)}else this.delta=this.getDelta(),(!D||!(0,B.default)(U.compose(D),this.delta))&&(D=U.diff(this.delta,I));return D}}]),K}();function Y(K,V){return Object.keys(V).reduce(function(D,A){return K[A]==null||(V[A]===K[A]?D[A]=V[A]:Array.isArray(V[A])?V[A].indexOf(K[A])<0&&(D[A]=V[A].concat([K[A]])):D[A]=[V[A],K[A]]),D},{})}function re(K){return K.reduce(function(V,D){if(D.insert===1){var A=(0,S.default)(D.attributes);return delete A.image,V.insert({image:D.attributes.image},A)}if(D.attributes!=null&&(D.attributes.list===!0||D.attributes.bullet===!0)&&(D=(0,S.default)(D),D.attributes.list?D.attributes.list="ordered":(D.attributes.list="bullet",delete D.attributes.bullet)),typeof D.insert=="string"){var I=D.insert.replace(/\r\n/g,`
|
|
112
115
|
`).replace(/\r/g,`
|
|
113
|
-
`);return R.insert(V,A.attributes)}return R.push(A)},new p.default)}o.default=G},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.default=o.Range=void 0;var r=function(){function T(M,E){var C=[],O=!0,x=!1,P=void 0;try{for(var q=M[Symbol.iterator](),G;!(O=(G=q.next()).done)&&(C.push(G.value),!(E&&C.length===E));O=!0);}catch(W){x=!0,P=W}finally{try{!O&&q.return&&q.return()}finally{if(x)throw P}}return C}return function(M,E){if(Array.isArray(M))return M;if(Symbol.iterator in Object(M))return T(M,E);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),s=function(){function T(M,E){for(var C=0;C<E.length;C++){var O=E[C];O.enumerable=O.enumerable||!1,O.configurable=!0,"value"in O&&(O.writable=!0),Object.defineProperty(M,O.key,O)}}return function(M,E,C){return E&&T(M.prototype,E),C&&T(M,C),M}}(),d=a(0),u=g(d),p=a(21),h=g(p),f=a(11),l=g(f),c=a(8),_=g(c),v=a(10),b=g(v);function g(T){return T&&T.__esModule?T:{default:T}}function y(T){if(Array.isArray(T)){for(var M=0,E=Array(T.length);M<T.length;M++)E[M]=T[M];return E}else return Array.from(T)}function w(T,M){if(!(T instanceof M))throw new TypeError("Cannot call a class as a function")}var m=(0,b.default)("quill:selection"),k=function T(M){var E=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0;w(this,T),this.index=M,this.length=E},N=function(){function T(M,E){var C=this;w(this,T),this.emitter=E,this.scroll=M,this.composing=!1,this.mouseDown=!1,this.root=this.scroll.domNode,this.cursor=u.default.create("cursor",this),this.lastRange=this.savedRange=new k(0,0),this.handleComposition(),this.handleDragging(),this.emitter.listenDOM("selectionchange",document,function(){C.mouseDown||setTimeout(C.update.bind(C,_.default.sources.USER),1)}),this.emitter.on(_.default.events.EDITOR_CHANGE,function(O,x){O===_.default.events.TEXT_CHANGE&&x.length()>0&&C.update(_.default.sources.SILENT)}),this.emitter.on(_.default.events.SCROLL_BEFORE_UPDATE,function(){if(C.hasFocus()){var O=C.getNativeRange();O!=null&&O.start.node!==C.cursor.textNode&&C.emitter.once(_.default.events.SCROLL_UPDATE,function(){try{C.setNativeRange(O.start.node,O.start.offset,O.end.node,O.end.offset)}catch{}})}}),this.emitter.on(_.default.events.SCROLL_OPTIMIZE,function(O,x){if(x.range){var P=x.range,q=P.startNode,G=P.startOffset,W=P.endNode,ie=P.endOffset;C.setNativeRange(q,G,W,ie)}}),this.update(_.default.sources.SILENT)}return s(T,[{key:"handleComposition",value:function(){var E=this;this.root.addEventListener("compositionstart",function(){E.composing=!0}),this.root.addEventListener("compositionend",function(){if(E.composing=!1,E.cursor.parent){var C=E.cursor.restore();if(!C)return;setTimeout(function(){E.setNativeRange(C.startNode,C.startOffset,C.endNode,C.endOffset)},1)}})}},{key:"handleDragging",value:function(){var E=this;this.emitter.listenDOM("mousedown",document.body,function(){E.mouseDown=!0}),this.emitter.listenDOM("mouseup",document.body,function(){E.mouseDown=!1,E.update(_.default.sources.USER)})}},{key:"focus",value:function(){this.hasFocus()||(this.root.focus(),this.setRange(this.savedRange))}},{key:"format",value:function(E,C){if(!(this.scroll.whitelist!=null&&!this.scroll.whitelist[E])){this.scroll.update();var O=this.getNativeRange();if(!(O==null||!O.native.collapsed||u.default.query(E,u.default.Scope.BLOCK))){if(O.start.node!==this.cursor.textNode){var x=u.default.find(O.start.node,!1);if(x==null)return;if(x instanceof u.default.Leaf){var P=x.split(O.start.offset);x.parent.insertBefore(this.cursor,P)}else x.insertBefore(this.cursor,O.start.node);this.cursor.attach()}this.cursor.format(E,C),this.scroll.optimize(),this.setNativeRange(this.cursor.textNode,this.cursor.textNode.data.length),this.update()}}}},{key:"getBounds",value:function(E){var C=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0,O=this.scroll.length();E=Math.min(E,O-1),C=Math.min(E+C,O-1)-E;var x=void 0,P=this.scroll.leaf(E),q=r(P,2),G=q[0],W=q[1];if(G==null)return null;var ie=G.position(W,!0),U=r(ie,2);x=U[0],W=U[1];var R=document.createRange();if(C>0){R.setStart(x,W);var A=this.scroll.leaf(E+C),j=r(A,2);if(G=j[0],W=j[1],G==null)return null;var V=G.position(W,!0),Y=r(V,2);return x=Y[0],W=Y[1],R.setEnd(x,W),R.getBoundingClientRect()}else{var H="left",B=void 0;return x instanceof Text?(W<x.data.length?(R.setStart(x,W),R.setEnd(x,W+1)):(R.setStart(x,W-1),R.setEnd(x,W),H="right"),B=R.getBoundingClientRect()):(B=G.domNode.getBoundingClientRect(),W>0&&(H="right")),{bottom:B.top+B.height,height:B.height,left:B[H],right:B[H],top:B.top,width:0}}}},{key:"getNativeRange",value:function(){var E=document.getSelection();if(E==null||E.rangeCount<=0)return null;var C=E.getRangeAt(0);if(C==null)return null;var O=this.normalizeNative(C);return m.info("getNativeRange",O),O}},{key:"getRange",value:function(){var E=this.getNativeRange();if(E==null)return[null,null];var C=this.normalizedToRange(E);return[C,E]}},{key:"hasFocus",value:function(){return document.activeElement===this.root}},{key:"normalizedToRange",value:function(E){var C=this,O=[[E.start.node,E.start.offset]];E.native.collapsed||O.push([E.end.node,E.end.offset]);var x=O.map(function(G){var W=r(G,2),ie=W[0],U=W[1],R=u.default.find(ie,!0),A=R.offset(C.scroll);return U===0?A:R instanceof u.default.Container?A+R.length():A+R.index(ie,U)}),P=Math.min(Math.max.apply(Math,y(x)),this.scroll.length()-1),q=Math.min.apply(Math,[P].concat(y(x)));return new k(q,P-q)}},{key:"normalizeNative",value:function(E){if(!S(this.root,E.startContainer)||!E.collapsed&&!S(this.root,E.endContainer))return null;var C={start:{node:E.startContainer,offset:E.startOffset},end:{node:E.endContainer,offset:E.endOffset},native:E};return[C.start,C.end].forEach(function(O){for(var x=O.node,P=O.offset;!(x instanceof Text)&&x.childNodes.length>0;)if(x.childNodes.length>P)x=x.childNodes[P],P=0;else if(x.childNodes.length===P)x=x.lastChild,P=x instanceof Text?x.data.length:x.childNodes.length+1;else break;O.node=x,O.offset=P}),C}},{key:"rangeToNative",value:function(E){var C=this,O=E.collapsed?[E.index]:[E.index,E.index+E.length],x=[],P=this.scroll.length();return O.forEach(function(q,G){q=Math.min(P-1,q);var W=void 0,ie=C.scroll.leaf(q),U=r(ie,2),R=U[0],A=U[1],j=R.position(A,G!==0),V=r(j,2);W=V[0],A=V[1],x.push(W,A)}),x.length<2&&(x=x.concat(x)),x}},{key:"scrollIntoView",value:function(E){var C=this.lastRange;if(C!=null){var O=this.getBounds(C.index,C.length);if(O!=null){var x=this.scroll.length()-1,P=this.scroll.line(Math.min(C.index,x)),q=r(P,1),G=q[0],W=G;if(C.length>0){var ie=this.scroll.line(Math.min(C.index+C.length,x)),U=r(ie,1);W=U[0]}if(!(G==null||W==null)){var R=E.getBoundingClientRect();O.top<R.top?E.scrollTop-=R.top-O.top:O.bottom>R.bottom&&(E.scrollTop+=O.bottom-R.bottom)}}}}},{key:"setNativeRange",value:function(E,C){var O=arguments.length>2&&arguments[2]!==void 0?arguments[2]:E,x=arguments.length>3&&arguments[3]!==void 0?arguments[3]:C,P=arguments.length>4&&arguments[4]!==void 0?arguments[4]:!1;if(m.info("setNativeRange",E,C,O,x),!(E!=null&&(this.root.parentNode==null||E.parentNode==null||O.parentNode==null))){var q=document.getSelection();if(q!=null)if(E!=null){this.hasFocus()||this.root.focus();var G=(this.getNativeRange()||{}).native;if(G==null||P||E!==G.startContainer||C!==G.startOffset||O!==G.endContainer||x!==G.endOffset){E.tagName=="BR"&&(C=[].indexOf.call(E.parentNode.childNodes,E),E=E.parentNode),O.tagName=="BR"&&(x=[].indexOf.call(O.parentNode.childNodes,O),O=O.parentNode);var W=document.createRange();W.setStart(E,C),W.setEnd(O,x),q.removeAllRanges(),q.addRange(W)}}else q.removeAllRanges(),this.root.blur(),document.body.focus()}}},{key:"setRange",value:function(E){var C=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1,O=arguments.length>2&&arguments[2]!==void 0?arguments[2]:_.default.sources.API;if(typeof C=="string"&&(O=C,C=!1),m.info("setRange",E),E!=null){var x=this.rangeToNative(E);this.setNativeRange.apply(this,y(x).concat([C]))}else this.setNativeRange(null);this.update(O)}},{key:"update",value:function(){var E=arguments.length>0&&arguments[0]!==void 0?arguments[0]:_.default.sources.USER,C=this.lastRange,O=this.getRange(),x=r(O,2),P=x[0],q=x[1];if(this.lastRange=P,this.lastRange!=null&&(this.savedRange=this.lastRange),!(0,l.default)(C,this.lastRange)){var G;!this.composing&&q!=null&&q.native.collapsed&&q.start.node!==this.cursor.textNode&&this.cursor.restore();var W=[_.default.events.SELECTION_CHANGE,(0,h.default)(this.lastRange),(0,h.default)(C),E];if((G=this.emitter).emit.apply(G,[_.default.events.EDITOR_CHANGE].concat(W)),E!==_.default.sources.SILENT){var ie;(ie=this.emitter).emit.apply(ie,W)}}}}]),T}();function S(T,M){try{M.parentNode}catch{return!1}return M instanceof Text&&(M=M.parentNode),T.contains(M)}o.Range=k,o.default=N},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=function(){function _(v,b){for(var g=0;g<b.length;g++){var y=b[g];y.enumerable=y.enumerable||!1,y.configurable=!0,"value"in y&&(y.writable=!0),Object.defineProperty(v,y.key,y)}}return function(v,b,g){return b&&_(v.prototype,b),g&&_(v,g),v}}(),s=function _(v,b,g){v===null&&(v=Function.prototype);var y=Object.getOwnPropertyDescriptor(v,b);if(y===void 0){var w=Object.getPrototypeOf(v);return w===null?void 0:_(w,b,g)}else{if("value"in y)return y.value;var m=y.get;return m===void 0?void 0:m.call(g)}},d=a(0),u=p(d);function p(_){return _&&_.__esModule?_:{default:_}}function h(_,v){if(!(_ instanceof v))throw new TypeError("Cannot call a class as a function")}function f(_,v){if(!_)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return v&&(typeof v=="object"||typeof v=="function")?v:_}function l(_,v){if(typeof v!="function"&&v!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof v);_.prototype=Object.create(v&&v.prototype,{constructor:{value:_,enumerable:!1,writable:!0,configurable:!0}}),v&&(Object.setPrototypeOf?Object.setPrototypeOf(_,v):_.__proto__=v)}var c=function(_){l(v,_);function v(){return h(this,v),f(this,(v.__proto__||Object.getPrototypeOf(v)).apply(this,arguments))}return r(v,[{key:"insertInto",value:function(g,y){g.children.length===0?s(v.prototype.__proto__||Object.getPrototypeOf(v.prototype),"insertInto",this).call(this,g,y):this.remove()}},{key:"length",value:function(){return 0}},{key:"value",value:function(){return""}}],[{key:"value",value:function(){}}]),v}(u.default.Embed);c.blotName="break",c.tagName="BR",o.default=c},function(e,o,a){var r=this&&this.__extends||function(){var f=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(l,c){l.__proto__=c}||function(l,c){for(var _ in c)c.hasOwnProperty(_)&&(l[_]=c[_])};return function(l,c){f(l,c);function _(){this.constructor=l}l.prototype=c===null?Object.create(c):(_.prototype=c.prototype,new _)}}();Object.defineProperty(o,"__esModule",{value:!0});var s=a(44),d=a(30),u=a(1),p=function(f){r(l,f);function l(c){var _=f.call(this,c)||this;return _.build(),_}return l.prototype.appendChild=function(c){this.insertBefore(c)},l.prototype.attach=function(){f.prototype.attach.call(this),this.children.forEach(function(c){c.attach()})},l.prototype.build=function(){var c=this;this.children=new s.default,[].slice.call(this.domNode.childNodes).reverse().forEach(function(_){try{var v=h(_);c.insertBefore(v,c.children.head||void 0)}catch(b){if(b instanceof u.ParchmentError)return;throw b}})},l.prototype.deleteAt=function(c,_){if(c===0&&_===this.length())return this.remove();this.children.forEachAt(c,_,function(v,b,g){v.deleteAt(b,g)})},l.prototype.descendant=function(c,_){var v=this.children.find(_),b=v[0],g=v[1];return c.blotName==null&&c(b)||c.blotName!=null&&b instanceof c?[b,g]:b instanceof l?b.descendant(c,g):[null,-1]},l.prototype.descendants=function(c,_,v){_===void 0&&(_=0),v===void 0&&(v=Number.MAX_VALUE);var b=[],g=v;return this.children.forEachAt(_,v,function(y,w,m){(c.blotName==null&&c(y)||c.blotName!=null&&y instanceof c)&&b.push(y),y instanceof l&&(b=b.concat(y.descendants(c,w,g))),g-=m}),b},l.prototype.detach=function(){this.children.forEach(function(c){c.detach()}),f.prototype.detach.call(this)},l.prototype.formatAt=function(c,_,v,b){this.children.forEachAt(c,_,function(g,y,w){g.formatAt(y,w,v,b)})},l.prototype.insertAt=function(c,_,v){var b=this.children.find(c),g=b[0],y=b[1];if(g)g.insertAt(y,_,v);else{var w=v==null?u.create("text",_):u.create(_,v);this.appendChild(w)}},l.prototype.insertBefore=function(c,_){if(this.statics.allowedChildren!=null&&!this.statics.allowedChildren.some(function(v){return c instanceof v}))throw new u.ParchmentError("Cannot insert "+c.statics.blotName+" into "+this.statics.blotName);c.insertInto(this,_)},l.prototype.length=function(){return this.children.reduce(function(c,_){return c+_.length()},0)},l.prototype.moveChildren=function(c,_){this.children.forEach(function(v){c.insertBefore(v,_)})},l.prototype.optimize=function(c){if(f.prototype.optimize.call(this,c),this.children.length===0)if(this.statics.defaultChild!=null){var _=u.create(this.statics.defaultChild);this.appendChild(_),_.optimize(c)}else this.remove()},l.prototype.path=function(c,_){_===void 0&&(_=!1);var v=this.children.find(c,_),b=v[0],g=v[1],y=[[this,c]];return b instanceof l?y.concat(b.path(g,_)):(b!=null&&y.push([b,g]),y)},l.prototype.removeChild=function(c){this.children.remove(c)},l.prototype.replace=function(c){c instanceof l&&c.moveChildren(this),f.prototype.replace.call(this,c)},l.prototype.split=function(c,_){if(_===void 0&&(_=!1),!_){if(c===0)return this;if(c===this.length())return this.next}var v=this.clone();return this.parent.insertBefore(v,this.next),this.children.forEachAt(c,this.length(),function(b,g,y){b=b.split(g,_),v.appendChild(b)}),v},l.prototype.unwrap=function(){this.moveChildren(this.parent,this.next),this.remove()},l.prototype.update=function(c,_){var v=this,b=[],g=[];c.forEach(function(y){y.target===v.domNode&&y.type==="childList"&&(b.push.apply(b,y.addedNodes),g.push.apply(g,y.removedNodes))}),g.forEach(function(y){if(!(y.parentNode!=null&&y.tagName!=="IFRAME"&&document.body.compareDocumentPosition(y)&Node.DOCUMENT_POSITION_CONTAINED_BY)){var w=u.find(y);w!=null&&(w.domNode.parentNode==null||w.domNode.parentNode===v.domNode)&&w.detach()}}),b.filter(function(y){return y.parentNode==v.domNode}).sort(function(y,w){return y===w?0:y.compareDocumentPosition(w)&Node.DOCUMENT_POSITION_FOLLOWING?1:-1}).forEach(function(y){var w=null;y.nextSibling!=null&&(w=u.find(y.nextSibling));var m=h(y);(m.next!=w||m.next==null)&&(m.parent!=null&&m.parent.removeChild(v),v.insertBefore(m,w||void 0))})},l}(d.default);function h(f){var l=u.find(f);if(l==null)try{l=u.create(f)}catch{l=u.create(u.Scope.INLINE),[].slice.call(f.childNodes).forEach(function(_){l.domNode.appendChild(_)}),f.parentNode&&f.parentNode.replaceChild(l.domNode,f),l.attach()}return l}o.default=p},function(e,o,a){var r=this&&this.__extends||function(){var f=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(l,c){l.__proto__=c}||function(l,c){for(var _ in c)c.hasOwnProperty(_)&&(l[_]=c[_])};return function(l,c){f(l,c);function _(){this.constructor=l}l.prototype=c===null?Object.create(c):(_.prototype=c.prototype,new _)}}();Object.defineProperty(o,"__esModule",{value:!0});var s=a(12),d=a(31),u=a(17),p=a(1),h=function(f){r(l,f);function l(c){var _=f.call(this,c)||this;return _.attributes=new d.default(_.domNode),_}return l.formats=function(c){if(typeof this.tagName=="string")return!0;if(Array.isArray(this.tagName))return c.tagName.toLowerCase()},l.prototype.format=function(c,_){var v=p.query(c);v instanceof s.default?this.attributes.attribute(v,_):_&&v!=null&&(c!==this.statics.blotName||this.formats()[c]!==_)&&this.replaceWith(c,_)},l.prototype.formats=function(){var c=this.attributes.values(),_=this.statics.formats(this.domNode);return _!=null&&(c[this.statics.blotName]=_),c},l.prototype.replaceWith=function(c,_){var v=f.prototype.replaceWith.call(this,c,_);return this.attributes.copy(v),v},l.prototype.update=function(c,_){var v=this;f.prototype.update.call(this,c,_),c.some(function(b){return b.target===v.domNode&&b.type==="attributes"})&&this.attributes.build()},l.prototype.wrap=function(c,_){var v=f.prototype.wrap.call(this,c,_);return v instanceof l&&v.statics.scope===this.statics.scope&&this.attributes.move(v),v},l}(u.default);o.default=h},function(e,o,a){var r=this&&this.__extends||function(){var p=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(h,f){h.__proto__=f}||function(h,f){for(var l in f)f.hasOwnProperty(l)&&(h[l]=f[l])};return function(h,f){p(h,f);function l(){this.constructor=h}h.prototype=f===null?Object.create(f):(l.prototype=f.prototype,new l)}}();Object.defineProperty(o,"__esModule",{value:!0});var s=a(30),d=a(1),u=function(p){r(h,p);function h(){return p!==null&&p.apply(this,arguments)||this}return h.value=function(f){return!0},h.prototype.index=function(f,l){return this.domNode===f||this.domNode.compareDocumentPosition(f)&Node.DOCUMENT_POSITION_CONTAINED_BY?Math.min(l,1):-1},h.prototype.position=function(f,l){var c=[].indexOf.call(this.parent.domNode.childNodes,this.domNode);return f>0&&(c+=1),[this.parent.domNode,c]},h.prototype.value=function(){var f;return f={},f[this.statics.blotName]=this.statics.value(this.domNode)||!0,f},h.scope=d.Scope.INLINE_BLOT,h}(s.default);o.default=u},function(e,o,a){var r=a(11),s=a(3),d={attributes:{compose:function(p,h,f){typeof p!="object"&&(p={}),typeof h!="object"&&(h={});var l=s(!0,{},h);f||(l=Object.keys(l).reduce(function(_,v){return l[v]!=null&&(_[v]=l[v]),_},{}));for(var c in p)p[c]!==void 0&&h[c]===void 0&&(l[c]=p[c]);return Object.keys(l).length>0?l:void 0},diff:function(p,h){typeof p!="object"&&(p={}),typeof h!="object"&&(h={});var f=Object.keys(p).concat(Object.keys(h)).reduce(function(l,c){return r(p[c],h[c])||(l[c]=h[c]===void 0?null:h[c]),l},{});return Object.keys(f).length>0?f:void 0},transform:function(p,h,f){if(typeof p!="object")return h;if(typeof h=="object"){if(!f)return h;var l=Object.keys(h).reduce(function(c,_){return p[_]===void 0&&(c[_]=h[_]),c},{});return Object.keys(l).length>0?l:void 0}}},iterator:function(p){return new u(p)},length:function(p){return typeof p.delete=="number"?p.delete:typeof p.retain=="number"?p.retain:typeof p.insert=="string"?p.insert.length:1}};function u(p){this.ops=p,this.index=0,this.offset=0}u.prototype.hasNext=function(){return this.peekLength()<1/0},u.prototype.next=function(p){p||(p=1/0);var h=this.ops[this.index];if(h){var f=this.offset,l=d.length(h);if(p>=l-f?(p=l-f,this.index+=1,this.offset=0):this.offset+=p,typeof h.delete=="number")return{delete:p};var c={};return h.attributes&&(c.attributes=h.attributes),typeof h.retain=="number"?c.retain=p:typeof h.insert=="string"?c.insert=h.insert.substr(f,p):c.insert=h.insert,c}else return{retain:1/0}},u.prototype.peek=function(){return this.ops[this.index]},u.prototype.peekLength=function(){return this.ops[this.index]?d.length(this.ops[this.index])-this.offset:1/0},u.prototype.peekType=function(){return this.ops[this.index]?typeof this.ops[this.index].delete=="number"?"delete":typeof this.ops[this.index].retain=="number"?"retain":"insert":"retain"},u.prototype.rest=function(){if(this.hasNext()){if(this.offset===0)return this.ops.slice(this.index);var p=this.offset,h=this.index,f=this.next(),l=this.ops.slice(this.index);return this.offset=p,this.index=h,[f].concat(l)}else return[]},e.exports=d},function(e,o){var a=function(){function r(v,b){return b!=null&&v instanceof b}var s;try{s=Map}catch{s=function(){}}var d;try{d=Set}catch{d=function(){}}var u;try{u=Promise}catch{u=function(){}}function p(v,b,g,y,w){typeof b=="object"&&(g=b.depth,y=b.prototype,w=b.includeNonEnumerable,b=b.circular);var m=[],k=[],N=typeof Buffer<"u";typeof b>"u"&&(b=!0),typeof g>"u"&&(g=1/0);function S(T,M){if(T===null)return null;if(M===0)return T;var E,C;if(typeof T!="object")return T;if(r(T,s))E=new s;else if(r(T,d))E=new d;else if(r(T,u))E=new u(function(R,A){T.then(function(j){R(S(j,M-1))},function(j){A(S(j,M-1))})});else if(p.__isArray(T))E=[];else if(p.__isRegExp(T))E=new RegExp(T.source,_(T)),T.lastIndex&&(E.lastIndex=T.lastIndex);else if(p.__isDate(T))E=new Date(T.getTime());else{if(N&&Buffer.isBuffer(T))return Buffer.allocUnsafe?E=Buffer.allocUnsafe(T.length):E=new Buffer(T.length),T.copy(E),E;r(T,Error)?E=Object.create(T):typeof y>"u"?(C=Object.getPrototypeOf(T),E=Object.create(C)):(E=Object.create(y),C=y)}if(b){var O=m.indexOf(T);if(O!=-1)return k[O];m.push(T),k.push(E)}r(T,s)&&T.forEach(function(R,A){var j=S(A,M-1),V=S(R,M-1);E.set(j,V)}),r(T,d)&&T.forEach(function(R){var A=S(R,M-1);E.add(A)});for(var x in T){var P;C&&(P=Object.getOwnPropertyDescriptor(C,x)),!(P&&P.set==null)&&(E[x]=S(T[x],M-1))}if(Object.getOwnPropertySymbols)for(var q=Object.getOwnPropertySymbols(T),x=0;x<q.length;x++){var G=q[x],W=Object.getOwnPropertyDescriptor(T,G);W&&!W.enumerable&&!w||(E[G]=S(T[G],M-1),W.enumerable||Object.defineProperty(E,G,{enumerable:!1}))}if(w)for(var ie=Object.getOwnPropertyNames(T),x=0;x<ie.length;x++){var U=ie[x],W=Object.getOwnPropertyDescriptor(T,U);W&&W.enumerable||(E[U]=S(T[U],M-1),Object.defineProperty(E,U,{enumerable:!1}))}return E}return S(v,g)}p.clonePrototype=function(b){if(b===null)return null;var g=function(){};return g.prototype=b,new g};function h(v){return Object.prototype.toString.call(v)}p.__objToStr=h;function f(v){return typeof v=="object"&&h(v)==="[object Date]"}p.__isDate=f;function l(v){return typeof v=="object"&&h(v)==="[object Array]"}p.__isArray=l;function c(v){return typeof v=="object"&&h(v)==="[object RegExp]"}p.__isRegExp=c;function _(v){var b="";return v.global&&(b+="g"),v.ignoreCase&&(b+="i"),v.multiline&&(b+="m"),b}return p.__getRegExpFlags=_,p}();typeof e=="object"&&e.exports&&(e.exports=a)},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=function(){function E(C,O){var x=[],P=!0,q=!1,G=void 0;try{for(var W=C[Symbol.iterator](),ie;!(P=(ie=W.next()).done)&&(x.push(ie.value),!(O&&x.length===O));P=!0);}catch(U){q=!0,G=U}finally{try{!P&&W.return&&W.return()}finally{if(q)throw G}}return x}return function(C,O){if(Array.isArray(C))return C;if(Symbol.iterator in Object(C))return E(C,O);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),s=function(){function E(C,O){for(var x=0;x<O.length;x++){var P=O[x];P.enumerable=P.enumerable||!1,P.configurable=!0,"value"in P&&(P.writable=!0),Object.defineProperty(C,P.key,P)}}return function(C,O,x){return O&&E(C.prototype,O),x&&E(C,x),C}}(),d=function E(C,O,x){C===null&&(C=Function.prototype);var P=Object.getOwnPropertyDescriptor(C,O);if(P===void 0){var q=Object.getPrototypeOf(C);return q===null?void 0:E(q,O,x)}else{if("value"in P)return P.value;var G=P.get;return G===void 0?void 0:G.call(x)}},u=a(0),p=m(u),h=a(8),f=m(h),l=a(4),c=m(l),_=a(16),v=m(_),b=a(13),g=m(b),y=a(25),w=m(y);function m(E){return E&&E.__esModule?E:{default:E}}function k(E,C){if(!(E instanceof C))throw new TypeError("Cannot call a class as a function")}function N(E,C){if(!E)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return C&&(typeof C=="object"||typeof C=="function")?C:E}function S(E,C){if(typeof C!="function"&&C!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof C);E.prototype=Object.create(C&&C.prototype,{constructor:{value:E,enumerable:!1,writable:!0,configurable:!0}}),C&&(Object.setPrototypeOf?Object.setPrototypeOf(E,C):E.__proto__=C)}function T(E){return E instanceof c.default||E instanceof l.BlockEmbed}var M=function(E){S(C,E);function C(O,x){k(this,C);var P=N(this,(C.__proto__||Object.getPrototypeOf(C)).call(this,O));return P.emitter=x.emitter,Array.isArray(x.whitelist)&&(P.whitelist=x.whitelist.reduce(function(q,G){return q[G]=!0,q},{})),P.domNode.addEventListener("DOMNodeInserted",function(){}),P.optimize(),P.enable(),P}return s(C,[{key:"batchStart",value:function(){this.batch=!0}},{key:"batchEnd",value:function(){this.batch=!1,this.optimize()}},{key:"deleteAt",value:function(x,P){var q=this.line(x),G=r(q,2),W=G[0],ie=G[1],U=this.line(x+P),R=r(U,1),A=R[0];if(d(C.prototype.__proto__||Object.getPrototypeOf(C.prototype),"deleteAt",this).call(this,x,P),A!=null&&W!==A&&ie>0){if(W instanceof l.BlockEmbed||A instanceof l.BlockEmbed){this.optimize();return}if(W instanceof g.default){var j=W.newlineIndex(W.length(),!0);if(j>-1&&(W=W.split(j+1),W===A)){this.optimize();return}}else if(A instanceof g.default){var V=A.newlineIndex(0);V>-1&&A.split(V+1)}var Y=A.children.head instanceof v.default?null:A.children.head;W.moveChildren(A,Y),W.remove()}this.optimize()}},{key:"enable",value:function(){var x=arguments.length>0&&arguments[0]!==void 0?arguments[0]:!0;this.domNode.setAttribute("contenteditable",x)}},{key:"formatAt",value:function(x,P,q,G){this.whitelist!=null&&!this.whitelist[q]||(d(C.prototype.__proto__||Object.getPrototypeOf(C.prototype),"formatAt",this).call(this,x,P,q,G),this.optimize())}},{key:"insertAt",value:function(x,P,q){if(!(q!=null&&this.whitelist!=null&&!this.whitelist[P])){if(x>=this.length())if(q==null||p.default.query(P,p.default.Scope.BLOCK)==null){var G=p.default.create(this.statics.defaultChild);this.appendChild(G),q==null&&P.endsWith(`
|
|
114
|
-
`)&&(
|
|
115
|
-
`,he).retain(ne.length()-
|
|
116
|
-
`,Z.format).retain(
|
|
117
|
-
`,J,k.default.sources.USER),this.quill.setSelection(
|
|
118
|
-
`);Oe=0,te.forEach(function(ae,le){B?(ke.insertAt(Pe+Oe,J.TAB),Oe+=J.TAB.length,le===0?ne+=J.TAB.length:de+=J.TAB.length):ae.startsWith(J.TAB)&&(ke.deleteAt(Pe+Oe,J.TAB.length),Oe-=J.TAB.length,le===0?ne-=J.TAB.length:de-=J.TAB.length),Oe+=ae.length+1}),this.quill.update(k.default.sources.USER),this.quill.setSelection(ne,de,k.default.sources.SILENT)}}}}function Y(B){return{key:B[0].toUpperCase(),shortKey:!0,handler:function(Z,J){this.quill.format(B,!J.format[B],k.default.sources.USER)}}}function H(B){if(typeof B=="string"||typeof B=="number")return H({key:B});if((typeof B>"u"?"undefined":r(B))==="object"&&(B=(0,p.default)(B,!1)),typeof B.key=="string")if(W.keys[B.key.toUpperCase()]!=null)B.key=W.keys[B.key.toUpperCase()];else if(B.key.length===1)B.key=B.key.toUpperCase().charCodeAt(0);else return null;return B.shortKey&&(B[G]=B.shortKey,delete B.shortKey),B}o.default=W,o.SHORTKEY=G},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=function(){function g(y,w){var m=[],k=!0,N=!1,S=void 0;try{for(var T=y[Symbol.iterator](),M;!(k=(M=T.next()).done)&&(m.push(M.value),!(w&&m.length===w));k=!0);}catch(E){N=!0,S=E}finally{try{!k&&T.return&&T.return()}finally{if(N)throw S}}return m}return function(y,w){if(Array.isArray(y))return y;if(Symbol.iterator in Object(y))return g(y,w);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),s=function g(y,w,m){y===null&&(y=Function.prototype);var k=Object.getOwnPropertyDescriptor(y,w);if(k===void 0){var N=Object.getPrototypeOf(y);return N===null?void 0:g(N,w,m)}else{if("value"in k)return k.value;var S=k.get;return S===void 0?void 0:S.call(m)}},d=function(){function g(y,w){for(var m=0;m<w.length;m++){var k=w[m];k.enumerable=k.enumerable||!1,k.configurable=!0,"value"in k&&(k.writable=!0),Object.defineProperty(y,k.key,k)}}return function(y,w,m){return w&&g(y.prototype,w),m&&g(y,m),y}}(),u=a(0),p=l(u),h=a(7),f=l(h);function l(g){return g&&g.__esModule?g:{default:g}}function c(g,y){if(!(g instanceof y))throw new TypeError("Cannot call a class as a function")}function _(g,y){if(!g)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return y&&(typeof y=="object"||typeof y=="function")?y:g}function v(g,y){if(typeof y!="function"&&y!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof y);g.prototype=Object.create(y&&y.prototype,{constructor:{value:g,enumerable:!1,writable:!0,configurable:!0}}),y&&(Object.setPrototypeOf?Object.setPrototypeOf(g,y):g.__proto__=y)}var b=function(g){v(y,g),d(y,null,[{key:"value",value:function(){}}]);function y(w,m){c(this,y);var k=_(this,(y.__proto__||Object.getPrototypeOf(y)).call(this,w));return k.selection=m,k.textNode=document.createTextNode(y.CONTENTS),k.domNode.appendChild(k.textNode),k._length=0,k}return d(y,[{key:"detach",value:function(){this.parent!=null&&this.parent.removeChild(this)}},{key:"format",value:function(m,k){if(this._length!==0)return s(y.prototype.__proto__||Object.getPrototypeOf(y.prototype),"format",this).call(this,m,k);for(var N=this,S=0;N!=null&&N.statics.scope!==p.default.Scope.BLOCK_BLOT;)S+=N.offset(N.parent),N=N.parent;N!=null&&(this._length=y.CONTENTS.length,N.optimize(),N.formatAt(S,y.CONTENTS.length,m,k),this._length=0)}},{key:"index",value:function(m,k){return m===this.textNode?0:s(y.prototype.__proto__||Object.getPrototypeOf(y.prototype),"index",this).call(this,m,k)}},{key:"length",value:function(){return this._length}},{key:"position",value:function(){return[this.textNode,this.textNode.data.length]}},{key:"remove",value:function(){s(y.prototype.__proto__||Object.getPrototypeOf(y.prototype),"remove",this).call(this),this.parent=null}},{key:"restore",value:function(){if(!(this.selection.composing||this.parent==null)){var m=this.textNode,k=this.selection.getNativeRange(),N=void 0,S=void 0,T=void 0;if(k!=null&&k.start.node===m&&k.end.node===m){var M=[m,k.start.offset,k.end.offset];N=M[0],S=M[1],T=M[2]}for(;this.domNode.lastChild!=null&&this.domNode.lastChild!==this.textNode;)this.domNode.parentNode.insertBefore(this.domNode.lastChild,this.domNode);if(this.textNode.data!==y.CONTENTS){var E=this.textNode.data.split(y.CONTENTS).join("");this.next instanceof f.default?(N=this.next.domNode,this.next.insertAt(0,E),this.textNode.data=y.CONTENTS):(this.textNode.data=E,this.parent.insertBefore(p.default.create(this.textNode),this),this.textNode=document.createTextNode(y.CONTENTS),this.domNode.appendChild(this.textNode))}if(this.remove(),S!=null){var C=[S,T].map(function(x){return Math.max(0,Math.min(N.data.length,x-1))}),O=r(C,2);return S=O[0],T=O[1],{startNode:N,startOffset:S,endNode:N,endOffset:T}}}}},{key:"update",value:function(m,k){var N=this;if(m.some(function(T){return T.type==="characterData"&&T.target===N.textNode})){var S=this.restore();S&&(k.range=S)}}},{key:"value",value:function(){return""}}]),y}(p.default.Embed);b.blotName="cursor",b.className="ql-cursor",b.tagName="span",b.CONTENTS="\uFEFF",o.default=b},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=a(0),s=p(r),d=a(4),u=p(d);function p(_){return _&&_.__esModule?_:{default:_}}function h(_,v){if(!(_ instanceof v))throw new TypeError("Cannot call a class as a function")}function f(_,v){if(!_)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return v&&(typeof v=="object"||typeof v=="function")?v:_}function l(_,v){if(typeof v!="function"&&v!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof v);_.prototype=Object.create(v&&v.prototype,{constructor:{value:_,enumerable:!1,writable:!0,configurable:!0}}),v&&(Object.setPrototypeOf?Object.setPrototypeOf(_,v):_.__proto__=v)}var c=function(_){l(v,_);function v(){return h(this,v),f(this,(v.__proto__||Object.getPrototypeOf(v)).apply(this,arguments))}return v}(s.default.Container);c.allowedChildren=[u.default,d.BlockEmbed,c],o.default=c},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.ColorStyle=o.ColorClass=o.ColorAttributor=void 0;var r=function(){function b(g,y){for(var w=0;w<y.length;w++){var m=y[w];m.enumerable=m.enumerable||!1,m.configurable=!0,"value"in m&&(m.writable=!0),Object.defineProperty(g,m.key,m)}}return function(g,y,w){return y&&b(g.prototype,y),w&&b(g,w),g}}(),s=function b(g,y,w){g===null&&(g=Function.prototype);var m=Object.getOwnPropertyDescriptor(g,y);if(m===void 0){var k=Object.getPrototypeOf(g);return k===null?void 0:b(k,y,w)}else{if("value"in m)return m.value;var N=m.get;return N===void 0?void 0:N.call(w)}},d=a(0),u=p(d);function p(b){return b&&b.__esModule?b:{default:b}}function h(b,g){if(!(b instanceof g))throw new TypeError("Cannot call a class as a function")}function f(b,g){if(!b)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return g&&(typeof g=="object"||typeof g=="function")?g:b}function l(b,g){if(typeof g!="function"&&g!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof g);b.prototype=Object.create(g&&g.prototype,{constructor:{value:b,enumerable:!1,writable:!0,configurable:!0}}),g&&(Object.setPrototypeOf?Object.setPrototypeOf(b,g):b.__proto__=g)}var c=function(b){l(g,b);function g(){return h(this,g),f(this,(g.__proto__||Object.getPrototypeOf(g)).apply(this,arguments))}return r(g,[{key:"value",value:function(w){var m=s(g.prototype.__proto__||Object.getPrototypeOf(g.prototype),"value",this).call(this,w);return m.startsWith("rgb(")?(m=m.replace(/^[^\d]+/,"").replace(/[^\d]+$/,""),"#"+m.split(",").map(function(k){return("00"+parseInt(k).toString(16)).slice(-2)}).join("")):m}}]),g}(u.default.Attributor.Style),_=new u.default.Attributor.Class("color","ql-color",{scope:u.default.Scope.INLINE}),v=new c("color","color",{scope:u.default.Scope.INLINE});o.ColorAttributor=c,o.ColorClass=_,o.ColorStyle=v},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.sanitize=o.default=void 0;var r=function(){function v(b,g){for(var y=0;y<g.length;y++){var w=g[y];w.enumerable=w.enumerable||!1,w.configurable=!0,"value"in w&&(w.writable=!0),Object.defineProperty(b,w.key,w)}}return function(b,g,y){return g&&v(b.prototype,g),y&&v(b,y),b}}(),s=function v(b,g,y){b===null&&(b=Function.prototype);var w=Object.getOwnPropertyDescriptor(b,g);if(w===void 0){var m=Object.getPrototypeOf(b);return m===null?void 0:v(m,g,y)}else{if("value"in w)return w.value;var k=w.get;return k===void 0?void 0:k.call(y)}},d=a(6),u=p(d);function p(v){return v&&v.__esModule?v:{default:v}}function h(v,b){if(!(v instanceof b))throw new TypeError("Cannot call a class as a function")}function f(v,b){if(!v)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return b&&(typeof b=="object"||typeof b=="function")?b:v}function l(v,b){if(typeof b!="function"&&b!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof b);v.prototype=Object.create(b&&b.prototype,{constructor:{value:v,enumerable:!1,writable:!0,configurable:!0}}),b&&(Object.setPrototypeOf?Object.setPrototypeOf(v,b):v.__proto__=b)}var c=function(v){l(b,v);function b(){return h(this,b),f(this,(b.__proto__||Object.getPrototypeOf(b)).apply(this,arguments))}return r(b,[{key:"format",value:function(y,w){if(y!==this.statics.blotName||!w)return s(b.prototype.__proto__||Object.getPrototypeOf(b.prototype),"format",this).call(this,y,w);w=this.constructor.sanitize(w),this.domNode.setAttribute("href",w)}}],[{key:"create",value:function(y){var w=s(b.__proto__||Object.getPrototypeOf(b),"create",this).call(this,y);return y=this.sanitize(y),w.setAttribute("href",y),w.setAttribute("rel","noopener noreferrer"),w.setAttribute("target","_blank"),w}},{key:"formats",value:function(y){return y.getAttribute("href")}},{key:"sanitize",value:function(y){return _(y,this.PROTOCOL_WHITELIST)?y:this.SANITIZED_URL}}]),b}(u.default);c.blotName="link",c.tagName="A",c.SANITIZED_URL="about:blank",c.PROTOCOL_WHITELIST=["http","https","mailto","tel"];function _(v,b){var g=document.createElement("a");g.href=v;var y=g.href.slice(0,g.href.indexOf(":"));return b.indexOf(y)>-1}o.default=c,o.sanitize=_},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(b){return typeof b}:function(b){return b&&typeof Symbol=="function"&&b.constructor===Symbol&&b!==Symbol.prototype?"symbol":typeof b},s=function(){function b(g,y){for(var w=0;w<y.length;w++){var m=y[w];m.enumerable=m.enumerable||!1,m.configurable=!0,"value"in m&&(m.writable=!0),Object.defineProperty(g,m.key,m)}}return function(g,y,w){return y&&b(g.prototype,y),w&&b(g,w),g}}(),d=a(23),u=f(d),p=a(107),h=f(p);function f(b){return b&&b.__esModule?b:{default:b}}function l(b,g){if(!(b instanceof g))throw new TypeError("Cannot call a class as a function")}var c=0;function _(b,g){b.setAttribute(g,b.getAttribute(g)!=="true")}var v=function(){function b(g){var y=this;l(this,b),this.select=g,this.container=document.createElement("span"),this.buildPicker(),this.select.style.display="none",this.select.parentNode.insertBefore(this.container,this.select),this.label.addEventListener("mousedown",function(){y.togglePicker()}),this.label.addEventListener("keydown",function(w){switch(w.keyCode){case u.default.keys.ENTER:y.togglePicker();break;case u.default.keys.ESCAPE:y.escape(),w.preventDefault();break}}),this.select.addEventListener("change",this.update.bind(this))}return s(b,[{key:"togglePicker",value:function(){this.container.classList.toggle("ql-expanded"),_(this.label,"aria-expanded"),_(this.options,"aria-hidden")}},{key:"buildItem",value:function(y){var w=this,m=document.createElement("span");return m.tabIndex="0",m.setAttribute("role","button"),m.classList.add("ql-picker-item"),y.hasAttribute("value")&&m.setAttribute("data-value",y.getAttribute("value")),y.textContent&&m.setAttribute("data-label",y.textContent),m.addEventListener("click",function(){w.selectItem(m,!0)}),m.addEventListener("keydown",function(k){switch(k.keyCode){case u.default.keys.ENTER:w.selectItem(m,!0),k.preventDefault();break;case u.default.keys.ESCAPE:w.escape(),k.preventDefault();break}}),m}},{key:"buildLabel",value:function(){var y=document.createElement("span");return y.classList.add("ql-picker-label"),y.innerHTML=h.default,y.tabIndex="0",y.setAttribute("role","button"),y.setAttribute("aria-expanded","false"),this.container.appendChild(y),y}},{key:"buildOptions",value:function(){var y=this,w=document.createElement("span");w.classList.add("ql-picker-options"),w.setAttribute("aria-hidden","true"),w.tabIndex="-1",w.id="ql-picker-options-"+c,c+=1,this.label.setAttribute("aria-controls",w.id),this.options=w,[].slice.call(this.select.options).forEach(function(m){var k=y.buildItem(m);w.appendChild(k),m.selected===!0&&y.selectItem(k)}),this.container.appendChild(w)}},{key:"buildPicker",value:function(){var y=this;[].slice.call(this.select.attributes).forEach(function(w){y.container.setAttribute(w.name,w.value)}),this.container.classList.add("ql-picker"),this.label=this.buildLabel(),this.buildOptions()}},{key:"escape",value:function(){var y=this;this.close(),setTimeout(function(){return y.label.focus()},1)}},{key:"close",value:function(){this.container.classList.remove("ql-expanded"),this.label.setAttribute("aria-expanded","false"),this.options.setAttribute("aria-hidden","true")}},{key:"selectItem",value:function(y){var w=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1,m=this.container.querySelector(".ql-selected");if(y!==m&&(m!=null&&m.classList.remove("ql-selected"),y!=null&&(y.classList.add("ql-selected"),this.select.selectedIndex=[].indexOf.call(y.parentNode.children,y),y.hasAttribute("data-value")?this.label.setAttribute("data-value",y.getAttribute("data-value")):this.label.removeAttribute("data-value"),y.hasAttribute("data-label")?this.label.setAttribute("data-label",y.getAttribute("data-label")):this.label.removeAttribute("data-label"),w))){if(typeof Event=="function")this.select.dispatchEvent(new Event("change"));else if((typeof Event>"u"?"undefined":r(Event))==="object"){var k=document.createEvent("Event");k.initEvent("change",!0,!0),this.select.dispatchEvent(k)}this.close()}}},{key:"update",value:function(){var y=void 0;if(this.select.selectedIndex>-1){var w=this.container.querySelector(".ql-picker-options").children[this.select.selectedIndex];y=this.select.options[this.select.selectedIndex],this.selectItem(w)}else this.selectItem(null);var m=y!=null&&y!==this.select.querySelector("option[selected]");this.label.classList.toggle("ql-active",m)}}]),b}();o.default=v},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=a(0),s=q(r),d=a(5),u=q(d),p=a(4),h=q(p),f=a(16),l=q(f),c=a(25),_=q(c),v=a(24),b=q(v),g=a(35),y=q(g),w=a(6),m=q(w),k=a(22),N=q(k),S=a(7),T=q(S),M=a(55),E=q(M),C=a(42),O=q(C),x=a(23),P=q(x);function q(G){return G&&G.__esModule?G:{default:G}}u.default.register({"blots/block":h.default,"blots/block/embed":p.BlockEmbed,"blots/break":l.default,"blots/container":_.default,"blots/cursor":b.default,"blots/embed":y.default,"blots/inline":m.default,"blots/scroll":N.default,"blots/text":T.default,"modules/clipboard":E.default,"modules/history":O.default,"modules/keyboard":P.default}),s.default.register(h.default,l.default,b.default,m.default,N.default,T.default),o.default=u.default},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=a(1),s=function(){function d(u){this.domNode=u,this.domNode[r.DATA_KEY]={blot:this}}return Object.defineProperty(d.prototype,"statics",{get:function(){return this.constructor},enumerable:!0,configurable:!0}),d.create=function(u){if(this.tagName==null)throw new r.ParchmentError("Blot definition missing tagName");var p;return Array.isArray(this.tagName)?(typeof u=="string"&&(u=u.toUpperCase(),parseInt(u).toString()===u&&(u=parseInt(u))),typeof u=="number"?p=document.createElement(this.tagName[u-1]):this.tagName.indexOf(u)>-1?p=document.createElement(u):p=document.createElement(this.tagName[0])):p=document.createElement(this.tagName),this.className&&p.classList.add(this.className),p},d.prototype.attach=function(){this.parent!=null&&(this.scroll=this.parent.scroll)},d.prototype.clone=function(){var u=this.domNode.cloneNode(!1);return r.create(u)},d.prototype.detach=function(){this.parent!=null&&this.parent.removeChild(this),delete this.domNode[r.DATA_KEY]},d.prototype.deleteAt=function(u,p){var h=this.isolate(u,p);h.remove()},d.prototype.formatAt=function(u,p,h,f){var l=this.isolate(u,p);if(r.query(h,r.Scope.BLOT)!=null&&f)l.wrap(h,f);else if(r.query(h,r.Scope.ATTRIBUTE)!=null){var c=r.create(this.statics.scope);l.wrap(c),c.format(h,f)}},d.prototype.insertAt=function(u,p,h){var f=h==null?r.create("text",p):r.create(p,h),l=this.split(u);this.parent.insertBefore(f,l)},d.prototype.insertInto=function(u,p){p===void 0&&(p=null),this.parent!=null&&this.parent.children.remove(this);var h=null;u.children.insertBefore(this,p),p!=null&&(h=p.domNode),(this.domNode.parentNode!=u.domNode||this.domNode.nextSibling!=h)&&u.domNode.insertBefore(this.domNode,h),this.parent=u,this.attach()},d.prototype.isolate=function(u,p){var h=this.split(u);return h.split(p),h},d.prototype.length=function(){return 1},d.prototype.offset=function(u){return u===void 0&&(u=this.parent),this.parent==null||this==u?0:this.parent.children.offset(this)+this.parent.offset(u)},d.prototype.optimize=function(u){this.domNode[r.DATA_KEY]!=null&&delete this.domNode[r.DATA_KEY].mutations},d.prototype.remove=function(){this.domNode.parentNode!=null&&this.domNode.parentNode.removeChild(this.domNode),this.detach()},d.prototype.replace=function(u){u.parent!=null&&(u.parent.insertBefore(this,u.next),u.remove())},d.prototype.replaceWith=function(u,p){var h=typeof u=="string"?r.create(u,p):u;return h.replace(this),h},d.prototype.split=function(u,p){return u===0?this:this.next},d.prototype.update=function(u,p){},d.prototype.wrap=function(u,p){var h=typeof u=="string"?r.create(u,p):u;return this.parent!=null&&this.parent.insertBefore(h,this.next),h.appendChild(this),h},d.blotName="abstract",d}();o.default=s},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=a(12),s=a(32),d=a(33),u=a(1),p=function(){function h(f){this.attributes={},this.domNode=f,this.build()}return h.prototype.attribute=function(f,l){l?f.add(this.domNode,l)&&(f.value(this.domNode)!=null?this.attributes[f.attrName]=f:delete this.attributes[f.attrName]):(f.remove(this.domNode),delete this.attributes[f.attrName])},h.prototype.build=function(){var f=this;this.attributes={};var l=r.default.keys(this.domNode),c=s.default.keys(this.domNode),_=d.default.keys(this.domNode);l.concat(c).concat(_).forEach(function(v){var b=u.query(v,u.Scope.ATTRIBUTE);b instanceof r.default&&(f.attributes[b.attrName]=b)})},h.prototype.copy=function(f){var l=this;Object.keys(this.attributes).forEach(function(c){var _=l.attributes[c].value(l.domNode);f.format(c,_)})},h.prototype.move=function(f){var l=this;this.copy(f),Object.keys(this.attributes).forEach(function(c){l.attributes[c].remove(l.domNode)}),this.attributes={}},h.prototype.values=function(){var f=this;return Object.keys(this.attributes).reduce(function(l,c){return l[c]=f.attributes[c].value(f.domNode),l},{})},h}();o.default=p},function(e,o,a){var r=this&&this.__extends||function(){var p=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(h,f){h.__proto__=f}||function(h,f){for(var l in f)f.hasOwnProperty(l)&&(h[l]=f[l])};return function(h,f){p(h,f);function l(){this.constructor=h}h.prototype=f===null?Object.create(f):(l.prototype=f.prototype,new l)}}();Object.defineProperty(o,"__esModule",{value:!0});var s=a(12);function d(p,h){var f=p.getAttribute("class")||"";return f.split(/\s+/).filter(function(l){return l.indexOf(h+"-")===0})}var u=function(p){r(h,p);function h(){return p!==null&&p.apply(this,arguments)||this}return h.keys=function(f){return(f.getAttribute("class")||"").split(/\s+/).map(function(l){return l.split("-").slice(0,-1).join("-")})},h.prototype.add=function(f,l){return this.canAdd(f,l)?(this.remove(f),f.classList.add(this.keyName+"-"+l),!0):!1},h.prototype.remove=function(f){var l=d(f,this.keyName);l.forEach(function(c){f.classList.remove(c)}),f.classList.length===0&&f.removeAttribute("class")},h.prototype.value=function(f){var l=d(f,this.keyName)[0]||"",c=l.slice(this.keyName.length+1);return this.canAdd(f,c)?c:""},h}(s.default);o.default=u},function(e,o,a){var r=this&&this.__extends||function(){var p=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(h,f){h.__proto__=f}||function(h,f){for(var l in f)f.hasOwnProperty(l)&&(h[l]=f[l])};return function(h,f){p(h,f);function l(){this.constructor=h}h.prototype=f===null?Object.create(f):(l.prototype=f.prototype,new l)}}();Object.defineProperty(o,"__esModule",{value:!0});var s=a(12);function d(p){var h=p.split("-"),f=h.slice(1).map(function(l){return l[0].toUpperCase()+l.slice(1)}).join("");return h[0]+f}var u=function(p){r(h,p);function h(){return p!==null&&p.apply(this,arguments)||this}return h.keys=function(f){return(f.getAttribute("style")||"").split(";").map(function(l){var c=l.split(":");return c[0].trim()})},h.prototype.add=function(f,l){return this.canAdd(f,l)?(f.style[d(this.keyName)]=l,!0):!1},h.prototype.remove=function(f){f.style[d(this.keyName)]="",f.getAttribute("style")||f.removeAttribute("style")},h.prototype.value=function(f){var l=f.style[d(this.keyName)];return this.canAdd(f,l)?l:""},h}(s.default);o.default=u},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=function(){function u(p,h){for(var f=0;f<h.length;f++){var l=h[f];l.enumerable=l.enumerable||!1,l.configurable=!0,"value"in l&&(l.writable=!0),Object.defineProperty(p,l.key,l)}}return function(p,h,f){return h&&u(p.prototype,h),f&&u(p,f),p}}();function s(u,p){if(!(u instanceof p))throw new TypeError("Cannot call a class as a function")}var d=function(){function u(p,h){s(this,u),this.quill=p,this.options=h,this.modules={}}return r(u,[{key:"init",value:function(){var h=this;Object.keys(this.options.modules).forEach(function(f){h.modules[f]==null&&h.addModule(f)})}},{key:"addModule",value:function(h){var f=this.quill.constructor.import("modules/"+h);return this.modules[h]=new f(this.quill,this.options.modules[h]||{}),this.modules[h]}}]),u}();d.DEFAULTS={modules:{}},d.themes={default:d},o.default=d},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=function(){function g(y,w){for(var m=0;m<w.length;m++){var k=w[m];k.enumerable=k.enumerable||!1,k.configurable=!0,"value"in k&&(k.writable=!0),Object.defineProperty(y,k.key,k)}}return function(y,w,m){return w&&g(y.prototype,w),m&&g(y,m),y}}(),s=function g(y,w,m){y===null&&(y=Function.prototype);var k=Object.getOwnPropertyDescriptor(y,w);if(k===void 0){var N=Object.getPrototypeOf(y);return N===null?void 0:g(N,w,m)}else{if("value"in k)return k.value;var S=k.get;return S===void 0?void 0:S.call(m)}},d=a(0),u=f(d),p=a(7),h=f(p);function f(g){return g&&g.__esModule?g:{default:g}}function l(g,y){if(!(g instanceof y))throw new TypeError("Cannot call a class as a function")}function c(g,y){if(!g)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return y&&(typeof y=="object"||typeof y=="function")?y:g}function _(g,y){if(typeof y!="function"&&y!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof y);g.prototype=Object.create(y&&y.prototype,{constructor:{value:g,enumerable:!1,writable:!0,configurable:!0}}),y&&(Object.setPrototypeOf?Object.setPrototypeOf(g,y):g.__proto__=y)}var v="\uFEFF",b=function(g){_(y,g);function y(w){l(this,y);var m=c(this,(y.__proto__||Object.getPrototypeOf(y)).call(this,w));return m.contentNode=document.createElement("span"),m.contentNode.setAttribute("contenteditable",!1),[].slice.call(m.domNode.childNodes).forEach(function(k){m.contentNode.appendChild(k)}),m.leftGuard=document.createTextNode(v),m.rightGuard=document.createTextNode(v),m.domNode.appendChild(m.leftGuard),m.domNode.appendChild(m.contentNode),m.domNode.appendChild(m.rightGuard),m}return r(y,[{key:"index",value:function(m,k){return m===this.leftGuard?0:m===this.rightGuard?1:s(y.prototype.__proto__||Object.getPrototypeOf(y.prototype),"index",this).call(this,m,k)}},{key:"restore",value:function(m){var k=void 0,N=void 0,S=m.data.split(v).join("");if(m===this.leftGuard)if(this.prev instanceof h.default){var T=this.prev.length();this.prev.insertAt(T,S),k={startNode:this.prev.domNode,startOffset:T+S.length}}else N=document.createTextNode(S),this.parent.insertBefore(u.default.create(N),this),k={startNode:N,startOffset:S.length};else m===this.rightGuard&&(this.next instanceof h.default?(this.next.insertAt(0,S),k={startNode:this.next.domNode,startOffset:S.length}):(N=document.createTextNode(S),this.parent.insertBefore(u.default.create(N),this.next),k={startNode:N,startOffset:S.length}));return m.data=v,k}},{key:"update",value:function(m,k){var N=this;m.forEach(function(S){if(S.type==="characterData"&&(S.target===N.leftGuard||S.target===N.rightGuard)){var T=N.restore(S.target);T&&(k.range=T)}})}}]),y}(u.default.Embed);o.default=b},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.AlignStyle=o.AlignClass=o.AlignAttribute=void 0;var r=a(0),s=d(r);function d(l){return l&&l.__esModule?l:{default:l}}var u={scope:s.default.Scope.BLOCK,whitelist:["right","center","justify"]},p=new s.default.Attributor.Attribute("align","align",u),h=new s.default.Attributor.Class("align","ql-align",u),f=new s.default.Attributor.Style("align","text-align",u);o.AlignAttribute=p,o.AlignClass=h,o.AlignStyle=f},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.BackgroundStyle=o.BackgroundClass=void 0;var r=a(0),s=u(r),d=a(26);function u(f){return f&&f.__esModule?f:{default:f}}var p=new s.default.Attributor.Class("background","ql-bg",{scope:s.default.Scope.INLINE}),h=new d.ColorAttributor("background","background-color",{scope:s.default.Scope.INLINE});o.BackgroundClass=p,o.BackgroundStyle=h},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.DirectionStyle=o.DirectionClass=o.DirectionAttribute=void 0;var r=a(0),s=d(r);function d(l){return l&&l.__esModule?l:{default:l}}var u={scope:s.default.Scope.BLOCK,whitelist:["rtl"]},p=new s.default.Attributor.Attribute("direction","dir",u),h=new s.default.Attributor.Class("direction","ql-direction",u),f=new s.default.Attributor.Style("direction","direction",u);o.DirectionAttribute=p,o.DirectionClass=h,o.DirectionStyle=f},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.FontClass=o.FontStyle=void 0;var r=function(){function g(y,w){for(var m=0;m<w.length;m++){var k=w[m];k.enumerable=k.enumerable||!1,k.configurable=!0,"value"in k&&(k.writable=!0),Object.defineProperty(y,k.key,k)}}return function(y,w,m){return w&&g(y.prototype,w),m&&g(y,m),y}}(),s=function g(y,w,m){y===null&&(y=Function.prototype);var k=Object.getOwnPropertyDescriptor(y,w);if(k===void 0){var N=Object.getPrototypeOf(y);return N===null?void 0:g(N,w,m)}else{if("value"in k)return k.value;var S=k.get;return S===void 0?void 0:S.call(m)}},d=a(0),u=p(d);function p(g){return g&&g.__esModule?g:{default:g}}function h(g,y){if(!(g instanceof y))throw new TypeError("Cannot call a class as a function")}function f(g,y){if(!g)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return y&&(typeof y=="object"||typeof y=="function")?y:g}function l(g,y){if(typeof y!="function"&&y!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof y);g.prototype=Object.create(y&&y.prototype,{constructor:{value:g,enumerable:!1,writable:!0,configurable:!0}}),y&&(Object.setPrototypeOf?Object.setPrototypeOf(g,y):g.__proto__=y)}var c={scope:u.default.Scope.INLINE,whitelist:["serif","monospace"]},_=new u.default.Attributor.Class("font","ql-font",c),v=function(g){l(y,g);function y(){return h(this,y),f(this,(y.__proto__||Object.getPrototypeOf(y)).apply(this,arguments))}return r(y,[{key:"value",value:function(m){return s(y.prototype.__proto__||Object.getPrototypeOf(y.prototype),"value",this).call(this,m).replace(/["']/g,"")}}]),y}(u.default.Attributor.Style),b=new v("font","font-family",c);o.FontStyle=b,o.FontClass=_},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.SizeStyle=o.SizeClass=void 0;var r=a(0),s=d(r);function d(h){return h&&h.__esModule?h:{default:h}}var u=new s.default.Attributor.Class("size","ql-size",{scope:s.default.Scope.INLINE,whitelist:["small","large","huge"]}),p=new s.default.Attributor.Style("size","font-size",{scope:s.default.Scope.INLINE,whitelist:["10px","18px","32px"]});o.SizeClass=u,o.SizeStyle=p},function(e,o,a){e.exports={align:{"":a(76),center:a(77),right:a(78),justify:a(79)},background:a(80),blockquote:a(81),bold:a(82),clean:a(83),code:a(58),"code-block":a(58),color:a(84),direction:{"":a(85),rtl:a(86)},float:{center:a(87),full:a(88),left:a(89),right:a(90)},formula:a(91),header:{1:a(92),2:a(93)},italic:a(94),image:a(95),indent:{"+1":a(96),"-1":a(97)},link:a(98),list:{ordered:a(99),bullet:a(100),check:a(101)},script:{sub:a(102),super:a(103)},strike:a(104),underline:a(105),video:a(106)}},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.getLastChangeIndex=o.default=void 0;var r=function(){function w(m,k){for(var N=0;N<k.length;N++){var S=k[N];S.enumerable=S.enumerable||!1,S.configurable=!0,"value"in S&&(S.writable=!0),Object.defineProperty(m,S.key,S)}}return function(m,k,N){return k&&w(m.prototype,k),N&&w(m,N),m}}(),s=a(0),d=l(s),u=a(5),p=l(u),h=a(9),f=l(h);function l(w){return w&&w.__esModule?w:{default:w}}function c(w,m){if(!(w instanceof m))throw new TypeError("Cannot call a class as a function")}function _(w,m){if(!w)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return m&&(typeof m=="object"||typeof m=="function")?m:w}function v(w,m){if(typeof m!="function"&&m!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof m);w.prototype=Object.create(m&&m.prototype,{constructor:{value:w,enumerable:!1,writable:!0,configurable:!0}}),m&&(Object.setPrototypeOf?Object.setPrototypeOf(w,m):w.__proto__=m)}var b=function(w){v(m,w);function m(k,N){c(this,m);var S=_(this,(m.__proto__||Object.getPrototypeOf(m)).call(this,k,N));return S.lastRecorded=0,S.ignoreChange=!1,S.clear(),S.quill.on(p.default.events.EDITOR_CHANGE,function(T,M,E,C){T!==p.default.events.TEXT_CHANGE||S.ignoreChange||(!S.options.userOnly||C===p.default.sources.USER?S.record(M,E):S.transform(M))}),S.quill.keyboard.addBinding({key:"Z",shortKey:!0},S.undo.bind(S)),S.quill.keyboard.addBinding({key:"Z",shortKey:!0,shiftKey:!0},S.redo.bind(S)),/Win/i.test(navigator.platform)&&S.quill.keyboard.addBinding({key:"Y",shortKey:!0},S.redo.bind(S)),S}return r(m,[{key:"change",value:function(N,S){if(this.stack[N].length!==0){var T=this.stack[N].pop();this.stack[S].push(T),this.lastRecorded=0,this.ignoreChange=!0,this.quill.updateContents(T[N],p.default.sources.USER),this.ignoreChange=!1;var M=y(T[N]);this.quill.setSelection(M)}}},{key:"clear",value:function(){this.stack={undo:[],redo:[]}}},{key:"cutoff",value:function(){this.lastRecorded=0}},{key:"record",value:function(N,S){if(N.ops.length!==0){this.stack.redo=[];var T=this.quill.getContents().diff(S),M=Date.now();if(this.lastRecorded+this.options.delay>M&&this.stack.undo.length>0){var E=this.stack.undo.pop();T=T.compose(E.undo),N=E.redo.compose(N)}else this.lastRecorded=M;this.stack.undo.push({redo:N,undo:T}),this.stack.undo.length>this.options.maxStack&&this.stack.undo.shift()}}},{key:"redo",value:function(){this.change("redo","undo")}},{key:"transform",value:function(N){this.stack.undo.forEach(function(S){S.undo=N.transform(S.undo,!0),S.redo=N.transform(S.redo,!0)}),this.stack.redo.forEach(function(S){S.undo=N.transform(S.undo,!0),S.redo=N.transform(S.redo,!0)})}},{key:"undo",value:function(){this.change("undo","redo")}}]),m}(f.default);b.DEFAULTS={delay:1e3,maxStack:100,userOnly:!1};function g(w){var m=w.ops[w.ops.length-1];return m==null?!1:m.insert!=null?typeof m.insert=="string"&&m.insert.endsWith(`
|
|
119
|
-
`):m.attributes!=null?Object.keys(m.attributes).some(function(k){return d.default.query(k,d.default.Scope.BLOCK)!=null}):!1}function y(w){var m=w.reduce(function(N,S){return N+=S.delete||0,N},0),k=w.length()-m;return g(w)&&(k-=1),k}o.default=b,o.getLastChangeIndex=y},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.default=o.BaseTooltip=void 0;var r=function(){function j(V,Y){for(var H=0;H<Y.length;H++){var B=Y[H];B.enumerable=B.enumerable||!1,B.configurable=!0,"value"in B&&(B.writable=!0),Object.defineProperty(V,B.key,B)}}return function(V,Y,H){return Y&&j(V.prototype,Y),H&&j(V,H),V}}(),s=function j(V,Y,H){V===null&&(V=Function.prototype);var B=Object.getOwnPropertyDescriptor(V,Y);if(B===void 0){var z=Object.getPrototypeOf(V);return z===null?void 0:j(z,Y,H)}else{if("value"in B)return B.value;var Z=B.get;return Z===void 0?void 0:Z.call(H)}},d=a(3),u=M(d),p=a(2),h=M(p),f=a(8),l=M(f),c=a(23),_=M(c),v=a(34),b=M(v),g=a(59),y=M(g),w=a(60),m=M(w),k=a(28),N=M(k),S=a(61),T=M(S);function M(j){return j&&j.__esModule?j:{default:j}}function E(j,V){if(!(j instanceof V))throw new TypeError("Cannot call a class as a function")}function C(j,V){if(!j)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return V&&(typeof V=="object"||typeof V=="function")?V:j}function O(j,V){if(typeof V!="function"&&V!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof V);j.prototype=Object.create(V&&V.prototype,{constructor:{value:j,enumerable:!1,writable:!0,configurable:!0}}),V&&(Object.setPrototypeOf?Object.setPrototypeOf(j,V):j.__proto__=V)}var x=[!1,"center","right","justify"],P=["#000000","#e60000","#ff9900","#ffff00","#008a00","#0066cc","#9933ff","#ffffff","#facccc","#ffebcc","#ffffcc","#cce8cc","#cce0f5","#ebd6ff","#bbbbbb","#f06666","#ffc266","#ffff66","#66b966","#66a3e0","#c285ff","#888888","#a10000","#b26b00","#b2b200","#006100","#0047b2","#6b24b2","#444444","#5c0000","#663d00","#666600","#003700","#002966","#3d1466"],q=[!1,"serif","monospace"],G=["1","2","3",!1],W=["small",!1,"large","huge"],ie=function(j){O(V,j);function V(Y,H){E(this,V);var B=C(this,(V.__proto__||Object.getPrototypeOf(V)).call(this,Y,H)),z=function Z(J){if(!document.body.contains(Y.root))return document.body.removeEventListener("click",Z);B.tooltip!=null&&!B.tooltip.root.contains(J.target)&&document.activeElement!==B.tooltip.textbox&&!B.quill.hasFocus()&&B.tooltip.hide(),B.pickers!=null&&B.pickers.forEach(function(ne){ne.container.contains(J.target)||ne.close()})};return Y.emitter.listenDOM("click",document.body,z),B}return r(V,[{key:"addModule",value:function(H){var B=s(V.prototype.__proto__||Object.getPrototypeOf(V.prototype),"addModule",this).call(this,H);return H==="toolbar"&&this.extendToolbar(B),B}},{key:"buildButtons",value:function(H,B){H.forEach(function(z){var Z=z.getAttribute("class")||"";Z.split(/\s+/).forEach(function(J){if(J.startsWith("ql-")&&(J=J.slice(3),B[J]!=null))if(J==="direction")z.innerHTML=B[J][""]+B[J].rtl;else if(typeof B[J]=="string")z.innerHTML=B[J];else{var ne=z.value||"";ne!=null&&B[J][ne]&&(z.innerHTML=B[J][ne])}})})}},{key:"buildPickers",value:function(H,B){var z=this;this.pickers=H.map(function(J){if(J.classList.contains("ql-align"))return J.querySelector("option")==null&&A(J,x),new m.default(J,B.align);if(J.classList.contains("ql-background")||J.classList.contains("ql-color")){var ne=J.classList.contains("ql-background")?"background":"color";return J.querySelector("option")==null&&A(J,P,ne==="background"?"#ffffff":"#000000"),new y.default(J,B[ne])}else return J.querySelector("option")==null&&(J.classList.contains("ql-font")?A(J,q):J.classList.contains("ql-header")?A(J,G):J.classList.contains("ql-size")&&A(J,W)),new N.default(J)});var Z=function(){z.pickers.forEach(function(ne){ne.update()})};this.quill.on(l.default.events.EDITOR_CHANGE,Z)}}]),V}(b.default);ie.DEFAULTS=(0,u.default)(!0,{},b.default.DEFAULTS,{modules:{toolbar:{handlers:{formula:function(){this.quill.theme.tooltip.edit("formula")},image:function(){var V=this,Y=this.container.querySelector("input.ql-image[type=file]");Y==null&&(Y=document.createElement("input"),Y.setAttribute("type","file"),Y.setAttribute("accept","image/png, image/gif, image/jpeg, image/bmp, image/x-icon"),Y.classList.add("ql-image"),Y.addEventListener("change",function(){if(Y.files!=null&&Y.files[0]!=null){var H=new FileReader;H.onload=function(B){var z=V.quill.getSelection(!0);V.quill.updateContents(new h.default().retain(z.index).delete(z.length).insert({image:B.target.result}),l.default.sources.USER),V.quill.setSelection(z.index+1,l.default.sources.SILENT),Y.value=""},H.readAsDataURL(Y.files[0])}}),this.container.appendChild(Y)),Y.click()},video:function(){this.quill.theme.tooltip.edit("video")}}}}});var U=function(j){O(V,j);function V(Y,H){E(this,V);var B=C(this,(V.__proto__||Object.getPrototypeOf(V)).call(this,Y,H));return B.textbox=B.root.querySelector('input[type="text"]'),B.listen(),B}return r(V,[{key:"listen",value:function(){var H=this;this.textbox.addEventListener("keydown",function(B){_.default.match(B,"enter")?(H.save(),B.preventDefault()):_.default.match(B,"escape")&&(H.cancel(),B.preventDefault())})}},{key:"cancel",value:function(){this.hide()}},{key:"edit",value:function(){var H=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"link",B=arguments.length>1&&arguments[1]!==void 0?arguments[1]:null;this.root.classList.remove("ql-hidden"),this.root.classList.add("ql-editing"),B!=null?this.textbox.value=B:H!==this.root.getAttribute("data-mode")&&(this.textbox.value=""),this.position(this.quill.getBounds(this.quill.selection.savedRange)),this.textbox.select(),this.textbox.setAttribute("placeholder",this.textbox.getAttribute("data-"+H)||""),this.root.setAttribute("data-mode",H)}},{key:"restoreFocus",value:function(){var H=this.quill.scrollingContainer.scrollTop;this.quill.focus(),this.quill.scrollingContainer.scrollTop=H}},{key:"save",value:function(){var H=this.textbox.value;switch(this.root.getAttribute("data-mode")){case"link":{var B=this.quill.root.scrollTop;this.linkRange?(this.quill.formatText(this.linkRange,"link",H,l.default.sources.USER),delete this.linkRange):(this.restoreFocus(),this.quill.format("link",H,l.default.sources.USER)),this.quill.root.scrollTop=B;break}case"video":H=R(H);case"formula":{if(!H)break;var z=this.quill.getSelection(!0);if(z!=null){var Z=z.index+z.length;this.quill.insertEmbed(Z,this.root.getAttribute("data-mode"),H,l.default.sources.USER),this.root.getAttribute("data-mode")==="formula"&&this.quill.insertText(Z+1," ",l.default.sources.USER),this.quill.setSelection(Z+2,l.default.sources.USER)}break}}this.textbox.value="",this.hide()}}]),V}(T.default);function R(j){var V=j.match(/^(?:(https?):\/\/)?(?:(?:www|m)\.)?youtube\.com\/watch.*v=([a-zA-Z0-9_-]+)/)||j.match(/^(?:(https?):\/\/)?(?:(?:www|m)\.)?youtu\.be\/([a-zA-Z0-9_-]+)/);return V?(V[1]||"https")+"://www.youtube.com/embed/"+V[2]+"?showinfo=0":(V=j.match(/^(?:(https?):\/\/)?(?:www\.)?vimeo\.com\/(\d+)/))?(V[1]||"https")+"://player.vimeo.com/video/"+V[2]+"/":j}function A(j,V){var Y=arguments.length>2&&arguments[2]!==void 0?arguments[2]:!1;V.forEach(function(H){var B=document.createElement("option");H===Y?B.setAttribute("selected","selected"):B.setAttribute("value",H),j.appendChild(B)})}o.BaseTooltip=U,o.default=ie},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=function(){function s(){this.head=this.tail=null,this.length=0}return s.prototype.append=function(){for(var d=[],u=0;u<arguments.length;u++)d[u]=arguments[u];this.insertBefore(d[0],null),d.length>1&&this.append.apply(this,d.slice(1))},s.prototype.contains=function(d){for(var u,p=this.iterator();u=p();)if(u===d)return!0;return!1},s.prototype.insertBefore=function(d,u){d&&(d.next=u,u!=null?(d.prev=u.prev,u.prev!=null&&(u.prev.next=d),u.prev=d,u===this.head&&(this.head=d)):this.tail!=null?(this.tail.next=d,d.prev=this.tail,this.tail=d):(d.prev=null,this.head=this.tail=d),this.length+=1)},s.prototype.offset=function(d){for(var u=0,p=this.head;p!=null;){if(p===d)return u;u+=p.length(),p=p.next}return-1},s.prototype.remove=function(d){this.contains(d)&&(d.prev!=null&&(d.prev.next=d.next),d.next!=null&&(d.next.prev=d.prev),d===this.head&&(this.head=d.next),d===this.tail&&(this.tail=d.prev),this.length-=1)},s.prototype.iterator=function(d){return d===void 0&&(d=this.head),function(){var u=d;return d!=null&&(d=d.next),u}},s.prototype.find=function(d,u){u===void 0&&(u=!1);for(var p,h=this.iterator();p=h();){var f=p.length();if(d<f||u&&d===f&&(p.next==null||p.next.length()!==0))return[p,d];d-=f}return[null,0]},s.prototype.forEach=function(d){for(var u,p=this.iterator();u=p();)d(u)},s.prototype.forEachAt=function(d,u,p){if(!(u<=0))for(var h=this.find(d),f=h[0],l=h[1],c,_=d-l,v=this.iterator(f);(c=v())&&_<d+u;){var b=c.length();d>_?p(c,d-_,Math.min(u,_+b-d)):p(c,0,Math.min(b,d+u-_)),_+=b}},s.prototype.map=function(d){return this.reduce(function(u,p){return u.push(d(p)),u},[])},s.prototype.reduce=function(d,u){for(var p,h=this.iterator();p=h();)u=d(u,p);return u},s}();o.default=r},function(e,o,a){var r=this&&this.__extends||function(){var f=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(l,c){l.__proto__=c}||function(l,c){for(var _ in c)c.hasOwnProperty(_)&&(l[_]=c[_])};return function(l,c){f(l,c);function _(){this.constructor=l}l.prototype=c===null?Object.create(c):(_.prototype=c.prototype,new _)}}();Object.defineProperty(o,"__esModule",{value:!0});var s=a(17),d=a(1),u={attributes:!0,characterData:!0,characterDataOldValue:!0,childList:!0,subtree:!0},p=100,h=function(f){r(l,f);function l(c){var _=f.call(this,c)||this;return _.scroll=_,_.observer=new MutationObserver(function(v){_.update(v)}),_.observer.observe(_.domNode,u),_.attach(),_}return l.prototype.detach=function(){f.prototype.detach.call(this),this.observer.disconnect()},l.prototype.deleteAt=function(c,_){this.update(),c===0&&_===this.length()?this.children.forEach(function(v){v.remove()}):f.prototype.deleteAt.call(this,c,_)},l.prototype.formatAt=function(c,_,v,b){this.update(),f.prototype.formatAt.call(this,c,_,v,b)},l.prototype.insertAt=function(c,_,v){this.update(),f.prototype.insertAt.call(this,c,_,v)},l.prototype.optimize=function(c,_){var v=this;c===void 0&&(c=[]),_===void 0&&(_={}),f.prototype.optimize.call(this,_);for(var b=[].slice.call(this.observer.takeRecords());b.length>0;)c.push(b.pop());for(var g=function(k,N){N===void 0&&(N=!0),!(k==null||k===v)&&k.domNode.parentNode!=null&&(k.domNode[d.DATA_KEY].mutations==null&&(k.domNode[d.DATA_KEY].mutations=[]),N&&g(k.parent))},y=function(k){k.domNode[d.DATA_KEY]==null||k.domNode[d.DATA_KEY].mutations==null||(k instanceof s.default&&k.children.forEach(y),k.optimize(_))},w=c,m=0;w.length>0;m+=1){if(m>=p)throw new Error("[Parchment] Maximum optimize iterations reached");for(w.forEach(function(k){var N=d.find(k.target,!0);N!=null&&(N.domNode===k.target&&(k.type==="childList"?(g(d.find(k.previousSibling,!1)),[].forEach.call(k.addedNodes,function(S){var T=d.find(S,!1);g(T,!1),T instanceof s.default&&T.children.forEach(function(M){g(M,!1)})})):k.type==="attributes"&&g(N.prev)),g(N))}),this.children.forEach(y),w=[].slice.call(this.observer.takeRecords()),b=w.slice();b.length>0;)c.push(b.pop())}},l.prototype.update=function(c,_){var v=this;_===void 0&&(_={}),c=c||this.observer.takeRecords(),c.map(function(b){var g=d.find(b.target,!0);return g==null?null:g.domNode[d.DATA_KEY].mutations==null?(g.domNode[d.DATA_KEY].mutations=[b],g):(g.domNode[d.DATA_KEY].mutations.push(b),null)}).forEach(function(b){b==null||b===v||b.domNode[d.DATA_KEY]==null||b.update(b.domNode[d.DATA_KEY].mutations||[],_)}),this.domNode[d.DATA_KEY].mutations!=null&&f.prototype.update.call(this,this.domNode[d.DATA_KEY].mutations,_),this.optimize(c,_)},l.blotName="scroll",l.defaultChild="block",l.scope=d.Scope.BLOCK_BLOT,l.tagName="DIV",l}(s.default);o.default=h},function(e,o,a){var r=this&&this.__extends||function(){var h=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(f,l){f.__proto__=l}||function(f,l){for(var c in l)l.hasOwnProperty(c)&&(f[c]=l[c])};return function(f,l){h(f,l);function c(){this.constructor=f}f.prototype=l===null?Object.create(l):(c.prototype=l.prototype,new c)}}();Object.defineProperty(o,"__esModule",{value:!0});var s=a(18),d=a(1);function u(h,f){if(Object.keys(h).length!==Object.keys(f).length)return!1;for(var l in h)if(h[l]!==f[l])return!1;return!0}var p=function(h){r(f,h);function f(){return h!==null&&h.apply(this,arguments)||this}return f.formats=function(l){if(l.tagName!==f.tagName)return h.formats.call(this,l)},f.prototype.format=function(l,c){var _=this;l===this.statics.blotName&&!c?(this.children.forEach(function(v){v instanceof s.default||(v=v.wrap(f.blotName,!0)),_.attributes.copy(v)}),this.unwrap()):h.prototype.format.call(this,l,c)},f.prototype.formatAt=function(l,c,_,v){if(this.formats()[_]!=null||d.query(_,d.Scope.ATTRIBUTE)){var b=this.isolate(l,c);b.format(_,v)}else h.prototype.formatAt.call(this,l,c,_,v)},f.prototype.optimize=function(l){h.prototype.optimize.call(this,l);var c=this.formats();if(Object.keys(c).length===0)return this.unwrap();var _=this.next;_ instanceof f&&_.prev===this&&u(c,_.formats())&&(_.moveChildren(this),_.remove())},f.blotName="inline",f.scope=d.Scope.INLINE_BLOT,f.tagName="SPAN",f}(s.default);o.default=p},function(e,o,a){var r=this&&this.__extends||function(){var p=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(h,f){h.__proto__=f}||function(h,f){for(var l in f)f.hasOwnProperty(l)&&(h[l]=f[l])};return function(h,f){p(h,f);function l(){this.constructor=h}h.prototype=f===null?Object.create(f):(l.prototype=f.prototype,new l)}}();Object.defineProperty(o,"__esModule",{value:!0});var s=a(18),d=a(1),u=function(p){r(h,p);function h(){return p!==null&&p.apply(this,arguments)||this}return h.formats=function(f){var l=d.query(h.blotName).tagName;if(f.tagName!==l)return p.formats.call(this,f)},h.prototype.format=function(f,l){d.query(f,d.Scope.BLOCK)!=null&&(f===this.statics.blotName&&!l?this.replaceWith(h.blotName):p.prototype.format.call(this,f,l))},h.prototype.formatAt=function(f,l,c,_){d.query(c,d.Scope.BLOCK)!=null?this.format(c,_):p.prototype.formatAt.call(this,f,l,c,_)},h.prototype.insertAt=function(f,l,c){if(c==null||d.query(l,d.Scope.INLINE)!=null)p.prototype.insertAt.call(this,f,l,c);else{var _=this.split(f),v=d.create(l,c);_.parent.insertBefore(v,_)}},h.prototype.update=function(f,l){navigator.userAgent.match(/Trident/)?this.build():p.prototype.update.call(this,f,l)},h.blotName="block",h.scope=d.Scope.BLOCK_BLOT,h.tagName="P",h}(s.default);o.default=u},function(e,o,a){var r=this&&this.__extends||function(){var u=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(p,h){p.__proto__=h}||function(p,h){for(var f in h)h.hasOwnProperty(f)&&(p[f]=h[f])};return function(p,h){u(p,h);function f(){this.constructor=p}p.prototype=h===null?Object.create(h):(f.prototype=h.prototype,new f)}}();Object.defineProperty(o,"__esModule",{value:!0});var s=a(19),d=function(u){r(p,u);function p(){return u!==null&&u.apply(this,arguments)||this}return p.formats=function(h){},p.prototype.format=function(h,f){u.prototype.formatAt.call(this,0,this.length(),h,f)},p.prototype.formatAt=function(h,f,l,c){h===0&&f===this.length()?this.format(l,c):u.prototype.formatAt.call(this,h,f,l,c)},p.prototype.formats=function(){return this.statics.formats(this.domNode)},p}(s.default);o.default=d},function(e,o,a){var r=this&&this.__extends||function(){var p=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(h,f){h.__proto__=f}||function(h,f){for(var l in f)f.hasOwnProperty(l)&&(h[l]=f[l])};return function(h,f){p(h,f);function l(){this.constructor=h}h.prototype=f===null?Object.create(f):(l.prototype=f.prototype,new l)}}();Object.defineProperty(o,"__esModule",{value:!0});var s=a(19),d=a(1),u=function(p){r(h,p);function h(f){var l=p.call(this,f)||this;return l.text=l.statics.value(l.domNode),l}return h.create=function(f){return document.createTextNode(f)},h.value=function(f){var l=f.data;return l.normalize&&(l=l.normalize()),l},h.prototype.deleteAt=function(f,l){this.domNode.data=this.text=this.text.slice(0,f)+this.text.slice(f+l)},h.prototype.index=function(f,l){return this.domNode===f?l:-1},h.prototype.insertAt=function(f,l,c){c==null?(this.text=this.text.slice(0,f)+l+this.text.slice(f),this.domNode.data=this.text):p.prototype.insertAt.call(this,f,l,c)},h.prototype.length=function(){return this.text.length},h.prototype.optimize=function(f){p.prototype.optimize.call(this,f),this.text=this.statics.value(this.domNode),this.text.length===0?this.remove():this.next instanceof h&&this.next.prev===this&&(this.insertAt(this.length(),this.next.value()),this.next.remove())},h.prototype.position=function(f,l){return[this.domNode,f]},h.prototype.split=function(f,l){if(l===void 0&&(l=!1),!l){if(f===0)return this;if(f===this.length())return this.next}var c=d.create(this.domNode.splitText(f));return this.parent.insertBefore(c,this.next),this.text=this.statics.value(this.domNode),c},h.prototype.update=function(f,l){var c=this;f.some(function(_){return _.type==="characterData"&&_.target===c.domNode})&&(this.text=this.statics.value(this.domNode))},h.prototype.value=function(){return this.text},h.blotName="text",h.scope=d.Scope.INLINE_BLOT,h}(s.default);o.default=u},function(e,o,a){var r=document.createElement("div");if(r.classList.toggle("test-class",!1),r.classList.contains("test-class")){var s=DOMTokenList.prototype.toggle;DOMTokenList.prototype.toggle=function(d,u){return arguments.length>1&&!this.contains(d)==!u?u:s.call(this,d)}}String.prototype.startsWith||(String.prototype.startsWith=function(d,u){return u=u||0,this.substr(u,d.length)===d}),String.prototype.endsWith||(String.prototype.endsWith=function(d,u){var p=this.toString();(typeof u!="number"||!isFinite(u)||Math.floor(u)!==u||u>p.length)&&(u=p.length),u-=d.length;var h=p.indexOf(d,u);return h!==-1&&h===u}),Array.prototype.find||Object.defineProperty(Array.prototype,"find",{value:function(u){if(this===null)throw new TypeError("Array.prototype.find called on null or undefined");if(typeof u!="function")throw new TypeError("predicate must be a function");for(var p=Object(this),h=p.length>>>0,f=arguments[1],l,c=0;c<h;c++)if(l=p[c],u.call(f,l,c,p))return l}}),document.addEventListener("DOMContentLoaded",function(){document.execCommand("enableObjectResizing",!1,!1),document.execCommand("autoUrlDetect",!1,!1)})},function(e,o){var a=-1,r=1,s=0;function d(m,k,N){if(m==k)return m?[[s,m]]:[];(N<0||m.length<N)&&(N=null);var S=f(m,k),T=m.substring(0,S);m=m.substring(S),k=k.substring(S),S=l(m,k);var M=m.substring(m.length-S);m=m.substring(0,m.length-S),k=k.substring(0,k.length-S);var E=u(m,k);return T&&E.unshift([s,T]),M&&E.push([s,M]),_(E),N!=null&&(E=g(E,N)),E=y(E),E}function u(m,k){var N;if(!m)return[[r,k]];if(!k)return[[a,m]];var S=m.length>k.length?m:k,T=m.length>k.length?k:m,M=S.indexOf(T);if(M!=-1)return N=[[r,S.substring(0,M)],[s,T],[r,S.substring(M+T.length)]],m.length>k.length&&(N[0][0]=N[2][0]=a),N;if(T.length==1)return[[a,m],[r,k]];var E=c(m,k);if(E){var C=E[0],O=E[1],x=E[2],P=E[3],q=E[4],G=d(C,x),W=d(O,P);return G.concat([[s,q]],W)}return p(m,k)}function p(m,k){for(var N=m.length,S=k.length,T=Math.ceil((N+S)/2),M=T,E=2*T,C=new Array(E),O=new Array(E),x=0;x<E;x++)C[x]=-1,O[x]=-1;C[M+1]=0,O[M+1]=0;for(var P=N-S,q=P%2!=0,G=0,W=0,ie=0,U=0,R=0;R<T;R++){for(var A=-R+G;A<=R-W;A+=2){var j=M+A,V;A==-R||A!=R&&C[j-1]<C[j+1]?V=C[j+1]:V=C[j-1]+1;for(var Y=V-A;V<N&&Y<S&&m.charAt(V)==k.charAt(Y);)V++,Y++;if(C[j]=V,V>N)W+=2;else if(Y>S)G+=2;else if(q){var H=M+P-A;if(H>=0&&H<E&&O[H]!=-1){var B=N-O[H];if(V>=B)return h(m,k,V,Y)}}}for(var z=-R+ie;z<=R-U;z+=2){var H=M+z,B;z==-R||z!=R&&O[H-1]<O[H+1]?B=O[H+1]:B=O[H-1]+1;for(var Z=B-z;B<N&&Z<S&&m.charAt(N-B-1)==k.charAt(S-Z-1);)B++,Z++;if(O[H]=B,B>N)U+=2;else if(Z>S)ie+=2;else if(!q){var j=M+P-z;if(j>=0&&j<E&&C[j]!=-1){var V=C[j],Y=M+V-j;if(B=N-B,V>=B)return h(m,k,V,Y)}}}}return[[a,m],[r,k]]}function h(m,k,N,S){var T=m.substring(0,N),M=k.substring(0,S),E=m.substring(N),C=k.substring(S),O=d(T,M),x=d(E,C);return O.concat(x)}function f(m,k){if(!m||!k||m.charAt(0)!=k.charAt(0))return 0;for(var N=0,S=Math.min(m.length,k.length),T=S,M=0;N<T;)m.substring(M,T)==k.substring(M,T)?(N=T,M=N):S=T,T=Math.floor((S-N)/2+N);return T}function l(m,k){if(!m||!k||m.charAt(m.length-1)!=k.charAt(k.length-1))return 0;for(var N=0,S=Math.min(m.length,k.length),T=S,M=0;N<T;)m.substring(m.length-T,m.length-M)==k.substring(k.length-T,k.length-M)?(N=T,M=N):S=T,T=Math.floor((S-N)/2+N);return T}function c(m,k){var N=m.length>k.length?m:k,S=m.length>k.length?k:m;if(N.length<4||S.length*2<N.length)return null;function T(W,ie,U){for(var R=W.substring(U,U+Math.floor(W.length/4)),A=-1,j="",V,Y,H,B;(A=ie.indexOf(R,A+1))!=-1;){var z=f(W.substring(U),ie.substring(A)),Z=l(W.substring(0,U),ie.substring(0,A));j.length<Z+z&&(j=ie.substring(A-Z,A)+ie.substring(A,A+z),V=W.substring(0,U-Z),Y=W.substring(U+z),H=ie.substring(0,A-Z),B=ie.substring(A+z))}return j.length*2>=W.length?[V,Y,H,B,j]:null}var M=T(N,S,Math.ceil(N.length/4)),E=T(N,S,Math.ceil(N.length/2)),C;if(!M&&!E)return null;E?M?C=M[4].length>E[4].length?M:E:C=E:C=M;var O,x,P,q;m.length>k.length?(O=C[0],x=C[1],P=C[2],q=C[3]):(P=C[0],q=C[1],O=C[2],x=C[3]);var G=C[4];return[O,x,P,q,G]}function _(m){m.push([s,""]);for(var k=0,N=0,S=0,T="",M="",E;k<m.length;)switch(m[k][0]){case r:S++,M+=m[k][1],k++;break;case a:N++,T+=m[k][1],k++;break;case s:N+S>1?(N!==0&&S!==0&&(E=f(M,T),E!==0&&(k-N-S>0&&m[k-N-S-1][0]==s?m[k-N-S-1][1]+=M.substring(0,E):(m.splice(0,0,[s,M.substring(0,E)]),k++),M=M.substring(E),T=T.substring(E)),E=l(M,T),E!==0&&(m[k][1]=M.substring(M.length-E)+m[k][1],M=M.substring(0,M.length-E),T=T.substring(0,T.length-E))),N===0?m.splice(k-S,N+S,[r,M]):S===0?m.splice(k-N,N+S,[a,T]):m.splice(k-N-S,N+S,[a,T],[r,M]),k=k-N-S+(N?1:0)+(S?1:0)+1):k!==0&&m[k-1][0]==s?(m[k-1][1]+=m[k][1],m.splice(k,1)):k++,S=0,N=0,T="",M="";break}m[m.length-1][1]===""&&m.pop();var C=!1;for(k=1;k<m.length-1;)m[k-1][0]==s&&m[k+1][0]==s&&(m[k][1].substring(m[k][1].length-m[k-1][1].length)==m[k-1][1]?(m[k][1]=m[k-1][1]+m[k][1].substring(0,m[k][1].length-m[k-1][1].length),m[k+1][1]=m[k-1][1]+m[k+1][1],m.splice(k-1,1),C=!0):m[k][1].substring(0,m[k+1][1].length)==m[k+1][1]&&(m[k-1][1]+=m[k+1][1],m[k][1]=m[k][1].substring(m[k+1][1].length)+m[k+1][1],m.splice(k+1,1),C=!0)),k++;C&&_(m)}var v=d;v.INSERT=r,v.DELETE=a,v.EQUAL=s,e.exports=v;function b(m,k){if(k===0)return[s,m];for(var N=0,S=0;S<m.length;S++){var T=m[S];if(T[0]===a||T[0]===s){var M=N+T[1].length;if(k===M)return[S+1,m];if(k<M){m=m.slice();var E=k-N,C=[T[0],T[1].slice(0,E)],O=[T[0],T[1].slice(E)];return m.splice(S,1,C,O),[S+1,m]}else N=M}}throw new Error("cursor_pos is out of bounds!")}function g(m,k){var N=b(m,k),S=N[1],T=N[0],M=S[T],E=S[T+1];if(M==null)return m;if(M[0]!==s)return m;if(E!=null&&M[1]+E[1]===E[1]+M[1])return S.splice(T,2,E,M),w(S,T,2);if(E!=null&&E[1].indexOf(M[1])===0){S.splice(T,2,[E[0],M[1]],[0,M[1]]);var C=E[1].slice(M[1].length);return C.length>0&&S.splice(T+2,0,[E[0],C]),w(S,T,3)}else return m}function y(m){for(var k=!1,N=function(E){return E.charCodeAt(0)>=56320&&E.charCodeAt(0)<=57343},S=function(E){return E.charCodeAt(E.length-1)>=55296&&E.charCodeAt(E.length-1)<=56319},T=2;T<m.length;T+=1)m[T-2][0]===s&&S(m[T-2][1])&&m[T-1][0]===a&&N(m[T-1][1])&&m[T][0]===r&&N(m[T][1])&&(k=!0,m[T-1][1]=m[T-2][1].slice(-1)+m[T-1][1],m[T][1]=m[T-2][1].slice(-1)+m[T][1],m[T-2][1]=m[T-2][1].slice(0,-1));if(!k)return m;for(var M=[],T=0;T<m.length;T+=1)m[T][1].length>0&&M.push(m[T]);return M}function w(m,k,N){for(var S=k+N-1;S>=0&&S>=k-1;S--)if(S+1<m.length){var T=m[S],M=m[S+1];T[0]===M[1]&&m.splice(S,2,[T[0],T[1]+M[1]])}return m}},function(e,o){o=e.exports=typeof Object.keys=="function"?Object.keys:a,o.shim=a;function a(r){var s=[];for(var d in r)s.push(d);return s}},function(e,o){var a=function(){return Object.prototype.toString.call(arguments)}()=="[object Arguments]";o=e.exports=a?r:s,o.supported=r;function r(d){return Object.prototype.toString.call(d)=="[object Arguments]"}o.unsupported=s;function s(d){return d&&typeof d=="object"&&typeof d.length=="number"&&Object.prototype.hasOwnProperty.call(d,"callee")&&!Object.prototype.propertyIsEnumerable.call(d,"callee")||!1}},function(e,o){var a=Object.prototype.hasOwnProperty,r="~";function s(){}Object.create&&(s.prototype=Object.create(null),new s().__proto__||(r=!1));function d(p,h,f){this.fn=p,this.context=h,this.once=f||!1}function u(){this._events=new s,this._eventsCount=0}u.prototype.eventNames=function(){var h=[],f,l;if(this._eventsCount===0)return h;for(l in f=this._events)a.call(f,l)&&h.push(r?l.slice(1):l);return Object.getOwnPropertySymbols?h.concat(Object.getOwnPropertySymbols(f)):h},u.prototype.listeners=function(h,f){var l=r?r+h:h,c=this._events[l];if(f)return!!c;if(!c)return[];if(c.fn)return[c.fn];for(var _=0,v=c.length,b=new Array(v);_<v;_++)b[_]=c[_].fn;return b},u.prototype.emit=function(h,f,l,c,_,v){var b=r?r+h:h;if(!this._events[b])return!1;var g=this._events[b],y=arguments.length,w,m;if(g.fn){switch(g.once&&this.removeListener(h,g.fn,void 0,!0),y){case 1:return g.fn.call(g.context),!0;case 2:return g.fn.call(g.context,f),!0;case 3:return g.fn.call(g.context,f,l),!0;case 4:return g.fn.call(g.context,f,l,c),!0;case 5:return g.fn.call(g.context,f,l,c,_),!0;case 6:return g.fn.call(g.context,f,l,c,_,v),!0}for(m=1,w=new Array(y-1);m<y;m++)w[m-1]=arguments[m];g.fn.apply(g.context,w)}else{var k=g.length,N;for(m=0;m<k;m++)switch(g[m].once&&this.removeListener(h,g[m].fn,void 0,!0),y){case 1:g[m].fn.call(g[m].context);break;case 2:g[m].fn.call(g[m].context,f);break;case 3:g[m].fn.call(g[m].context,f,l);break;case 4:g[m].fn.call(g[m].context,f,l,c);break;default:if(!w)for(N=1,w=new Array(y-1);N<y;N++)w[N-1]=arguments[N];g[m].fn.apply(g[m].context,w)}}return!0},u.prototype.on=function(h,f,l){var c=new d(f,l||this),_=r?r+h:h;return this._events[_]?this._events[_].fn?this._events[_]=[this._events[_],c]:this._events[_].push(c):(this._events[_]=c,this._eventsCount++),this},u.prototype.once=function(h,f,l){var c=new d(f,l||this,!0),_=r?r+h:h;return this._events[_]?this._events[_].fn?this._events[_]=[this._events[_],c]:this._events[_].push(c):(this._events[_]=c,this._eventsCount++),this},u.prototype.removeListener=function(h,f,l,c){var _=r?r+h:h;if(!this._events[_])return this;if(!f)return--this._eventsCount===0?this._events=new s:delete this._events[_],this;var v=this._events[_];if(v.fn)v.fn===f&&(!c||v.once)&&(!l||v.context===l)&&(--this._eventsCount===0?this._events=new s:delete this._events[_]);else{for(var b=0,g=[],y=v.length;b<y;b++)(v[b].fn!==f||c&&!v[b].once||l&&v[b].context!==l)&&g.push(v[b]);g.length?this._events[_]=g.length===1?g[0]:g:--this._eventsCount===0?this._events=new s:delete this._events[_]}return this},u.prototype.removeAllListeners=function(h){var f;return h?(f=r?r+h:h,this._events[f]&&(--this._eventsCount===0?this._events=new s:delete this._events[f])):(this._events=new s,this._eventsCount=0),this},u.prototype.off=u.prototype.removeListener,u.prototype.addListener=u.prototype.on,u.prototype.setMaxListeners=function(){return this},u.prefixed=r,u.EventEmitter=u,typeof e<"u"&&(e.exports=u)},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.matchText=o.matchSpacing=o.matchNewline=o.matchBlot=o.matchAttributor=o.default=void 0;var r=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(Q){return typeof Q}:function(Q){return Q&&typeof Symbol=="function"&&Q.constructor===Symbol&&Q!==Symbol.prototype?"symbol":typeof Q},s=function(){function Q(te,ae){var le=[],re=!0,$e=!1,me=void 0;try{for(var be=te[Symbol.iterator](),He;!(re=(He=be.next()).done)&&(le.push(He.value),!(ae&&le.length===ae));re=!0);}catch(je){$e=!0,me=je}finally{try{!re&&be.return&&be.return()}finally{if($e)throw me}}return le}return function(te,ae){if(Array.isArray(te))return te;if(Symbol.iterator in Object(te))return Q(te,ae);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),d=function(){function Q(te,ae){for(var le=0;le<ae.length;le++){var re=ae[le];re.enumerable=re.enumerable||!1,re.configurable=!0,"value"in re&&(re.writable=!0),Object.defineProperty(te,re.key,re)}}return function(te,ae,le){return ae&&Q(te.prototype,ae),le&&Q(te,le),te}}(),u=a(3),p=O(u),h=a(2),f=O(h),l=a(0),c=O(l),_=a(5),v=O(_),b=a(10),g=O(b),y=a(9),w=O(y),m=a(36),k=a(37),N=a(13),S=O(N),T=a(26),M=a(38),E=a(39),C=a(40);function O(Q){return Q&&Q.__esModule?Q:{default:Q}}function x(Q,te,ae){return te in Q?Object.defineProperty(Q,te,{value:ae,enumerable:!0,configurable:!0,writable:!0}):Q[te]=ae,Q}function P(Q,te){if(!(Q instanceof te))throw new TypeError("Cannot call a class as a function")}function q(Q,te){if(!Q)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return te&&(typeof te=="object"||typeof te=="function")?te:Q}function G(Q,te){if(typeof te!="function"&&te!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof te);Q.prototype=Object.create(te&&te.prototype,{constructor:{value:Q,enumerable:!1,writable:!0,configurable:!0}}),te&&(Object.setPrototypeOf?Object.setPrototypeOf(Q,te):Q.__proto__=te)}var W=(0,g.default)("quill:clipboard"),ie="__ql-matcher",U=[[Node.TEXT_NODE,Pe],[Node.TEXT_NODE,ke],["br",de],[Node.ELEMENT_NODE,ke],[Node.ELEMENT_NODE,ne],[Node.ELEMENT_NODE,Oe],[Node.ELEMENT_NODE,J],[Node.ELEMENT_NODE,Be],["li",ve],["b",Z.bind(Z,"bold")],["i",Z.bind(Z,"italic")],["style",he]],R=[m.AlignAttribute,M.DirectionAttribute].reduce(function(Q,te){return Q[te.keyName]=te,Q},{}),A=[m.AlignStyle,k.BackgroundStyle,T.ColorStyle,M.DirectionStyle,E.FontStyle,C.SizeStyle].reduce(function(Q,te){return Q[te.keyName]=te,Q},{}),j=function(Q){G(te,Q);function te(ae,le){P(this,te);var re=q(this,(te.__proto__||Object.getPrototypeOf(te)).call(this,ae,le));return re.quill.root.addEventListener("paste",re.onPaste.bind(re)),re.container=re.quill.addContainer("ql-clipboard"),re.container.setAttribute("contenteditable",!0),re.container.setAttribute("tabindex",-1),re.matchers=[],U.concat(re.options.matchers).forEach(function($e){var me=s($e,2),be=me[0],He=me[1];!le.matchVisual&&He===Oe||re.addMatcher(be,He)}),re}return d(te,[{key:"addMatcher",value:function(le,re){this.matchers.push([le,re])}},{key:"convert",value:function(le){if(typeof le=="string")return this.container.innerHTML=le.replace(/\>\r?\n +\</g,"><"),this.convert();var re=this.quill.getFormat(this.quill.selection.savedRange.index);if(re[S.default.blotName]){var $e=this.container.innerText;return this.container.innerHTML="",new f.default().insert($e,x({},S.default.blotName,re[S.default.blotName]))}var me=this.prepareMatching(),be=s(me,2),He=be[0],je=be[1],xe=z(this.container,He,je);return H(xe,`
|
|
120
|
-
`)&&
|
|
116
|
+
`);return V.insert(I,D.attributes)}return V.push(D)},new d.default)}o.default=W},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.default=o.Range=void 0;var r=function(){function x(B,E){var C=[],O=!0,N=!1,R=void 0;try{for(var q=B[Symbol.iterator](),W;!(O=(W=q.next()).done)&&(C.push(W.value),!(E&&C.length===E));O=!0);}catch(Y){N=!0,R=Y}finally{try{!O&&q.return&&q.return()}finally{if(N)throw R}}return C}return function(B,E){if(Array.isArray(B))return B;if(Symbol.iterator in Object(B))return x(B,E);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),s=function(){function x(B,E){for(var C=0;C<E.length;C++){var O=E[C];O.enumerable=O.enumerable||!1,O.configurable=!0,"value"in O&&(O.writable=!0),Object.defineProperty(B,O.key,O)}}return function(B,E,C){return E&&x(B.prototype,E),C&&x(B,C),B}}(),l=a(0),u=y(l),d=a(21),p=y(d),f=a(11),c=y(f),h=a(8),v=y(h),m=a(10),_=y(m);function y(x){return x&&x.__esModule?x:{default:x}}function g(x){if(Array.isArray(x)){for(var B=0,E=Array(x.length);B<x.length;B++)E[B]=x[B];return E}else return Array.from(x)}function w(x,B){if(!(x instanceof B))throw new TypeError("Cannot call a class as a function")}var b=(0,_.default)("quill:selection"),k=function x(B){var E=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0;w(this,x),this.index=B,this.length=E},T=function(){function x(B,E){var C=this;w(this,x),this.emitter=E,this.scroll=B,this.composing=!1,this.mouseDown=!1,this.root=this.scroll.domNode,this.cursor=u.default.create("cursor",this),this.lastRange=this.savedRange=new k(0,0),this.handleComposition(),this.handleDragging(),this.emitter.listenDOM("selectionchange",document,function(){C.mouseDown||setTimeout(C.update.bind(C,v.default.sources.USER),1)}),this.emitter.on(v.default.events.EDITOR_CHANGE,function(O,N){O===v.default.events.TEXT_CHANGE&&N.length()>0&&C.update(v.default.sources.SILENT)}),this.emitter.on(v.default.events.SCROLL_BEFORE_UPDATE,function(){if(C.hasFocus()){var O=C.getNativeRange();O!=null&&O.start.node!==C.cursor.textNode&&C.emitter.once(v.default.events.SCROLL_UPDATE,function(){try{C.setNativeRange(O.start.node,O.start.offset,O.end.node,O.end.offset)}catch{}})}}),this.emitter.on(v.default.events.SCROLL_OPTIMIZE,function(O,N){if(N.range){var R=N.range,q=R.startNode,W=R.startOffset,Y=R.endNode,re=R.endOffset;C.setNativeRange(q,W,Y,re)}}),this.update(v.default.sources.SILENT)}return s(x,[{key:"handleComposition",value:function(){var E=this;this.root.addEventListener("compositionstart",function(){E.composing=!0}),this.root.addEventListener("compositionend",function(){if(E.composing=!1,E.cursor.parent){var C=E.cursor.restore();if(!C)return;setTimeout(function(){E.setNativeRange(C.startNode,C.startOffset,C.endNode,C.endOffset)},1)}})}},{key:"handleDragging",value:function(){var E=this;this.emitter.listenDOM("mousedown",document.body,function(){E.mouseDown=!0}),this.emitter.listenDOM("mouseup",document.body,function(){E.mouseDown=!1,E.update(v.default.sources.USER)})}},{key:"focus",value:function(){this.hasFocus()||(this.root.focus(),this.setRange(this.savedRange))}},{key:"format",value:function(E,C){if(!(this.scroll.whitelist!=null&&!this.scroll.whitelist[E])){this.scroll.update();var O=this.getNativeRange();if(!(O==null||!O.native.collapsed||u.default.query(E,u.default.Scope.BLOCK))){if(O.start.node!==this.cursor.textNode){var N=u.default.find(O.start.node,!1);if(N==null)return;if(N instanceof u.default.Leaf){var R=N.split(O.start.offset);N.parent.insertBefore(this.cursor,R)}else N.insertBefore(this.cursor,O.start.node);this.cursor.attach()}this.cursor.format(E,C),this.scroll.optimize(),this.setNativeRange(this.cursor.textNode,this.cursor.textNode.data.length),this.update()}}}},{key:"getBounds",value:function(E){var C=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0,O=this.scroll.length();E=Math.min(E,O-1),C=Math.min(E+C,O-1)-E;var N=void 0,R=this.scroll.leaf(E),q=r(R,2),W=q[0],Y=q[1];if(W==null)return null;var re=W.position(Y,!0),K=r(re,2);N=K[0],Y=K[1];var V=document.createRange();if(C>0){V.setStart(N,Y);var D=this.scroll.leaf(E+C),A=r(D,2);if(W=A[0],Y=A[1],W==null)return null;var I=W.position(Y,!0),U=r(I,2);return N=U[0],Y=U[1],V.setEnd(N,Y),V.getBoundingClientRect()}else{var F="left",L=void 0;return N instanceof Text?(Y<N.data.length?(V.setStart(N,Y),V.setEnd(N,Y+1)):(V.setStart(N,Y-1),V.setEnd(N,Y),F="right"),L=V.getBoundingClientRect()):(L=W.domNode.getBoundingClientRect(),Y>0&&(F="right")),{bottom:L.top+L.height,height:L.height,left:L[F],right:L[F],top:L.top,width:0}}}},{key:"getNativeRange",value:function(){var E=document.getSelection();if(E==null||E.rangeCount<=0)return null;var C=E.getRangeAt(0);if(C==null)return null;var O=this.normalizeNative(C);return b.info("getNativeRange",O),O}},{key:"getRange",value:function(){var E=this.getNativeRange();if(E==null)return[null,null];var C=this.normalizedToRange(E);return[C,E]}},{key:"hasFocus",value:function(){return document.activeElement===this.root}},{key:"normalizedToRange",value:function(E){var C=this,O=[[E.start.node,E.start.offset]];E.native.collapsed||O.push([E.end.node,E.end.offset]);var N=O.map(function(W){var Y=r(W,2),re=Y[0],K=Y[1],V=u.default.find(re,!0),D=V.offset(C.scroll);return K===0?D:V instanceof u.default.Container?D+V.length():D+V.index(re,K)}),R=Math.min(Math.max.apply(Math,g(N)),this.scroll.length()-1),q=Math.min.apply(Math,[R].concat(g(N)));return new k(q,R-q)}},{key:"normalizeNative",value:function(E){if(!S(this.root,E.startContainer)||!E.collapsed&&!S(this.root,E.endContainer))return null;var C={start:{node:E.startContainer,offset:E.startOffset},end:{node:E.endContainer,offset:E.endOffset},native:E};return[C.start,C.end].forEach(function(O){for(var N=O.node,R=O.offset;!(N instanceof Text)&&N.childNodes.length>0;)if(N.childNodes.length>R)N=N.childNodes[R],R=0;else if(N.childNodes.length===R)N=N.lastChild,R=N instanceof Text?N.data.length:N.childNodes.length+1;else break;O.node=N,O.offset=R}),C}},{key:"rangeToNative",value:function(E){var C=this,O=E.collapsed?[E.index]:[E.index,E.index+E.length],N=[],R=this.scroll.length();return O.forEach(function(q,W){q=Math.min(R-1,q);var Y=void 0,re=C.scroll.leaf(q),K=r(re,2),V=K[0],D=K[1],A=V.position(D,W!==0),I=r(A,2);Y=I[0],D=I[1],N.push(Y,D)}),N.length<2&&(N=N.concat(N)),N}},{key:"scrollIntoView",value:function(E){var C=this.lastRange;if(C!=null){var O=this.getBounds(C.index,C.length);if(O!=null){var N=this.scroll.length()-1,R=this.scroll.line(Math.min(C.index,N)),q=r(R,1),W=q[0],Y=W;if(C.length>0){var re=this.scroll.line(Math.min(C.index+C.length,N)),K=r(re,1);Y=K[0]}if(!(W==null||Y==null)){var V=E.getBoundingClientRect();O.top<V.top?E.scrollTop-=V.top-O.top:O.bottom>V.bottom&&(E.scrollTop+=O.bottom-V.bottom)}}}}},{key:"setNativeRange",value:function(E,C){var O=arguments.length>2&&arguments[2]!==void 0?arguments[2]:E,N=arguments.length>3&&arguments[3]!==void 0?arguments[3]:C,R=arguments.length>4&&arguments[4]!==void 0?arguments[4]:!1;if(b.info("setNativeRange",E,C,O,N),!(E!=null&&(this.root.parentNode==null||E.parentNode==null||O.parentNode==null))){var q=document.getSelection();if(q!=null)if(E!=null){this.hasFocus()||this.root.focus();var W=(this.getNativeRange()||{}).native;if(W==null||R||E!==W.startContainer||C!==W.startOffset||O!==W.endContainer||N!==W.endOffset){E.tagName=="BR"&&(C=[].indexOf.call(E.parentNode.childNodes,E),E=E.parentNode),O.tagName=="BR"&&(N=[].indexOf.call(O.parentNode.childNodes,O),O=O.parentNode);var Y=document.createRange();Y.setStart(E,C),Y.setEnd(O,N),q.removeAllRanges(),q.addRange(Y)}}else q.removeAllRanges(),this.root.blur(),document.body.focus()}}},{key:"setRange",value:function(E){var C=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1,O=arguments.length>2&&arguments[2]!==void 0?arguments[2]:v.default.sources.API;if(typeof C=="string"&&(O=C,C=!1),b.info("setRange",E),E!=null){var N=this.rangeToNative(E);this.setNativeRange.apply(this,g(N).concat([C]))}else this.setNativeRange(null);this.update(O)}},{key:"update",value:function(){var E=arguments.length>0&&arguments[0]!==void 0?arguments[0]:v.default.sources.USER,C=this.lastRange,O=this.getRange(),N=r(O,2),R=N[0],q=N[1];if(this.lastRange=R,this.lastRange!=null&&(this.savedRange=this.lastRange),!(0,c.default)(C,this.lastRange)){var W;!this.composing&&q!=null&&q.native.collapsed&&q.start.node!==this.cursor.textNode&&this.cursor.restore();var Y=[v.default.events.SELECTION_CHANGE,(0,p.default)(this.lastRange),(0,p.default)(C),E];if((W=this.emitter).emit.apply(W,[v.default.events.EDITOR_CHANGE].concat(Y)),E!==v.default.sources.SILENT){var re;(re=this.emitter).emit.apply(re,Y)}}}}]),x}();function S(x,B){try{B.parentNode}catch{return!1}return B instanceof Text&&(B=B.parentNode),x.contains(B)}o.Range=k,o.default=T},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=function(){function v(m,_){for(var y=0;y<_.length;y++){var g=_[y];g.enumerable=g.enumerable||!1,g.configurable=!0,"value"in g&&(g.writable=!0),Object.defineProperty(m,g.key,g)}}return function(m,_,y){return _&&v(m.prototype,_),y&&v(m,y),m}}(),s=function v(m,_,y){m===null&&(m=Function.prototype);var g=Object.getOwnPropertyDescriptor(m,_);if(g===void 0){var w=Object.getPrototypeOf(m);return w===null?void 0:v(w,_,y)}else{if("value"in g)return g.value;var b=g.get;return b===void 0?void 0:b.call(y)}},l=a(0),u=d(l);function d(v){return v&&v.__esModule?v:{default:v}}function p(v,m){if(!(v instanceof m))throw new TypeError("Cannot call a class as a function")}function f(v,m){if(!v)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return m&&(typeof m=="object"||typeof m=="function")?m:v}function c(v,m){if(typeof m!="function"&&m!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof m);v.prototype=Object.create(m&&m.prototype,{constructor:{value:v,enumerable:!1,writable:!0,configurable:!0}}),m&&(Object.setPrototypeOf?Object.setPrototypeOf(v,m):v.__proto__=m)}var h=function(v){c(m,v);function m(){return p(this,m),f(this,(m.__proto__||Object.getPrototypeOf(m)).apply(this,arguments))}return r(m,[{key:"insertInto",value:function(y,g){y.children.length===0?s(m.prototype.__proto__||Object.getPrototypeOf(m.prototype),"insertInto",this).call(this,y,g):this.remove()}},{key:"length",value:function(){return 0}},{key:"value",value:function(){return""}}],[{key:"value",value:function(){}}]),m}(u.default.Embed);h.blotName="break",h.tagName="BR",o.default=h},function(e,o,a){var r=this&&this.__extends||function(){var f=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(c,h){c.__proto__=h}||function(c,h){for(var v in h)h.hasOwnProperty(v)&&(c[v]=h[v])};return function(c,h){f(c,h);function v(){this.constructor=c}c.prototype=h===null?Object.create(h):(v.prototype=h.prototype,new v)}}();Object.defineProperty(o,"__esModule",{value:!0});var s=a(44),l=a(30),u=a(1),d=function(f){r(c,f);function c(h){var v=f.call(this,h)||this;return v.build(),v}return c.prototype.appendChild=function(h){this.insertBefore(h)},c.prototype.attach=function(){f.prototype.attach.call(this),this.children.forEach(function(h){h.attach()})},c.prototype.build=function(){var h=this;this.children=new s.default,[].slice.call(this.domNode.childNodes).reverse().forEach(function(v){try{var m=p(v);h.insertBefore(m,h.children.head||void 0)}catch(_){if(_ instanceof u.ParchmentError)return;throw _}})},c.prototype.deleteAt=function(h,v){if(h===0&&v===this.length())return this.remove();this.children.forEachAt(h,v,function(m,_,y){m.deleteAt(_,y)})},c.prototype.descendant=function(h,v){var m=this.children.find(v),_=m[0],y=m[1];return h.blotName==null&&h(_)||h.blotName!=null&&_ instanceof h?[_,y]:_ instanceof c?_.descendant(h,y):[null,-1]},c.prototype.descendants=function(h,v,m){v===void 0&&(v=0),m===void 0&&(m=Number.MAX_VALUE);var _=[],y=m;return this.children.forEachAt(v,m,function(g,w,b){(h.blotName==null&&h(g)||h.blotName!=null&&g instanceof h)&&_.push(g),g instanceof c&&(_=_.concat(g.descendants(h,w,y))),y-=b}),_},c.prototype.detach=function(){this.children.forEach(function(h){h.detach()}),f.prototype.detach.call(this)},c.prototype.formatAt=function(h,v,m,_){this.children.forEachAt(h,v,function(y,g,w){y.formatAt(g,w,m,_)})},c.prototype.insertAt=function(h,v,m){var _=this.children.find(h),y=_[0],g=_[1];if(y)y.insertAt(g,v,m);else{var w=m==null?u.create("text",v):u.create(v,m);this.appendChild(w)}},c.prototype.insertBefore=function(h,v){if(this.statics.allowedChildren!=null&&!this.statics.allowedChildren.some(function(m){return h instanceof m}))throw new u.ParchmentError("Cannot insert "+h.statics.blotName+" into "+this.statics.blotName);h.insertInto(this,v)},c.prototype.length=function(){return this.children.reduce(function(h,v){return h+v.length()},0)},c.prototype.moveChildren=function(h,v){this.children.forEach(function(m){h.insertBefore(m,v)})},c.prototype.optimize=function(h){if(f.prototype.optimize.call(this,h),this.children.length===0)if(this.statics.defaultChild!=null){var v=u.create(this.statics.defaultChild);this.appendChild(v),v.optimize(h)}else this.remove()},c.prototype.path=function(h,v){v===void 0&&(v=!1);var m=this.children.find(h,v),_=m[0],y=m[1],g=[[this,h]];return _ instanceof c?g.concat(_.path(y,v)):(_!=null&&g.push([_,y]),g)},c.prototype.removeChild=function(h){this.children.remove(h)},c.prototype.replace=function(h){h instanceof c&&h.moveChildren(this),f.prototype.replace.call(this,h)},c.prototype.split=function(h,v){if(v===void 0&&(v=!1),!v){if(h===0)return this;if(h===this.length())return this.next}var m=this.clone();return this.parent.insertBefore(m,this.next),this.children.forEachAt(h,this.length(),function(_,y,g){_=_.split(y,v),m.appendChild(_)}),m},c.prototype.unwrap=function(){this.moveChildren(this.parent,this.next),this.remove()},c.prototype.update=function(h,v){var m=this,_=[],y=[];h.forEach(function(g){g.target===m.domNode&&g.type==="childList"&&(_.push.apply(_,g.addedNodes),y.push.apply(y,g.removedNodes))}),y.forEach(function(g){if(!(g.parentNode!=null&&g.tagName!=="IFRAME"&&document.body.compareDocumentPosition(g)&Node.DOCUMENT_POSITION_CONTAINED_BY)){var w=u.find(g);w!=null&&(w.domNode.parentNode==null||w.domNode.parentNode===m.domNode)&&w.detach()}}),_.filter(function(g){return g.parentNode==m.domNode}).sort(function(g,w){return g===w?0:g.compareDocumentPosition(w)&Node.DOCUMENT_POSITION_FOLLOWING?1:-1}).forEach(function(g){var w=null;g.nextSibling!=null&&(w=u.find(g.nextSibling));var b=p(g);(b.next!=w||b.next==null)&&(b.parent!=null&&b.parent.removeChild(m),m.insertBefore(b,w||void 0))})},c}(l.default);function p(f){var c=u.find(f);if(c==null)try{c=u.create(f)}catch{c=u.create(u.Scope.INLINE),[].slice.call(f.childNodes).forEach(function(v){c.domNode.appendChild(v)}),f.parentNode&&f.parentNode.replaceChild(c.domNode,f),c.attach()}return c}o.default=d},function(e,o,a){var r=this&&this.__extends||function(){var f=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(c,h){c.__proto__=h}||function(c,h){for(var v in h)h.hasOwnProperty(v)&&(c[v]=h[v])};return function(c,h){f(c,h);function v(){this.constructor=c}c.prototype=h===null?Object.create(h):(v.prototype=h.prototype,new v)}}();Object.defineProperty(o,"__esModule",{value:!0});var s=a(12),l=a(31),u=a(17),d=a(1),p=function(f){r(c,f);function c(h){var v=f.call(this,h)||this;return v.attributes=new l.default(v.domNode),v}return c.formats=function(h){if(typeof this.tagName=="string")return!0;if(Array.isArray(this.tagName))return h.tagName.toLowerCase()},c.prototype.format=function(h,v){var m=d.query(h);m instanceof s.default?this.attributes.attribute(m,v):v&&m!=null&&(h!==this.statics.blotName||this.formats()[h]!==v)&&this.replaceWith(h,v)},c.prototype.formats=function(){var h=this.attributes.values(),v=this.statics.formats(this.domNode);return v!=null&&(h[this.statics.blotName]=v),h},c.prototype.replaceWith=function(h,v){var m=f.prototype.replaceWith.call(this,h,v);return this.attributes.copy(m),m},c.prototype.update=function(h,v){var m=this;f.prototype.update.call(this,h,v),h.some(function(_){return _.target===m.domNode&&_.type==="attributes"})&&this.attributes.build()},c.prototype.wrap=function(h,v){var m=f.prototype.wrap.call(this,h,v);return m instanceof c&&m.statics.scope===this.statics.scope&&this.attributes.move(m),m},c}(u.default);o.default=p},function(e,o,a){var r=this&&this.__extends||function(){var d=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(p,f){p.__proto__=f}||function(p,f){for(var c in f)f.hasOwnProperty(c)&&(p[c]=f[c])};return function(p,f){d(p,f);function c(){this.constructor=p}p.prototype=f===null?Object.create(f):(c.prototype=f.prototype,new c)}}();Object.defineProperty(o,"__esModule",{value:!0});var s=a(30),l=a(1),u=function(d){r(p,d);function p(){return d!==null&&d.apply(this,arguments)||this}return p.value=function(f){return!0},p.prototype.index=function(f,c){return this.domNode===f||this.domNode.compareDocumentPosition(f)&Node.DOCUMENT_POSITION_CONTAINED_BY?Math.min(c,1):-1},p.prototype.position=function(f,c){var h=[].indexOf.call(this.parent.domNode.childNodes,this.domNode);return f>0&&(h+=1),[this.parent.domNode,h]},p.prototype.value=function(){var f;return f={},f[this.statics.blotName]=this.statics.value(this.domNode)||!0,f},p.scope=l.Scope.INLINE_BLOT,p}(s.default);o.default=u},function(e,o,a){var r=a(11),s=a(3),l={attributes:{compose:function(d,p,f){typeof d!="object"&&(d={}),typeof p!="object"&&(p={});var c=s(!0,{},p);f||(c=Object.keys(c).reduce(function(v,m){return c[m]!=null&&(v[m]=c[m]),v},{}));for(var h in d)d[h]!==void 0&&p[h]===void 0&&(c[h]=d[h]);return Object.keys(c).length>0?c:void 0},diff:function(d,p){typeof d!="object"&&(d={}),typeof p!="object"&&(p={});var f=Object.keys(d).concat(Object.keys(p)).reduce(function(c,h){return r(d[h],p[h])||(c[h]=p[h]===void 0?null:p[h]),c},{});return Object.keys(f).length>0?f:void 0},transform:function(d,p,f){if(typeof d!="object")return p;if(typeof p=="object"){if(!f)return p;var c=Object.keys(p).reduce(function(h,v){return d[v]===void 0&&(h[v]=p[v]),h},{});return Object.keys(c).length>0?c:void 0}}},iterator:function(d){return new u(d)},length:function(d){return typeof d.delete=="number"?d.delete:typeof d.retain=="number"?d.retain:typeof d.insert=="string"?d.insert.length:1}};function u(d){this.ops=d,this.index=0,this.offset=0}u.prototype.hasNext=function(){return this.peekLength()<1/0},u.prototype.next=function(d){d||(d=1/0);var p=this.ops[this.index];if(p){var f=this.offset,c=l.length(p);if(d>=c-f?(d=c-f,this.index+=1,this.offset=0):this.offset+=d,typeof p.delete=="number")return{delete:d};var h={};return p.attributes&&(h.attributes=p.attributes),typeof p.retain=="number"?h.retain=d:typeof p.insert=="string"?h.insert=p.insert.substr(f,d):h.insert=p.insert,h}else return{retain:1/0}},u.prototype.peek=function(){return this.ops[this.index]},u.prototype.peekLength=function(){return this.ops[this.index]?l.length(this.ops[this.index])-this.offset:1/0},u.prototype.peekType=function(){return this.ops[this.index]?typeof this.ops[this.index].delete=="number"?"delete":typeof this.ops[this.index].retain=="number"?"retain":"insert":"retain"},u.prototype.rest=function(){if(this.hasNext()){if(this.offset===0)return this.ops.slice(this.index);var d=this.offset,p=this.index,f=this.next(),c=this.ops.slice(this.index);return this.offset=d,this.index=p,[f].concat(c)}else return[]},e.exports=l},function(e,o){var a=function(){function r(m,_){return _!=null&&m instanceof _}var s;try{s=Map}catch{s=function(){}}var l;try{l=Set}catch{l=function(){}}var u;try{u=Promise}catch{u=function(){}}function d(m,_,y,g,w){typeof _=="object"&&(y=_.depth,g=_.prototype,w=_.includeNonEnumerable,_=_.circular);var b=[],k=[],T=typeof Buffer<"u";typeof _>"u"&&(_=!0),typeof y>"u"&&(y=1/0);function S(x,B){if(x===null)return null;if(B===0)return x;var E,C;if(typeof x!="object")return x;if(r(x,s))E=new s;else if(r(x,l))E=new l;else if(r(x,u))E=new u(function(V,D){x.then(function(A){V(S(A,B-1))},function(A){D(S(A,B-1))})});else if(d.__isArray(x))E=[];else if(d.__isRegExp(x))E=new RegExp(x.source,v(x)),x.lastIndex&&(E.lastIndex=x.lastIndex);else if(d.__isDate(x))E=new Date(x.getTime());else{if(T&&Buffer.isBuffer(x))return Buffer.allocUnsafe?E=Buffer.allocUnsafe(x.length):E=new Buffer(x.length),x.copy(E),E;r(x,Error)?E=Object.create(x):typeof g>"u"?(C=Object.getPrototypeOf(x),E=Object.create(C)):(E=Object.create(g),C=g)}if(_){var O=b.indexOf(x);if(O!=-1)return k[O];b.push(x),k.push(E)}r(x,s)&&x.forEach(function(V,D){var A=S(D,B-1),I=S(V,B-1);E.set(A,I)}),r(x,l)&&x.forEach(function(V){var D=S(V,B-1);E.add(D)});for(var N in x){var R;C&&(R=Object.getOwnPropertyDescriptor(C,N)),!(R&&R.set==null)&&(E[N]=S(x[N],B-1))}if(Object.getOwnPropertySymbols)for(var q=Object.getOwnPropertySymbols(x),N=0;N<q.length;N++){var W=q[N],Y=Object.getOwnPropertyDescriptor(x,W);Y&&!Y.enumerable&&!w||(E[W]=S(x[W],B-1),Y.enumerable||Object.defineProperty(E,W,{enumerable:!1}))}if(w)for(var re=Object.getOwnPropertyNames(x),N=0;N<re.length;N++){var K=re[N],Y=Object.getOwnPropertyDescriptor(x,K);Y&&Y.enumerable||(E[K]=S(x[K],B-1),Object.defineProperty(E,K,{enumerable:!1}))}return E}return S(m,y)}d.clonePrototype=function(_){if(_===null)return null;var y=function(){};return y.prototype=_,new y};function p(m){return Object.prototype.toString.call(m)}d.__objToStr=p;function f(m){return typeof m=="object"&&p(m)==="[object Date]"}d.__isDate=f;function c(m){return typeof m=="object"&&p(m)==="[object Array]"}d.__isArray=c;function h(m){return typeof m=="object"&&p(m)==="[object RegExp]"}d.__isRegExp=h;function v(m){var _="";return m.global&&(_+="g"),m.ignoreCase&&(_+="i"),m.multiline&&(_+="m"),_}return d.__getRegExpFlags=v,d}();typeof e=="object"&&e.exports&&(e.exports=a)},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=function(){function E(C,O){var N=[],R=!0,q=!1,W=void 0;try{for(var Y=C[Symbol.iterator](),re;!(R=(re=Y.next()).done)&&(N.push(re.value),!(O&&N.length===O));R=!0);}catch(K){q=!0,W=K}finally{try{!R&&Y.return&&Y.return()}finally{if(q)throw W}}return N}return function(C,O){if(Array.isArray(C))return C;if(Symbol.iterator in Object(C))return E(C,O);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),s=function(){function E(C,O){for(var N=0;N<O.length;N++){var R=O[N];R.enumerable=R.enumerable||!1,R.configurable=!0,"value"in R&&(R.writable=!0),Object.defineProperty(C,R.key,R)}}return function(C,O,N){return O&&E(C.prototype,O),N&&E(C,N),C}}(),l=function E(C,O,N){C===null&&(C=Function.prototype);var R=Object.getOwnPropertyDescriptor(C,O);if(R===void 0){var q=Object.getPrototypeOf(C);return q===null?void 0:E(q,O,N)}else{if("value"in R)return R.value;var W=R.get;return W===void 0?void 0:W.call(N)}},u=a(0),d=b(u),p=a(8),f=b(p),c=a(4),h=b(c),v=a(16),m=b(v),_=a(13),y=b(_),g=a(25),w=b(g);function b(E){return E&&E.__esModule?E:{default:E}}function k(E,C){if(!(E instanceof C))throw new TypeError("Cannot call a class as a function")}function T(E,C){if(!E)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return C&&(typeof C=="object"||typeof C=="function")?C:E}function S(E,C){if(typeof C!="function"&&C!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof C);E.prototype=Object.create(C&&C.prototype,{constructor:{value:E,enumerable:!1,writable:!0,configurable:!0}}),C&&(Object.setPrototypeOf?Object.setPrototypeOf(E,C):E.__proto__=C)}function x(E){return E instanceof h.default||E instanceof c.BlockEmbed}var B=function(E){S(C,E);function C(O,N){k(this,C);var R=T(this,(C.__proto__||Object.getPrototypeOf(C)).call(this,O));return R.emitter=N.emitter,Array.isArray(N.whitelist)&&(R.whitelist=N.whitelist.reduce(function(q,W){return q[W]=!0,q},{})),R.domNode.addEventListener("DOMNodeInserted",function(){}),R.optimize(),R.enable(),R}return s(C,[{key:"batchStart",value:function(){this.batch=!0}},{key:"batchEnd",value:function(){this.batch=!1,this.optimize()}},{key:"deleteAt",value:function(N,R){var q=this.line(N),W=r(q,2),Y=W[0],re=W[1],K=this.line(N+R),V=r(K,1),D=V[0];if(l(C.prototype.__proto__||Object.getPrototypeOf(C.prototype),"deleteAt",this).call(this,N,R),D!=null&&Y!==D&&re>0){if(Y instanceof c.BlockEmbed||D instanceof c.BlockEmbed){this.optimize();return}if(Y instanceof y.default){var A=Y.newlineIndex(Y.length(),!0);if(A>-1&&(Y=Y.split(A+1),Y===D)){this.optimize();return}}else if(D instanceof y.default){var I=D.newlineIndex(0);I>-1&&D.split(I+1)}var U=D.children.head instanceof m.default?null:D.children.head;Y.moveChildren(D,U),Y.remove()}this.optimize()}},{key:"enable",value:function(){var N=arguments.length>0&&arguments[0]!==void 0?arguments[0]:!0;this.domNode.setAttribute("contenteditable",N)}},{key:"formatAt",value:function(N,R,q,W){this.whitelist!=null&&!this.whitelist[q]||(l(C.prototype.__proto__||Object.getPrototypeOf(C.prototype),"formatAt",this).call(this,N,R,q,W),this.optimize())}},{key:"insertAt",value:function(N,R,q){if(!(q!=null&&this.whitelist!=null&&!this.whitelist[R])){if(N>=this.length())if(q==null||d.default.query(R,d.default.Scope.BLOCK)==null){var W=d.default.create(this.statics.defaultChild);this.appendChild(W),q==null&&R.endsWith(`
|
|
117
|
+
`)&&(R=R.slice(0,-1)),W.insertAt(0,R,q)}else{var Y=d.default.create(R,q);this.appendChild(Y)}else l(C.prototype.__proto__||Object.getPrototypeOf(C.prototype),"insertAt",this).call(this,N,R,q);this.optimize()}}},{key:"insertBefore",value:function(N,R){if(N.statics.scope===d.default.Scope.INLINE_BLOT){var q=d.default.create(this.statics.defaultChild);q.appendChild(N),N=q}l(C.prototype.__proto__||Object.getPrototypeOf(C.prototype),"insertBefore",this).call(this,N,R)}},{key:"leaf",value:function(N){return this.path(N).pop()||[null,-1]}},{key:"line",value:function(N){return N===this.length()?this.line(N-1):this.descendant(x,N)}},{key:"lines",value:function(){var N=arguments.length>0&&arguments[0]!==void 0?arguments[0]:0,R=arguments.length>1&&arguments[1]!==void 0?arguments[1]:Number.MAX_VALUE,q=function W(Y,re,K){var V=[],D=K;return Y.children.forEachAt(re,K,function(A,I,U){x(A)?V.push(A):A instanceof d.default.Container&&(V=V.concat(W(A,I,D))),D-=U}),V};return q(this,N,R)}},{key:"optimize",value:function(){var N=arguments.length>0&&arguments[0]!==void 0?arguments[0]:[],R=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};this.batch!==!0&&(l(C.prototype.__proto__||Object.getPrototypeOf(C.prototype),"optimize",this).call(this,N,R),N.length>0&&this.emitter.emit(f.default.events.SCROLL_OPTIMIZE,N,R))}},{key:"path",value:function(N){return l(C.prototype.__proto__||Object.getPrototypeOf(C.prototype),"path",this).call(this,N).slice(1)}},{key:"update",value:function(N){if(this.batch!==!0){var R=f.default.sources.USER;typeof N=="string"&&(R=N),Array.isArray(N)||(N=this.observer.takeRecords()),N.length>0&&this.emitter.emit(f.default.events.SCROLL_BEFORE_UPDATE,R,N),l(C.prototype.__proto__||Object.getPrototypeOf(C.prototype),"update",this).call(this,N.concat([])),N.length>0&&this.emitter.emit(f.default.events.SCROLL_UPDATE,R,N)}}}]),C}(d.default.Scroll);B.blotName="scroll",B.className="ql-editor",B.tagName="DIV",B.defaultChild="block",B.allowedChildren=[h.default,c.BlockEmbed,w.default],o.default=B},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.SHORTKEY=o.default=void 0;var r=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(L){return typeof L}:function(L){return L&&typeof Symbol=="function"&&L.constructor===Symbol&&L!==Symbol.prototype?"symbol":typeof L},s=function(){function L(z,Z){var J=[],ne=!0,ce=!1,he=void 0;try{for(var be=z[Symbol.iterator](),ke;!(ne=(ke=be.next()).done)&&(J.push(ke.value),!(Z&&J.length===Z));ne=!0);}catch(Oe){ce=!0,he=Oe}finally{try{!ne&&be.return&&be.return()}finally{if(ce)throw he}}return J}return function(z,Z){if(Array.isArray(z))return z;if(Symbol.iterator in Object(z))return L(z,Z);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),l=function(){function L(z,Z){for(var J=0;J<Z.length;J++){var ne=Z[J];ne.enumerable=ne.enumerable||!1,ne.configurable=!0,"value"in ne&&(ne.writable=!0),Object.defineProperty(z,ne.key,ne)}}return function(z,Z,J){return Z&&L(z.prototype,Z),J&&L(z,J),z}}(),u=a(21),d=E(u),p=a(11),f=E(p),c=a(3),h=E(c),v=a(2),m=E(v),_=a(20),y=E(_),g=a(0),w=E(g),b=a(5),k=E(b),T=a(10),S=E(T),x=a(9),B=E(x);function E(L){return L&&L.__esModule?L:{default:L}}function C(L,z,Z){return z in L?Object.defineProperty(L,z,{value:Z,enumerable:!0,configurable:!0,writable:!0}):L[z]=Z,L}function O(L,z){if(!(L instanceof z))throw new TypeError("Cannot call a class as a function")}function N(L,z){if(!L)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return z&&(typeof z=="object"||typeof z=="function")?z:L}function R(L,z){if(typeof z!="function"&&z!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof z);L.prototype=Object.create(z&&z.prototype,{constructor:{value:L,enumerable:!1,writable:!0,configurable:!0}}),z&&(Object.setPrototypeOf?Object.setPrototypeOf(L,z):L.__proto__=z)}var q=(0,S.default)("quill:keyboard"),W=/Mac/i.test(navigator.platform)?"metaKey":"ctrlKey",Y=function(L){R(z,L),l(z,null,[{key:"match",value:function(J,ne){return ne=F(ne),["altKey","ctrlKey","metaKey","shiftKey"].some(function(ce){return!!ne[ce]!==J[ce]&&ne[ce]!==null})?!1:ne.key===(J.which||J.keyCode)}}]);function z(Z,J){O(this,z);var ne=N(this,(z.__proto__||Object.getPrototypeOf(z)).call(this,Z,J));return ne.bindings={},Object.keys(ne.options.bindings).forEach(function(ce){ce==="list autofill"&&Z.scroll.whitelist!=null&&!Z.scroll.whitelist.list||ne.options.bindings[ce]&&ne.addBinding(ne.options.bindings[ce])}),ne.addBinding({key:z.keys.ENTER,shiftKey:null},A),ne.addBinding({key:z.keys.ENTER,metaKey:null,ctrlKey:null,altKey:null},function(){}),/Firefox/i.test(navigator.userAgent)?(ne.addBinding({key:z.keys.BACKSPACE},{collapsed:!0},K),ne.addBinding({key:z.keys.DELETE},{collapsed:!0},V)):(ne.addBinding({key:z.keys.BACKSPACE},{collapsed:!0,prefix:/^.?$/},K),ne.addBinding({key:z.keys.DELETE},{collapsed:!0,suffix:/^.?$/},V)),ne.addBinding({key:z.keys.BACKSPACE},{collapsed:!1},D),ne.addBinding({key:z.keys.DELETE},{collapsed:!1},D),ne.addBinding({key:z.keys.BACKSPACE,altKey:null,ctrlKey:null,metaKey:null,shiftKey:null},{collapsed:!0,offset:0},K),ne.listen(),ne}return l(z,[{key:"addBinding",value:function(J){var ne=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},ce=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{},he=F(J);if(he==null||he.key==null)return q.warn("Attempted to add invalid keyboard binding",he);typeof ne=="function"&&(ne={handler:ne}),typeof ce=="function"&&(ce={handler:ce}),he=(0,h.default)(he,ne,ce),this.bindings[he.key]=this.bindings[he.key]||[],this.bindings[he.key].push(he)}},{key:"listen",value:function(){var J=this;this.quill.root.addEventListener("keydown",function(ne){if(!ne.defaultPrevented){var ce=ne.which||ne.keyCode,he=(J.bindings[ce]||[]).filter(function(Ee){return z.match(ne,Ee)});if(he.length!==0){var be=J.quill.getSelection();if(!(be==null||!J.quill.hasFocus())){var ke=J.quill.getLine(be.index),Oe=s(ke,2),Re=Oe[0],Be=Oe[1],Q=J.quill.getLeaf(be.index),te=s(Q,2),ae=te[0],le=te[1],ie=be.length===0?[ae,le]:J.quill.getLeaf(be.index+be.length),$e=s(ie,2),me=$e[0],ve=$e[1],ze=ae instanceof w.default.Text?ae.value().slice(0,le):"",qe=me instanceof w.default.Text?me.value().slice(ve):"",Ae={collapsed:be.length===0,empty:be.length===0&&Re.length()<=1,format:J.quill.getFormat(be),offset:Be,prefix:ze,suffix:qe},wt=he.some(function(Ee){if(Ee.collapsed!=null&&Ee.collapsed!==Ae.collapsed||Ee.empty!=null&&Ee.empty!==Ae.empty||Ee.offset!=null&&Ee.offset!==Ae.offset)return!1;if(Array.isArray(Ee.format)){if(Ee.format.every(function(rt){return Ae.format[rt]==null}))return!1}else if(r(Ee.format)==="object"&&!Object.keys(Ee.format).every(function(rt){return Ee.format[rt]===!0?Ae.format[rt]!=null:Ee.format[rt]===!1?Ae.format[rt]==null:(0,f.default)(Ee.format[rt],Ae.format[rt])}))return!1;return Ee.prefix!=null&&!Ee.prefix.test(Ae.prefix)||Ee.suffix!=null&&!Ee.suffix.test(Ae.suffix)?!1:Ee.handler.call(J,be,Ae)!==!0});wt&&ne.preventDefault()}}}})}}]),z}(B.default);Y.keys={BACKSPACE:8,TAB:9,ENTER:13,ESCAPE:27,LEFT:37,UP:38,RIGHT:39,DOWN:40,DELETE:46},Y.DEFAULTS={bindings:{bold:U("bold"),italic:U("italic"),underline:U("underline"),indent:{key:Y.keys.TAB,format:["blockquote","indent","list"],handler:function(z,Z){if(Z.collapsed&&Z.offset!==0)return!0;this.quill.format("indent","+1",k.default.sources.USER)}},outdent:{key:Y.keys.TAB,shiftKey:!0,format:["blockquote","indent","list"],handler:function(z,Z){if(Z.collapsed&&Z.offset!==0)return!0;this.quill.format("indent","-1",k.default.sources.USER)}},"outdent backspace":{key:Y.keys.BACKSPACE,collapsed:!0,shiftKey:null,metaKey:null,ctrlKey:null,altKey:null,format:["indent","list"],offset:0,handler:function(z,Z){Z.format.indent!=null?this.quill.format("indent","-1",k.default.sources.USER):Z.format.list!=null&&this.quill.format("list",!1,k.default.sources.USER)}},"indent code-block":I(!0),"outdent code-block":I(!1),"remove tab":{key:Y.keys.TAB,shiftKey:!0,collapsed:!0,prefix:/\t$/,handler:function(z){this.quill.deleteText(z.index-1,1,k.default.sources.USER)}},tab:{key:Y.keys.TAB,handler:function(z){this.quill.history.cutoff();var Z=new m.default().retain(z.index).delete(z.length).insert(" ");this.quill.updateContents(Z,k.default.sources.USER),this.quill.history.cutoff(),this.quill.setSelection(z.index+1,k.default.sources.SILENT)}},"list empty enter":{key:Y.keys.ENTER,collapsed:!0,format:["list"],empty:!0,handler:function(z,Z){this.quill.format("list",!1,k.default.sources.USER),Z.format.indent&&this.quill.format("indent",!1,k.default.sources.USER)}},"checklist enter":{key:Y.keys.ENTER,collapsed:!0,format:{list:"checked"},handler:function(z){var Z=this.quill.getLine(z.index),J=s(Z,2),ne=J[0],ce=J[1],he=(0,h.default)({},ne.formats(),{list:"checked"}),be=new m.default().retain(z.index).insert(`
|
|
118
|
+
`,he).retain(ne.length()-ce-1).retain(1,{list:"unchecked"});this.quill.updateContents(be,k.default.sources.USER),this.quill.setSelection(z.index+1,k.default.sources.SILENT),this.quill.scrollIntoView()}},"header enter":{key:Y.keys.ENTER,collapsed:!0,format:["header"],suffix:/^$/,handler:function(z,Z){var J=this.quill.getLine(z.index),ne=s(J,2),ce=ne[0],he=ne[1],be=new m.default().retain(z.index).insert(`
|
|
119
|
+
`,Z.format).retain(ce.length()-he-1).retain(1,{header:null});this.quill.updateContents(be,k.default.sources.USER),this.quill.setSelection(z.index+1,k.default.sources.SILENT),this.quill.scrollIntoView()}},"list autofill":{key:" ",collapsed:!0,format:{list:!1},prefix:/^\s*?(\d+\.|-|\*|\[ ?\]|\[x\])$/,handler:function(z,Z){var J=Z.prefix.length,ne=this.quill.getLine(z.index),ce=s(ne,2),he=ce[0],be=ce[1];if(be>J)return!0;var ke=void 0;switch(Z.prefix.trim()){case"[]":case"[ ]":ke="unchecked";break;case"[x]":ke="checked";break;case"-":case"*":ke="bullet";break;default:ke="ordered"}this.quill.insertText(z.index," ",k.default.sources.USER),this.quill.history.cutoff();var Oe=new m.default().retain(z.index-be).delete(J+1).retain(he.length()-2-be).retain(1,{list:ke});this.quill.updateContents(Oe,k.default.sources.USER),this.quill.history.cutoff(),this.quill.setSelection(z.index-J,k.default.sources.SILENT)}},"code exit":{key:Y.keys.ENTER,collapsed:!0,format:["code-block"],prefix:/\n\n$/,suffix:/^\s+$/,handler:function(z){var Z=this.quill.getLine(z.index),J=s(Z,2),ne=J[0],ce=J[1],he=new m.default().retain(z.index+ne.length()-ce-2).retain(1,{"code-block":null}).delete(1);this.quill.updateContents(he,k.default.sources.USER)}},"embed left":re(Y.keys.LEFT,!1),"embed left shift":re(Y.keys.LEFT,!0),"embed right":re(Y.keys.RIGHT,!1),"embed right shift":re(Y.keys.RIGHT,!0)}};function re(L,z){var Z,J=L===Y.keys.LEFT?"prefix":"suffix";return Z={key:L,shiftKey:z,altKey:null},C(Z,J,/^$/),C(Z,"handler",function(ce){var he=ce.index;L===Y.keys.RIGHT&&(he+=ce.length+1);var be=this.quill.getLeaf(he),ke=s(be,1),Oe=ke[0];return Oe instanceof w.default.Embed?(L===Y.keys.LEFT?z?this.quill.setSelection(ce.index-1,ce.length+1,k.default.sources.USER):this.quill.setSelection(ce.index-1,k.default.sources.USER):z?this.quill.setSelection(ce.index,ce.length+1,k.default.sources.USER):this.quill.setSelection(ce.index+ce.length+1,k.default.sources.USER),!1):!0}),Z}function K(L,z){if(!(L.index===0||this.quill.getLength()<=1)){var Z=this.quill.getLine(L.index),J=s(Z,1),ne=J[0],ce={};if(z.offset===0){var he=this.quill.getLine(L.index-1),be=s(he,1),ke=be[0];if(ke!=null&&ke.length()>1){var Oe=ne.formats(),Re=this.quill.getFormat(L.index-1,1);ce=y.default.attributes.diff(Oe,Re)||{}}}var Be=/[\uD800-\uDBFF][\uDC00-\uDFFF]$/.test(z.prefix)?2:1;this.quill.deleteText(L.index-Be,Be,k.default.sources.USER),Object.keys(ce).length>0&&this.quill.formatLine(L.index-Be,Be,ce,k.default.sources.USER),this.quill.focus()}}function V(L,z){var Z=/^[\uD800-\uDBFF][\uDC00-\uDFFF]/.test(z.suffix)?2:1;if(!(L.index>=this.quill.getLength()-Z)){var J={},ne=0,ce=this.quill.getLine(L.index),he=s(ce,1),be=he[0];if(z.offset>=be.length()-1){var ke=this.quill.getLine(L.index+1),Oe=s(ke,1),Re=Oe[0];if(Re){var Be=be.formats(),Q=this.quill.getFormat(L.index,1);J=y.default.attributes.diff(Be,Q)||{},ne=Re.length()}}this.quill.deleteText(L.index,Z,k.default.sources.USER),Object.keys(J).length>0&&this.quill.formatLine(L.index+ne-1,Z,J,k.default.sources.USER)}}function D(L){var z=this.quill.getLines(L),Z={};if(z.length>1){var J=z[0].formats(),ne=z[z.length-1].formats();Z=y.default.attributes.diff(ne,J)||{}}this.quill.deleteText(L,k.default.sources.USER),Object.keys(Z).length>0&&this.quill.formatLine(L.index,1,Z,k.default.sources.USER),this.quill.setSelection(L.index,k.default.sources.SILENT),this.quill.focus()}function A(L,z){var Z=this;L.length>0&&this.quill.scroll.deleteAt(L.index,L.length);var J=Object.keys(z.format).reduce(function(ne,ce){return w.default.query(ce,w.default.Scope.BLOCK)&&!Array.isArray(z.format[ce])&&(ne[ce]=z.format[ce]),ne},{});this.quill.insertText(L.index,`
|
|
120
|
+
`,J,k.default.sources.USER),this.quill.setSelection(L.index+1,k.default.sources.SILENT),this.quill.focus(),Object.keys(z.format).forEach(function(ne){J[ne]==null&&(Array.isArray(z.format[ne])||ne!=="link"&&Z.quill.format(ne,z.format[ne],k.default.sources.USER))})}function I(L){return{key:Y.keys.TAB,shiftKey:!L,format:{"code-block":!0},handler:function(Z){var J=w.default.query("code-block"),ne=Z.index,ce=Z.length,he=this.quill.scroll.descendant(J,ne),be=s(he,2),ke=be[0],Oe=be[1];if(ke!=null){var Re=this.quill.getIndex(ke),Be=ke.newlineIndex(Oe,!0)+1,Q=ke.newlineIndex(Re+Oe+ce),te=ke.domNode.textContent.slice(Be,Q).split(`
|
|
121
|
+
`);Oe=0,te.forEach(function(ae,le){L?(ke.insertAt(Be+Oe,J.TAB),Oe+=J.TAB.length,le===0?ne+=J.TAB.length:ce+=J.TAB.length):ae.startsWith(J.TAB)&&(ke.deleteAt(Be+Oe,J.TAB.length),Oe-=J.TAB.length,le===0?ne-=J.TAB.length:ce-=J.TAB.length),Oe+=ae.length+1}),this.quill.update(k.default.sources.USER),this.quill.setSelection(ne,ce,k.default.sources.SILENT)}}}}function U(L){return{key:L[0].toUpperCase(),shortKey:!0,handler:function(Z,J){this.quill.format(L,!J.format[L],k.default.sources.USER)}}}function F(L){if(typeof L=="string"||typeof L=="number")return F({key:L});if((typeof L>"u"?"undefined":r(L))==="object"&&(L=(0,d.default)(L,!1)),typeof L.key=="string")if(Y.keys[L.key.toUpperCase()]!=null)L.key=Y.keys[L.key.toUpperCase()];else if(L.key.length===1)L.key=L.key.toUpperCase().charCodeAt(0);else return null;return L.shortKey&&(L[W]=L.shortKey,delete L.shortKey),L}o.default=Y,o.SHORTKEY=W},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=function(){function y(g,w){var b=[],k=!0,T=!1,S=void 0;try{for(var x=g[Symbol.iterator](),B;!(k=(B=x.next()).done)&&(b.push(B.value),!(w&&b.length===w));k=!0);}catch(E){T=!0,S=E}finally{try{!k&&x.return&&x.return()}finally{if(T)throw S}}return b}return function(g,w){if(Array.isArray(g))return g;if(Symbol.iterator in Object(g))return y(g,w);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),s=function y(g,w,b){g===null&&(g=Function.prototype);var k=Object.getOwnPropertyDescriptor(g,w);if(k===void 0){var T=Object.getPrototypeOf(g);return T===null?void 0:y(T,w,b)}else{if("value"in k)return k.value;var S=k.get;return S===void 0?void 0:S.call(b)}},l=function(){function y(g,w){for(var b=0;b<w.length;b++){var k=w[b];k.enumerable=k.enumerable||!1,k.configurable=!0,"value"in k&&(k.writable=!0),Object.defineProperty(g,k.key,k)}}return function(g,w,b){return w&&y(g.prototype,w),b&&y(g,b),g}}(),u=a(0),d=c(u),p=a(7),f=c(p);function c(y){return y&&y.__esModule?y:{default:y}}function h(y,g){if(!(y instanceof g))throw new TypeError("Cannot call a class as a function")}function v(y,g){if(!y)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return g&&(typeof g=="object"||typeof g=="function")?g:y}function m(y,g){if(typeof g!="function"&&g!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof g);y.prototype=Object.create(g&&g.prototype,{constructor:{value:y,enumerable:!1,writable:!0,configurable:!0}}),g&&(Object.setPrototypeOf?Object.setPrototypeOf(y,g):y.__proto__=g)}var _=function(y){m(g,y),l(g,null,[{key:"value",value:function(){}}]);function g(w,b){h(this,g);var k=v(this,(g.__proto__||Object.getPrototypeOf(g)).call(this,w));return k.selection=b,k.textNode=document.createTextNode(g.CONTENTS),k.domNode.appendChild(k.textNode),k._length=0,k}return l(g,[{key:"detach",value:function(){this.parent!=null&&this.parent.removeChild(this)}},{key:"format",value:function(b,k){if(this._length!==0)return s(g.prototype.__proto__||Object.getPrototypeOf(g.prototype),"format",this).call(this,b,k);for(var T=this,S=0;T!=null&&T.statics.scope!==d.default.Scope.BLOCK_BLOT;)S+=T.offset(T.parent),T=T.parent;T!=null&&(this._length=g.CONTENTS.length,T.optimize(),T.formatAt(S,g.CONTENTS.length,b,k),this._length=0)}},{key:"index",value:function(b,k){return b===this.textNode?0:s(g.prototype.__proto__||Object.getPrototypeOf(g.prototype),"index",this).call(this,b,k)}},{key:"length",value:function(){return this._length}},{key:"position",value:function(){return[this.textNode,this.textNode.data.length]}},{key:"remove",value:function(){s(g.prototype.__proto__||Object.getPrototypeOf(g.prototype),"remove",this).call(this),this.parent=null}},{key:"restore",value:function(){if(!(this.selection.composing||this.parent==null)){var b=this.textNode,k=this.selection.getNativeRange(),T=void 0,S=void 0,x=void 0;if(k!=null&&k.start.node===b&&k.end.node===b){var B=[b,k.start.offset,k.end.offset];T=B[0],S=B[1],x=B[2]}for(;this.domNode.lastChild!=null&&this.domNode.lastChild!==this.textNode;)this.domNode.parentNode.insertBefore(this.domNode.lastChild,this.domNode);if(this.textNode.data!==g.CONTENTS){var E=this.textNode.data.split(g.CONTENTS).join("");this.next instanceof f.default?(T=this.next.domNode,this.next.insertAt(0,E),this.textNode.data=g.CONTENTS):(this.textNode.data=E,this.parent.insertBefore(d.default.create(this.textNode),this),this.textNode=document.createTextNode(g.CONTENTS),this.domNode.appendChild(this.textNode))}if(this.remove(),S!=null){var C=[S,x].map(function(N){return Math.max(0,Math.min(T.data.length,N-1))}),O=r(C,2);return S=O[0],x=O[1],{startNode:T,startOffset:S,endNode:T,endOffset:x}}}}},{key:"update",value:function(b,k){var T=this;if(b.some(function(x){return x.type==="characterData"&&x.target===T.textNode})){var S=this.restore();S&&(k.range=S)}}},{key:"value",value:function(){return""}}]),g}(d.default.Embed);_.blotName="cursor",_.className="ql-cursor",_.tagName="span",_.CONTENTS="\uFEFF",o.default=_},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=a(0),s=d(r),l=a(4),u=d(l);function d(v){return v&&v.__esModule?v:{default:v}}function p(v,m){if(!(v instanceof m))throw new TypeError("Cannot call a class as a function")}function f(v,m){if(!v)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return m&&(typeof m=="object"||typeof m=="function")?m:v}function c(v,m){if(typeof m!="function"&&m!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof m);v.prototype=Object.create(m&&m.prototype,{constructor:{value:v,enumerable:!1,writable:!0,configurable:!0}}),m&&(Object.setPrototypeOf?Object.setPrototypeOf(v,m):v.__proto__=m)}var h=function(v){c(m,v);function m(){return p(this,m),f(this,(m.__proto__||Object.getPrototypeOf(m)).apply(this,arguments))}return m}(s.default.Container);h.allowedChildren=[u.default,l.BlockEmbed,h],o.default=h},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.ColorStyle=o.ColorClass=o.ColorAttributor=void 0;var r=function(){function _(y,g){for(var w=0;w<g.length;w++){var b=g[w];b.enumerable=b.enumerable||!1,b.configurable=!0,"value"in b&&(b.writable=!0),Object.defineProperty(y,b.key,b)}}return function(y,g,w){return g&&_(y.prototype,g),w&&_(y,w),y}}(),s=function _(y,g,w){y===null&&(y=Function.prototype);var b=Object.getOwnPropertyDescriptor(y,g);if(b===void 0){var k=Object.getPrototypeOf(y);return k===null?void 0:_(k,g,w)}else{if("value"in b)return b.value;var T=b.get;return T===void 0?void 0:T.call(w)}},l=a(0),u=d(l);function d(_){return _&&_.__esModule?_:{default:_}}function p(_,y){if(!(_ instanceof y))throw new TypeError("Cannot call a class as a function")}function f(_,y){if(!_)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return y&&(typeof y=="object"||typeof y=="function")?y:_}function c(_,y){if(typeof y!="function"&&y!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof y);_.prototype=Object.create(y&&y.prototype,{constructor:{value:_,enumerable:!1,writable:!0,configurable:!0}}),y&&(Object.setPrototypeOf?Object.setPrototypeOf(_,y):_.__proto__=y)}var h=function(_){c(y,_);function y(){return p(this,y),f(this,(y.__proto__||Object.getPrototypeOf(y)).apply(this,arguments))}return r(y,[{key:"value",value:function(w){var b=s(y.prototype.__proto__||Object.getPrototypeOf(y.prototype),"value",this).call(this,w);return b.startsWith("rgb(")?(b=b.replace(/^[^\d]+/,"").replace(/[^\d]+$/,""),"#"+b.split(",").map(function(k){return("00"+parseInt(k).toString(16)).slice(-2)}).join("")):b}}]),y}(u.default.Attributor.Style),v=new u.default.Attributor.Class("color","ql-color",{scope:u.default.Scope.INLINE}),m=new h("color","color",{scope:u.default.Scope.INLINE});o.ColorAttributor=h,o.ColorClass=v,o.ColorStyle=m},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.sanitize=o.default=void 0;var r=function(){function m(_,y){for(var g=0;g<y.length;g++){var w=y[g];w.enumerable=w.enumerable||!1,w.configurable=!0,"value"in w&&(w.writable=!0),Object.defineProperty(_,w.key,w)}}return function(_,y,g){return y&&m(_.prototype,y),g&&m(_,g),_}}(),s=function m(_,y,g){_===null&&(_=Function.prototype);var w=Object.getOwnPropertyDescriptor(_,y);if(w===void 0){var b=Object.getPrototypeOf(_);return b===null?void 0:m(b,y,g)}else{if("value"in w)return w.value;var k=w.get;return k===void 0?void 0:k.call(g)}},l=a(6),u=d(l);function d(m){return m&&m.__esModule?m:{default:m}}function p(m,_){if(!(m instanceof _))throw new TypeError("Cannot call a class as a function")}function f(m,_){if(!m)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return _&&(typeof _=="object"||typeof _=="function")?_:m}function c(m,_){if(typeof _!="function"&&_!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof _);m.prototype=Object.create(_&&_.prototype,{constructor:{value:m,enumerable:!1,writable:!0,configurable:!0}}),_&&(Object.setPrototypeOf?Object.setPrototypeOf(m,_):m.__proto__=_)}var h=function(m){c(_,m);function _(){return p(this,_),f(this,(_.__proto__||Object.getPrototypeOf(_)).apply(this,arguments))}return r(_,[{key:"format",value:function(g,w){if(g!==this.statics.blotName||!w)return s(_.prototype.__proto__||Object.getPrototypeOf(_.prototype),"format",this).call(this,g,w);w=this.constructor.sanitize(w),this.domNode.setAttribute("href",w)}}],[{key:"create",value:function(g){var w=s(_.__proto__||Object.getPrototypeOf(_),"create",this).call(this,g);return g=this.sanitize(g),w.setAttribute("href",g),w.setAttribute("rel","noopener noreferrer"),w.setAttribute("target","_blank"),w}},{key:"formats",value:function(g){return g.getAttribute("href")}},{key:"sanitize",value:function(g){return v(g,this.PROTOCOL_WHITELIST)?g:this.SANITIZED_URL}}]),_}(u.default);h.blotName="link",h.tagName="A",h.SANITIZED_URL="about:blank",h.PROTOCOL_WHITELIST=["http","https","mailto","tel"];function v(m,_){var y=document.createElement("a");y.href=m;var g=y.href.slice(0,y.href.indexOf(":"));return _.indexOf(g)>-1}o.default=h,o.sanitize=v},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(_){return typeof _}:function(_){return _&&typeof Symbol=="function"&&_.constructor===Symbol&&_!==Symbol.prototype?"symbol":typeof _},s=function(){function _(y,g){for(var w=0;w<g.length;w++){var b=g[w];b.enumerable=b.enumerable||!1,b.configurable=!0,"value"in b&&(b.writable=!0),Object.defineProperty(y,b.key,b)}}return function(y,g,w){return g&&_(y.prototype,g),w&&_(y,w),y}}(),l=a(23),u=f(l),d=a(107),p=f(d);function f(_){return _&&_.__esModule?_:{default:_}}function c(_,y){if(!(_ instanceof y))throw new TypeError("Cannot call a class as a function")}var h=0;function v(_,y){_.setAttribute(y,_.getAttribute(y)!=="true")}var m=function(){function _(y){var g=this;c(this,_),this.select=y,this.container=document.createElement("span"),this.buildPicker(),this.select.style.display="none",this.select.parentNode.insertBefore(this.container,this.select),this.label.addEventListener("mousedown",function(){g.togglePicker()}),this.label.addEventListener("keydown",function(w){switch(w.keyCode){case u.default.keys.ENTER:g.togglePicker();break;case u.default.keys.ESCAPE:g.escape(),w.preventDefault();break}}),this.select.addEventListener("change",this.update.bind(this))}return s(_,[{key:"togglePicker",value:function(){this.container.classList.toggle("ql-expanded"),v(this.label,"aria-expanded"),v(this.options,"aria-hidden")}},{key:"buildItem",value:function(g){var w=this,b=document.createElement("span");return b.tabIndex="0",b.setAttribute("role","button"),b.classList.add("ql-picker-item"),g.hasAttribute("value")&&b.setAttribute("data-value",g.getAttribute("value")),g.textContent&&b.setAttribute("data-label",g.textContent),b.addEventListener("click",function(){w.selectItem(b,!0)}),b.addEventListener("keydown",function(k){switch(k.keyCode){case u.default.keys.ENTER:w.selectItem(b,!0),k.preventDefault();break;case u.default.keys.ESCAPE:w.escape(),k.preventDefault();break}}),b}},{key:"buildLabel",value:function(){var g=document.createElement("span");return g.classList.add("ql-picker-label"),g.innerHTML=p.default,g.tabIndex="0",g.setAttribute("role","button"),g.setAttribute("aria-expanded","false"),this.container.appendChild(g),g}},{key:"buildOptions",value:function(){var g=this,w=document.createElement("span");w.classList.add("ql-picker-options"),w.setAttribute("aria-hidden","true"),w.tabIndex="-1",w.id="ql-picker-options-"+h,h+=1,this.label.setAttribute("aria-controls",w.id),this.options=w,[].slice.call(this.select.options).forEach(function(b){var k=g.buildItem(b);w.appendChild(k),b.selected===!0&&g.selectItem(k)}),this.container.appendChild(w)}},{key:"buildPicker",value:function(){var g=this;[].slice.call(this.select.attributes).forEach(function(w){g.container.setAttribute(w.name,w.value)}),this.container.classList.add("ql-picker"),this.label=this.buildLabel(),this.buildOptions()}},{key:"escape",value:function(){var g=this;this.close(),setTimeout(function(){return g.label.focus()},1)}},{key:"close",value:function(){this.container.classList.remove("ql-expanded"),this.label.setAttribute("aria-expanded","false"),this.options.setAttribute("aria-hidden","true")}},{key:"selectItem",value:function(g){var w=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1,b=this.container.querySelector(".ql-selected");if(g!==b&&(b!=null&&b.classList.remove("ql-selected"),g!=null&&(g.classList.add("ql-selected"),this.select.selectedIndex=[].indexOf.call(g.parentNode.children,g),g.hasAttribute("data-value")?this.label.setAttribute("data-value",g.getAttribute("data-value")):this.label.removeAttribute("data-value"),g.hasAttribute("data-label")?this.label.setAttribute("data-label",g.getAttribute("data-label")):this.label.removeAttribute("data-label"),w))){if(typeof Event=="function")this.select.dispatchEvent(new Event("change"));else if((typeof Event>"u"?"undefined":r(Event))==="object"){var k=document.createEvent("Event");k.initEvent("change",!0,!0),this.select.dispatchEvent(k)}this.close()}}},{key:"update",value:function(){var g=void 0;if(this.select.selectedIndex>-1){var w=this.container.querySelector(".ql-picker-options").children[this.select.selectedIndex];g=this.select.options[this.select.selectedIndex],this.selectItem(w)}else this.selectItem(null);var b=g!=null&&g!==this.select.querySelector("option[selected]");this.label.classList.toggle("ql-active",b)}}]),_}();o.default=m},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=a(0),s=q(r),l=a(5),u=q(l),d=a(4),p=q(d),f=a(16),c=q(f),h=a(25),v=q(h),m=a(24),_=q(m),y=a(35),g=q(y),w=a(6),b=q(w),k=a(22),T=q(k),S=a(7),x=q(S),B=a(55),E=q(B),C=a(42),O=q(C),N=a(23),R=q(N);function q(W){return W&&W.__esModule?W:{default:W}}u.default.register({"blots/block":p.default,"blots/block/embed":d.BlockEmbed,"blots/break":c.default,"blots/container":v.default,"blots/cursor":_.default,"blots/embed":g.default,"blots/inline":b.default,"blots/scroll":T.default,"blots/text":x.default,"modules/clipboard":E.default,"modules/history":O.default,"modules/keyboard":R.default}),s.default.register(p.default,c.default,_.default,b.default,T.default,x.default),o.default=u.default},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=a(1),s=function(){function l(u){this.domNode=u,this.domNode[r.DATA_KEY]={blot:this}}return Object.defineProperty(l.prototype,"statics",{get:function(){return this.constructor},enumerable:!0,configurable:!0}),l.create=function(u){if(this.tagName==null)throw new r.ParchmentError("Blot definition missing tagName");var d;return Array.isArray(this.tagName)?(typeof u=="string"&&(u=u.toUpperCase(),parseInt(u).toString()===u&&(u=parseInt(u))),typeof u=="number"?d=document.createElement(this.tagName[u-1]):this.tagName.indexOf(u)>-1?d=document.createElement(u):d=document.createElement(this.tagName[0])):d=document.createElement(this.tagName),this.className&&d.classList.add(this.className),d},l.prototype.attach=function(){this.parent!=null&&(this.scroll=this.parent.scroll)},l.prototype.clone=function(){var u=this.domNode.cloneNode(!1);return r.create(u)},l.prototype.detach=function(){this.parent!=null&&this.parent.removeChild(this),delete this.domNode[r.DATA_KEY]},l.prototype.deleteAt=function(u,d){var p=this.isolate(u,d);p.remove()},l.prototype.formatAt=function(u,d,p,f){var c=this.isolate(u,d);if(r.query(p,r.Scope.BLOT)!=null&&f)c.wrap(p,f);else if(r.query(p,r.Scope.ATTRIBUTE)!=null){var h=r.create(this.statics.scope);c.wrap(h),h.format(p,f)}},l.prototype.insertAt=function(u,d,p){var f=p==null?r.create("text",d):r.create(d,p),c=this.split(u);this.parent.insertBefore(f,c)},l.prototype.insertInto=function(u,d){d===void 0&&(d=null),this.parent!=null&&this.parent.children.remove(this);var p=null;u.children.insertBefore(this,d),d!=null&&(p=d.domNode),(this.domNode.parentNode!=u.domNode||this.domNode.nextSibling!=p)&&u.domNode.insertBefore(this.domNode,p),this.parent=u,this.attach()},l.prototype.isolate=function(u,d){var p=this.split(u);return p.split(d),p},l.prototype.length=function(){return 1},l.prototype.offset=function(u){return u===void 0&&(u=this.parent),this.parent==null||this==u?0:this.parent.children.offset(this)+this.parent.offset(u)},l.prototype.optimize=function(u){this.domNode[r.DATA_KEY]!=null&&delete this.domNode[r.DATA_KEY].mutations},l.prototype.remove=function(){this.domNode.parentNode!=null&&this.domNode.parentNode.removeChild(this.domNode),this.detach()},l.prototype.replace=function(u){u.parent!=null&&(u.parent.insertBefore(this,u.next),u.remove())},l.prototype.replaceWith=function(u,d){var p=typeof u=="string"?r.create(u,d):u;return p.replace(this),p},l.prototype.split=function(u,d){return u===0?this:this.next},l.prototype.update=function(u,d){},l.prototype.wrap=function(u,d){var p=typeof u=="string"?r.create(u,d):u;return this.parent!=null&&this.parent.insertBefore(p,this.next),p.appendChild(this),p},l.blotName="abstract",l}();o.default=s},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=a(12),s=a(32),l=a(33),u=a(1),d=function(){function p(f){this.attributes={},this.domNode=f,this.build()}return p.prototype.attribute=function(f,c){c?f.add(this.domNode,c)&&(f.value(this.domNode)!=null?this.attributes[f.attrName]=f:delete this.attributes[f.attrName]):(f.remove(this.domNode),delete this.attributes[f.attrName])},p.prototype.build=function(){var f=this;this.attributes={};var c=r.default.keys(this.domNode),h=s.default.keys(this.domNode),v=l.default.keys(this.domNode);c.concat(h).concat(v).forEach(function(m){var _=u.query(m,u.Scope.ATTRIBUTE);_ instanceof r.default&&(f.attributes[_.attrName]=_)})},p.prototype.copy=function(f){var c=this;Object.keys(this.attributes).forEach(function(h){var v=c.attributes[h].value(c.domNode);f.format(h,v)})},p.prototype.move=function(f){var c=this;this.copy(f),Object.keys(this.attributes).forEach(function(h){c.attributes[h].remove(c.domNode)}),this.attributes={}},p.prototype.values=function(){var f=this;return Object.keys(this.attributes).reduce(function(c,h){return c[h]=f.attributes[h].value(f.domNode),c},{})},p}();o.default=d},function(e,o,a){var r=this&&this.__extends||function(){var d=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(p,f){p.__proto__=f}||function(p,f){for(var c in f)f.hasOwnProperty(c)&&(p[c]=f[c])};return function(p,f){d(p,f);function c(){this.constructor=p}p.prototype=f===null?Object.create(f):(c.prototype=f.prototype,new c)}}();Object.defineProperty(o,"__esModule",{value:!0});var s=a(12);function l(d,p){var f=d.getAttribute("class")||"";return f.split(/\s+/).filter(function(c){return c.indexOf(p+"-")===0})}var u=function(d){r(p,d);function p(){return d!==null&&d.apply(this,arguments)||this}return p.keys=function(f){return(f.getAttribute("class")||"").split(/\s+/).map(function(c){return c.split("-").slice(0,-1).join("-")})},p.prototype.add=function(f,c){return this.canAdd(f,c)?(this.remove(f),f.classList.add(this.keyName+"-"+c),!0):!1},p.prototype.remove=function(f){var c=l(f,this.keyName);c.forEach(function(h){f.classList.remove(h)}),f.classList.length===0&&f.removeAttribute("class")},p.prototype.value=function(f){var c=l(f,this.keyName)[0]||"",h=c.slice(this.keyName.length+1);return this.canAdd(f,h)?h:""},p}(s.default);o.default=u},function(e,o,a){var r=this&&this.__extends||function(){var d=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(p,f){p.__proto__=f}||function(p,f){for(var c in f)f.hasOwnProperty(c)&&(p[c]=f[c])};return function(p,f){d(p,f);function c(){this.constructor=p}p.prototype=f===null?Object.create(f):(c.prototype=f.prototype,new c)}}();Object.defineProperty(o,"__esModule",{value:!0});var s=a(12);function l(d){var p=d.split("-"),f=p.slice(1).map(function(c){return c[0].toUpperCase()+c.slice(1)}).join("");return p[0]+f}var u=function(d){r(p,d);function p(){return d!==null&&d.apply(this,arguments)||this}return p.keys=function(f){return(f.getAttribute("style")||"").split(";").map(function(c){var h=c.split(":");return h[0].trim()})},p.prototype.add=function(f,c){return this.canAdd(f,c)?(f.style[l(this.keyName)]=c,!0):!1},p.prototype.remove=function(f){f.style[l(this.keyName)]="",f.getAttribute("style")||f.removeAttribute("style")},p.prototype.value=function(f){var c=f.style[l(this.keyName)];return this.canAdd(f,c)?c:""},p}(s.default);o.default=u},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=function(){function u(d,p){for(var f=0;f<p.length;f++){var c=p[f];c.enumerable=c.enumerable||!1,c.configurable=!0,"value"in c&&(c.writable=!0),Object.defineProperty(d,c.key,c)}}return function(d,p,f){return p&&u(d.prototype,p),f&&u(d,f),d}}();function s(u,d){if(!(u instanceof d))throw new TypeError("Cannot call a class as a function")}var l=function(){function u(d,p){s(this,u),this.quill=d,this.options=p,this.modules={}}return r(u,[{key:"init",value:function(){var p=this;Object.keys(this.options.modules).forEach(function(f){p.modules[f]==null&&p.addModule(f)})}},{key:"addModule",value:function(p){var f=this.quill.constructor.import("modules/"+p);return this.modules[p]=new f(this.quill,this.options.modules[p]||{}),this.modules[p]}}]),u}();l.DEFAULTS={modules:{}},l.themes={default:l},o.default=l},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=function(){function y(g,w){for(var b=0;b<w.length;b++){var k=w[b];k.enumerable=k.enumerable||!1,k.configurable=!0,"value"in k&&(k.writable=!0),Object.defineProperty(g,k.key,k)}}return function(g,w,b){return w&&y(g.prototype,w),b&&y(g,b),g}}(),s=function y(g,w,b){g===null&&(g=Function.prototype);var k=Object.getOwnPropertyDescriptor(g,w);if(k===void 0){var T=Object.getPrototypeOf(g);return T===null?void 0:y(T,w,b)}else{if("value"in k)return k.value;var S=k.get;return S===void 0?void 0:S.call(b)}},l=a(0),u=f(l),d=a(7),p=f(d);function f(y){return y&&y.__esModule?y:{default:y}}function c(y,g){if(!(y instanceof g))throw new TypeError("Cannot call a class as a function")}function h(y,g){if(!y)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return g&&(typeof g=="object"||typeof g=="function")?g:y}function v(y,g){if(typeof g!="function"&&g!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof g);y.prototype=Object.create(g&&g.prototype,{constructor:{value:y,enumerable:!1,writable:!0,configurable:!0}}),g&&(Object.setPrototypeOf?Object.setPrototypeOf(y,g):y.__proto__=g)}var m="\uFEFF",_=function(y){v(g,y);function g(w){c(this,g);var b=h(this,(g.__proto__||Object.getPrototypeOf(g)).call(this,w));return b.contentNode=document.createElement("span"),b.contentNode.setAttribute("contenteditable",!1),[].slice.call(b.domNode.childNodes).forEach(function(k){b.contentNode.appendChild(k)}),b.leftGuard=document.createTextNode(m),b.rightGuard=document.createTextNode(m),b.domNode.appendChild(b.leftGuard),b.domNode.appendChild(b.contentNode),b.domNode.appendChild(b.rightGuard),b}return r(g,[{key:"index",value:function(b,k){return b===this.leftGuard?0:b===this.rightGuard?1:s(g.prototype.__proto__||Object.getPrototypeOf(g.prototype),"index",this).call(this,b,k)}},{key:"restore",value:function(b){var k=void 0,T=void 0,S=b.data.split(m).join("");if(b===this.leftGuard)if(this.prev instanceof p.default){var x=this.prev.length();this.prev.insertAt(x,S),k={startNode:this.prev.domNode,startOffset:x+S.length}}else T=document.createTextNode(S),this.parent.insertBefore(u.default.create(T),this),k={startNode:T,startOffset:S.length};else b===this.rightGuard&&(this.next instanceof p.default?(this.next.insertAt(0,S),k={startNode:this.next.domNode,startOffset:S.length}):(T=document.createTextNode(S),this.parent.insertBefore(u.default.create(T),this.next),k={startNode:T,startOffset:S.length}));return b.data=m,k}},{key:"update",value:function(b,k){var T=this;b.forEach(function(S){if(S.type==="characterData"&&(S.target===T.leftGuard||S.target===T.rightGuard)){var x=T.restore(S.target);x&&(k.range=x)}})}}]),g}(u.default.Embed);o.default=_},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.AlignStyle=o.AlignClass=o.AlignAttribute=void 0;var r=a(0),s=l(r);function l(c){return c&&c.__esModule?c:{default:c}}var u={scope:s.default.Scope.BLOCK,whitelist:["right","center","justify"]},d=new s.default.Attributor.Attribute("align","align",u),p=new s.default.Attributor.Class("align","ql-align",u),f=new s.default.Attributor.Style("align","text-align",u);o.AlignAttribute=d,o.AlignClass=p,o.AlignStyle=f},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.BackgroundStyle=o.BackgroundClass=void 0;var r=a(0),s=u(r),l=a(26);function u(f){return f&&f.__esModule?f:{default:f}}var d=new s.default.Attributor.Class("background","ql-bg",{scope:s.default.Scope.INLINE}),p=new l.ColorAttributor("background","background-color",{scope:s.default.Scope.INLINE});o.BackgroundClass=d,o.BackgroundStyle=p},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.DirectionStyle=o.DirectionClass=o.DirectionAttribute=void 0;var r=a(0),s=l(r);function l(c){return c&&c.__esModule?c:{default:c}}var u={scope:s.default.Scope.BLOCK,whitelist:["rtl"]},d=new s.default.Attributor.Attribute("direction","dir",u),p=new s.default.Attributor.Class("direction","ql-direction",u),f=new s.default.Attributor.Style("direction","direction",u);o.DirectionAttribute=d,o.DirectionClass=p,o.DirectionStyle=f},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.FontClass=o.FontStyle=void 0;var r=function(){function y(g,w){for(var b=0;b<w.length;b++){var k=w[b];k.enumerable=k.enumerable||!1,k.configurable=!0,"value"in k&&(k.writable=!0),Object.defineProperty(g,k.key,k)}}return function(g,w,b){return w&&y(g.prototype,w),b&&y(g,b),g}}(),s=function y(g,w,b){g===null&&(g=Function.prototype);var k=Object.getOwnPropertyDescriptor(g,w);if(k===void 0){var T=Object.getPrototypeOf(g);return T===null?void 0:y(T,w,b)}else{if("value"in k)return k.value;var S=k.get;return S===void 0?void 0:S.call(b)}},l=a(0),u=d(l);function d(y){return y&&y.__esModule?y:{default:y}}function p(y,g){if(!(y instanceof g))throw new TypeError("Cannot call a class as a function")}function f(y,g){if(!y)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return g&&(typeof g=="object"||typeof g=="function")?g:y}function c(y,g){if(typeof g!="function"&&g!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof g);y.prototype=Object.create(g&&g.prototype,{constructor:{value:y,enumerable:!1,writable:!0,configurable:!0}}),g&&(Object.setPrototypeOf?Object.setPrototypeOf(y,g):y.__proto__=g)}var h={scope:u.default.Scope.INLINE,whitelist:["serif","monospace"]},v=new u.default.Attributor.Class("font","ql-font",h),m=function(y){c(g,y);function g(){return p(this,g),f(this,(g.__proto__||Object.getPrototypeOf(g)).apply(this,arguments))}return r(g,[{key:"value",value:function(b){return s(g.prototype.__proto__||Object.getPrototypeOf(g.prototype),"value",this).call(this,b).replace(/["']/g,"")}}]),g}(u.default.Attributor.Style),_=new m("font","font-family",h);o.FontStyle=_,o.FontClass=v},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.SizeStyle=o.SizeClass=void 0;var r=a(0),s=l(r);function l(p){return p&&p.__esModule?p:{default:p}}var u=new s.default.Attributor.Class("size","ql-size",{scope:s.default.Scope.INLINE,whitelist:["small","large","huge"]}),d=new s.default.Attributor.Style("size","font-size",{scope:s.default.Scope.INLINE,whitelist:["10px","18px","32px"]});o.SizeClass=u,o.SizeStyle=d},function(e,o,a){e.exports={align:{"":a(76),center:a(77),right:a(78),justify:a(79)},background:a(80),blockquote:a(81),bold:a(82),clean:a(83),code:a(58),"code-block":a(58),color:a(84),direction:{"":a(85),rtl:a(86)},float:{center:a(87),full:a(88),left:a(89),right:a(90)},formula:a(91),header:{1:a(92),2:a(93)},italic:a(94),image:a(95),indent:{"+1":a(96),"-1":a(97)},link:a(98),list:{ordered:a(99),bullet:a(100),check:a(101)},script:{sub:a(102),super:a(103)},strike:a(104),underline:a(105),video:a(106)}},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.getLastChangeIndex=o.default=void 0;var r=function(){function w(b,k){for(var T=0;T<k.length;T++){var S=k[T];S.enumerable=S.enumerable||!1,S.configurable=!0,"value"in S&&(S.writable=!0),Object.defineProperty(b,S.key,S)}}return function(b,k,T){return k&&w(b.prototype,k),T&&w(b,T),b}}(),s=a(0),l=c(s),u=a(5),d=c(u),p=a(9),f=c(p);function c(w){return w&&w.__esModule?w:{default:w}}function h(w,b){if(!(w instanceof b))throw new TypeError("Cannot call a class as a function")}function v(w,b){if(!w)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return b&&(typeof b=="object"||typeof b=="function")?b:w}function m(w,b){if(typeof b!="function"&&b!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof b);w.prototype=Object.create(b&&b.prototype,{constructor:{value:w,enumerable:!1,writable:!0,configurable:!0}}),b&&(Object.setPrototypeOf?Object.setPrototypeOf(w,b):w.__proto__=b)}var _=function(w){m(b,w);function b(k,T){h(this,b);var S=v(this,(b.__proto__||Object.getPrototypeOf(b)).call(this,k,T));return S.lastRecorded=0,S.ignoreChange=!1,S.clear(),S.quill.on(d.default.events.EDITOR_CHANGE,function(x,B,E,C){x!==d.default.events.TEXT_CHANGE||S.ignoreChange||(!S.options.userOnly||C===d.default.sources.USER?S.record(B,E):S.transform(B))}),S.quill.keyboard.addBinding({key:"Z",shortKey:!0},S.undo.bind(S)),S.quill.keyboard.addBinding({key:"Z",shortKey:!0,shiftKey:!0},S.redo.bind(S)),/Win/i.test(navigator.platform)&&S.quill.keyboard.addBinding({key:"Y",shortKey:!0},S.redo.bind(S)),S}return r(b,[{key:"change",value:function(T,S){if(this.stack[T].length!==0){var x=this.stack[T].pop();this.stack[S].push(x),this.lastRecorded=0,this.ignoreChange=!0,this.quill.updateContents(x[T],d.default.sources.USER),this.ignoreChange=!1;var B=g(x[T]);this.quill.setSelection(B)}}},{key:"clear",value:function(){this.stack={undo:[],redo:[]}}},{key:"cutoff",value:function(){this.lastRecorded=0}},{key:"record",value:function(T,S){if(T.ops.length!==0){this.stack.redo=[];var x=this.quill.getContents().diff(S),B=Date.now();if(this.lastRecorded+this.options.delay>B&&this.stack.undo.length>0){var E=this.stack.undo.pop();x=x.compose(E.undo),T=E.redo.compose(T)}else this.lastRecorded=B;this.stack.undo.push({redo:T,undo:x}),this.stack.undo.length>this.options.maxStack&&this.stack.undo.shift()}}},{key:"redo",value:function(){this.change("redo","undo")}},{key:"transform",value:function(T){this.stack.undo.forEach(function(S){S.undo=T.transform(S.undo,!0),S.redo=T.transform(S.redo,!0)}),this.stack.redo.forEach(function(S){S.undo=T.transform(S.undo,!0),S.redo=T.transform(S.redo,!0)})}},{key:"undo",value:function(){this.change("undo","redo")}}]),b}(f.default);_.DEFAULTS={delay:1e3,maxStack:100,userOnly:!1};function y(w){var b=w.ops[w.ops.length-1];return b==null?!1:b.insert!=null?typeof b.insert=="string"&&b.insert.endsWith(`
|
|
122
|
+
`):b.attributes!=null?Object.keys(b.attributes).some(function(k){return l.default.query(k,l.default.Scope.BLOCK)!=null}):!1}function g(w){var b=w.reduce(function(T,S){return T+=S.delete||0,T},0),k=w.length()-b;return y(w)&&(k-=1),k}o.default=_,o.getLastChangeIndex=g},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.default=o.BaseTooltip=void 0;var r=function(){function A(I,U){for(var F=0;F<U.length;F++){var L=U[F];L.enumerable=L.enumerable||!1,L.configurable=!0,"value"in L&&(L.writable=!0),Object.defineProperty(I,L.key,L)}}return function(I,U,F){return U&&A(I.prototype,U),F&&A(I,F),I}}(),s=function A(I,U,F){I===null&&(I=Function.prototype);var L=Object.getOwnPropertyDescriptor(I,U);if(L===void 0){var z=Object.getPrototypeOf(I);return z===null?void 0:A(z,U,F)}else{if("value"in L)return L.value;var Z=L.get;return Z===void 0?void 0:Z.call(F)}},l=a(3),u=B(l),d=a(2),p=B(d),f=a(8),c=B(f),h=a(23),v=B(h),m=a(34),_=B(m),y=a(59),g=B(y),w=a(60),b=B(w),k=a(28),T=B(k),S=a(61),x=B(S);function B(A){return A&&A.__esModule?A:{default:A}}function E(A,I){if(!(A instanceof I))throw new TypeError("Cannot call a class as a function")}function C(A,I){if(!A)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return I&&(typeof I=="object"||typeof I=="function")?I:A}function O(A,I){if(typeof I!="function"&&I!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof I);A.prototype=Object.create(I&&I.prototype,{constructor:{value:A,enumerable:!1,writable:!0,configurable:!0}}),I&&(Object.setPrototypeOf?Object.setPrototypeOf(A,I):A.__proto__=I)}var N=[!1,"center","right","justify"],R=["#000000","#e60000","#ff9900","#ffff00","#008a00","#0066cc","#9933ff","#ffffff","#facccc","#ffebcc","#ffffcc","#cce8cc","#cce0f5","#ebd6ff","#bbbbbb","#f06666","#ffc266","#ffff66","#66b966","#66a3e0","#c285ff","#888888","#a10000","#b26b00","#b2b200","#006100","#0047b2","#6b24b2","#444444","#5c0000","#663d00","#666600","#003700","#002966","#3d1466"],q=[!1,"serif","monospace"],W=["1","2","3",!1],Y=["small",!1,"large","huge"],re=function(A){O(I,A);function I(U,F){E(this,I);var L=C(this,(I.__proto__||Object.getPrototypeOf(I)).call(this,U,F)),z=function Z(J){if(!document.body.contains(U.root))return document.body.removeEventListener("click",Z);L.tooltip!=null&&!L.tooltip.root.contains(J.target)&&document.activeElement!==L.tooltip.textbox&&!L.quill.hasFocus()&&L.tooltip.hide(),L.pickers!=null&&L.pickers.forEach(function(ne){ne.container.contains(J.target)||ne.close()})};return U.emitter.listenDOM("click",document.body,z),L}return r(I,[{key:"addModule",value:function(F){var L=s(I.prototype.__proto__||Object.getPrototypeOf(I.prototype),"addModule",this).call(this,F);return F==="toolbar"&&this.extendToolbar(L),L}},{key:"buildButtons",value:function(F,L){F.forEach(function(z){var Z=z.getAttribute("class")||"";Z.split(/\s+/).forEach(function(J){if(J.startsWith("ql-")&&(J=J.slice(3),L[J]!=null))if(J==="direction")z.innerHTML=L[J][""]+L[J].rtl;else if(typeof L[J]=="string")z.innerHTML=L[J];else{var ne=z.value||"";ne!=null&&L[J][ne]&&(z.innerHTML=L[J][ne])}})})}},{key:"buildPickers",value:function(F,L){var z=this;this.pickers=F.map(function(J){if(J.classList.contains("ql-align"))return J.querySelector("option")==null&&D(J,N),new b.default(J,L.align);if(J.classList.contains("ql-background")||J.classList.contains("ql-color")){var ne=J.classList.contains("ql-background")?"background":"color";return J.querySelector("option")==null&&D(J,R,ne==="background"?"#ffffff":"#000000"),new g.default(J,L[ne])}else return J.querySelector("option")==null&&(J.classList.contains("ql-font")?D(J,q):J.classList.contains("ql-header")?D(J,W):J.classList.contains("ql-size")&&D(J,Y)),new T.default(J)});var Z=function(){z.pickers.forEach(function(ne){ne.update()})};this.quill.on(c.default.events.EDITOR_CHANGE,Z)}}]),I}(_.default);re.DEFAULTS=(0,u.default)(!0,{},_.default.DEFAULTS,{modules:{toolbar:{handlers:{formula:function(){this.quill.theme.tooltip.edit("formula")},image:function(){var I=this,U=this.container.querySelector("input.ql-image[type=file]");U==null&&(U=document.createElement("input"),U.setAttribute("type","file"),U.setAttribute("accept","image/png, image/gif, image/jpeg, image/bmp, image/x-icon"),U.classList.add("ql-image"),U.addEventListener("change",function(){if(U.files!=null&&U.files[0]!=null){var F=new FileReader;F.onload=function(L){var z=I.quill.getSelection(!0);I.quill.updateContents(new p.default().retain(z.index).delete(z.length).insert({image:L.target.result}),c.default.sources.USER),I.quill.setSelection(z.index+1,c.default.sources.SILENT),U.value=""},F.readAsDataURL(U.files[0])}}),this.container.appendChild(U)),U.click()},video:function(){this.quill.theme.tooltip.edit("video")}}}}});var K=function(A){O(I,A);function I(U,F){E(this,I);var L=C(this,(I.__proto__||Object.getPrototypeOf(I)).call(this,U,F));return L.textbox=L.root.querySelector('input[type="text"]'),L.listen(),L}return r(I,[{key:"listen",value:function(){var F=this;this.textbox.addEventListener("keydown",function(L){v.default.match(L,"enter")?(F.save(),L.preventDefault()):v.default.match(L,"escape")&&(F.cancel(),L.preventDefault())})}},{key:"cancel",value:function(){this.hide()}},{key:"edit",value:function(){var F=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"link",L=arguments.length>1&&arguments[1]!==void 0?arguments[1]:null;this.root.classList.remove("ql-hidden"),this.root.classList.add("ql-editing"),L!=null?this.textbox.value=L:F!==this.root.getAttribute("data-mode")&&(this.textbox.value=""),this.position(this.quill.getBounds(this.quill.selection.savedRange)),this.textbox.select(),this.textbox.setAttribute("placeholder",this.textbox.getAttribute("data-"+F)||""),this.root.setAttribute("data-mode",F)}},{key:"restoreFocus",value:function(){var F=this.quill.scrollingContainer.scrollTop;this.quill.focus(),this.quill.scrollingContainer.scrollTop=F}},{key:"save",value:function(){var F=this.textbox.value;switch(this.root.getAttribute("data-mode")){case"link":{var L=this.quill.root.scrollTop;this.linkRange?(this.quill.formatText(this.linkRange,"link",F,c.default.sources.USER),delete this.linkRange):(this.restoreFocus(),this.quill.format("link",F,c.default.sources.USER)),this.quill.root.scrollTop=L;break}case"video":F=V(F);case"formula":{if(!F)break;var z=this.quill.getSelection(!0);if(z!=null){var Z=z.index+z.length;this.quill.insertEmbed(Z,this.root.getAttribute("data-mode"),F,c.default.sources.USER),this.root.getAttribute("data-mode")==="formula"&&this.quill.insertText(Z+1," ",c.default.sources.USER),this.quill.setSelection(Z+2,c.default.sources.USER)}break}}this.textbox.value="",this.hide()}}]),I}(x.default);function V(A){var I=A.match(/^(?:(https?):\/\/)?(?:(?:www|m)\.)?youtube\.com\/watch.*v=([a-zA-Z0-9_-]+)/)||A.match(/^(?:(https?):\/\/)?(?:(?:www|m)\.)?youtu\.be\/([a-zA-Z0-9_-]+)/);return I?(I[1]||"https")+"://www.youtube.com/embed/"+I[2]+"?showinfo=0":(I=A.match(/^(?:(https?):\/\/)?(?:www\.)?vimeo\.com\/(\d+)/))?(I[1]||"https")+"://player.vimeo.com/video/"+I[2]+"/":A}function D(A,I){var U=arguments.length>2&&arguments[2]!==void 0?arguments[2]:!1;I.forEach(function(F){var L=document.createElement("option");F===U?L.setAttribute("selected","selected"):L.setAttribute("value",F),A.appendChild(L)})}o.BaseTooltip=K,o.default=re},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=function(){function s(){this.head=this.tail=null,this.length=0}return s.prototype.append=function(){for(var l=[],u=0;u<arguments.length;u++)l[u]=arguments[u];this.insertBefore(l[0],null),l.length>1&&this.append.apply(this,l.slice(1))},s.prototype.contains=function(l){for(var u,d=this.iterator();u=d();)if(u===l)return!0;return!1},s.prototype.insertBefore=function(l,u){l&&(l.next=u,u!=null?(l.prev=u.prev,u.prev!=null&&(u.prev.next=l),u.prev=l,u===this.head&&(this.head=l)):this.tail!=null?(this.tail.next=l,l.prev=this.tail,this.tail=l):(l.prev=null,this.head=this.tail=l),this.length+=1)},s.prototype.offset=function(l){for(var u=0,d=this.head;d!=null;){if(d===l)return u;u+=d.length(),d=d.next}return-1},s.prototype.remove=function(l){this.contains(l)&&(l.prev!=null&&(l.prev.next=l.next),l.next!=null&&(l.next.prev=l.prev),l===this.head&&(this.head=l.next),l===this.tail&&(this.tail=l.prev),this.length-=1)},s.prototype.iterator=function(l){return l===void 0&&(l=this.head),function(){var u=l;return l!=null&&(l=l.next),u}},s.prototype.find=function(l,u){u===void 0&&(u=!1);for(var d,p=this.iterator();d=p();){var f=d.length();if(l<f||u&&l===f&&(d.next==null||d.next.length()!==0))return[d,l];l-=f}return[null,0]},s.prototype.forEach=function(l){for(var u,d=this.iterator();u=d();)l(u)},s.prototype.forEachAt=function(l,u,d){if(!(u<=0))for(var p=this.find(l),f=p[0],c=p[1],h,v=l-c,m=this.iterator(f);(h=m())&&v<l+u;){var _=h.length();l>v?d(h,l-v,Math.min(u,v+_-l)):d(h,0,Math.min(_,l+u-v)),v+=_}},s.prototype.map=function(l){return this.reduce(function(u,d){return u.push(l(d)),u},[])},s.prototype.reduce=function(l,u){for(var d,p=this.iterator();d=p();)u=l(u,d);return u},s}();o.default=r},function(e,o,a){var r=this&&this.__extends||function(){var f=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(c,h){c.__proto__=h}||function(c,h){for(var v in h)h.hasOwnProperty(v)&&(c[v]=h[v])};return function(c,h){f(c,h);function v(){this.constructor=c}c.prototype=h===null?Object.create(h):(v.prototype=h.prototype,new v)}}();Object.defineProperty(o,"__esModule",{value:!0});var s=a(17),l=a(1),u={attributes:!0,characterData:!0,characterDataOldValue:!0,childList:!0,subtree:!0},d=100,p=function(f){r(c,f);function c(h){var v=f.call(this,h)||this;return v.scroll=v,v.observer=new MutationObserver(function(m){v.update(m)}),v.observer.observe(v.domNode,u),v.attach(),v}return c.prototype.detach=function(){f.prototype.detach.call(this),this.observer.disconnect()},c.prototype.deleteAt=function(h,v){this.update(),h===0&&v===this.length()?this.children.forEach(function(m){m.remove()}):f.prototype.deleteAt.call(this,h,v)},c.prototype.formatAt=function(h,v,m,_){this.update(),f.prototype.formatAt.call(this,h,v,m,_)},c.prototype.insertAt=function(h,v,m){this.update(),f.prototype.insertAt.call(this,h,v,m)},c.prototype.optimize=function(h,v){var m=this;h===void 0&&(h=[]),v===void 0&&(v={}),f.prototype.optimize.call(this,v);for(var _=[].slice.call(this.observer.takeRecords());_.length>0;)h.push(_.pop());for(var y=function(k,T){T===void 0&&(T=!0),!(k==null||k===m)&&k.domNode.parentNode!=null&&(k.domNode[l.DATA_KEY].mutations==null&&(k.domNode[l.DATA_KEY].mutations=[]),T&&y(k.parent))},g=function(k){k.domNode[l.DATA_KEY]==null||k.domNode[l.DATA_KEY].mutations==null||(k instanceof s.default&&k.children.forEach(g),k.optimize(v))},w=h,b=0;w.length>0;b+=1){if(b>=d)throw new Error("[Parchment] Maximum optimize iterations reached");for(w.forEach(function(k){var T=l.find(k.target,!0);T!=null&&(T.domNode===k.target&&(k.type==="childList"?(y(l.find(k.previousSibling,!1)),[].forEach.call(k.addedNodes,function(S){var x=l.find(S,!1);y(x,!1),x instanceof s.default&&x.children.forEach(function(B){y(B,!1)})})):k.type==="attributes"&&y(T.prev)),y(T))}),this.children.forEach(g),w=[].slice.call(this.observer.takeRecords()),_=w.slice();_.length>0;)h.push(_.pop())}},c.prototype.update=function(h,v){var m=this;v===void 0&&(v={}),h=h||this.observer.takeRecords(),h.map(function(_){var y=l.find(_.target,!0);return y==null?null:y.domNode[l.DATA_KEY].mutations==null?(y.domNode[l.DATA_KEY].mutations=[_],y):(y.domNode[l.DATA_KEY].mutations.push(_),null)}).forEach(function(_){_==null||_===m||_.domNode[l.DATA_KEY]==null||_.update(_.domNode[l.DATA_KEY].mutations||[],v)}),this.domNode[l.DATA_KEY].mutations!=null&&f.prototype.update.call(this,this.domNode[l.DATA_KEY].mutations,v),this.optimize(h,v)},c.blotName="scroll",c.defaultChild="block",c.scope=l.Scope.BLOCK_BLOT,c.tagName="DIV",c}(s.default);o.default=p},function(e,o,a){var r=this&&this.__extends||function(){var p=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(f,c){f.__proto__=c}||function(f,c){for(var h in c)c.hasOwnProperty(h)&&(f[h]=c[h])};return function(f,c){p(f,c);function h(){this.constructor=f}f.prototype=c===null?Object.create(c):(h.prototype=c.prototype,new h)}}();Object.defineProperty(o,"__esModule",{value:!0});var s=a(18),l=a(1);function u(p,f){if(Object.keys(p).length!==Object.keys(f).length)return!1;for(var c in p)if(p[c]!==f[c])return!1;return!0}var d=function(p){r(f,p);function f(){return p!==null&&p.apply(this,arguments)||this}return f.formats=function(c){if(c.tagName!==f.tagName)return p.formats.call(this,c)},f.prototype.format=function(c,h){var v=this;c===this.statics.blotName&&!h?(this.children.forEach(function(m){m instanceof s.default||(m=m.wrap(f.blotName,!0)),v.attributes.copy(m)}),this.unwrap()):p.prototype.format.call(this,c,h)},f.prototype.formatAt=function(c,h,v,m){if(this.formats()[v]!=null||l.query(v,l.Scope.ATTRIBUTE)){var _=this.isolate(c,h);_.format(v,m)}else p.prototype.formatAt.call(this,c,h,v,m)},f.prototype.optimize=function(c){p.prototype.optimize.call(this,c);var h=this.formats();if(Object.keys(h).length===0)return this.unwrap();var v=this.next;v instanceof f&&v.prev===this&&u(h,v.formats())&&(v.moveChildren(this),v.remove())},f.blotName="inline",f.scope=l.Scope.INLINE_BLOT,f.tagName="SPAN",f}(s.default);o.default=d},function(e,o,a){var r=this&&this.__extends||function(){var d=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(p,f){p.__proto__=f}||function(p,f){for(var c in f)f.hasOwnProperty(c)&&(p[c]=f[c])};return function(p,f){d(p,f);function c(){this.constructor=p}p.prototype=f===null?Object.create(f):(c.prototype=f.prototype,new c)}}();Object.defineProperty(o,"__esModule",{value:!0});var s=a(18),l=a(1),u=function(d){r(p,d);function p(){return d!==null&&d.apply(this,arguments)||this}return p.formats=function(f){var c=l.query(p.blotName).tagName;if(f.tagName!==c)return d.formats.call(this,f)},p.prototype.format=function(f,c){l.query(f,l.Scope.BLOCK)!=null&&(f===this.statics.blotName&&!c?this.replaceWith(p.blotName):d.prototype.format.call(this,f,c))},p.prototype.formatAt=function(f,c,h,v){l.query(h,l.Scope.BLOCK)!=null?this.format(h,v):d.prototype.formatAt.call(this,f,c,h,v)},p.prototype.insertAt=function(f,c,h){if(h==null||l.query(c,l.Scope.INLINE)!=null)d.prototype.insertAt.call(this,f,c,h);else{var v=this.split(f),m=l.create(c,h);v.parent.insertBefore(m,v)}},p.prototype.update=function(f,c){navigator.userAgent.match(/Trident/)?this.build():d.prototype.update.call(this,f,c)},p.blotName="block",p.scope=l.Scope.BLOCK_BLOT,p.tagName="P",p}(s.default);o.default=u},function(e,o,a){var r=this&&this.__extends||function(){var u=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(d,p){d.__proto__=p}||function(d,p){for(var f in p)p.hasOwnProperty(f)&&(d[f]=p[f])};return function(d,p){u(d,p);function f(){this.constructor=d}d.prototype=p===null?Object.create(p):(f.prototype=p.prototype,new f)}}();Object.defineProperty(o,"__esModule",{value:!0});var s=a(19),l=function(u){r(d,u);function d(){return u!==null&&u.apply(this,arguments)||this}return d.formats=function(p){},d.prototype.format=function(p,f){u.prototype.formatAt.call(this,0,this.length(),p,f)},d.prototype.formatAt=function(p,f,c,h){p===0&&f===this.length()?this.format(c,h):u.prototype.formatAt.call(this,p,f,c,h)},d.prototype.formats=function(){return this.statics.formats(this.domNode)},d}(s.default);o.default=l},function(e,o,a){var r=this&&this.__extends||function(){var d=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(p,f){p.__proto__=f}||function(p,f){for(var c in f)f.hasOwnProperty(c)&&(p[c]=f[c])};return function(p,f){d(p,f);function c(){this.constructor=p}p.prototype=f===null?Object.create(f):(c.prototype=f.prototype,new c)}}();Object.defineProperty(o,"__esModule",{value:!0});var s=a(19),l=a(1),u=function(d){r(p,d);function p(f){var c=d.call(this,f)||this;return c.text=c.statics.value(c.domNode),c}return p.create=function(f){return document.createTextNode(f)},p.value=function(f){var c=f.data;return c.normalize&&(c=c.normalize()),c},p.prototype.deleteAt=function(f,c){this.domNode.data=this.text=this.text.slice(0,f)+this.text.slice(f+c)},p.prototype.index=function(f,c){return this.domNode===f?c:-1},p.prototype.insertAt=function(f,c,h){h==null?(this.text=this.text.slice(0,f)+c+this.text.slice(f),this.domNode.data=this.text):d.prototype.insertAt.call(this,f,c,h)},p.prototype.length=function(){return this.text.length},p.prototype.optimize=function(f){d.prototype.optimize.call(this,f),this.text=this.statics.value(this.domNode),this.text.length===0?this.remove():this.next instanceof p&&this.next.prev===this&&(this.insertAt(this.length(),this.next.value()),this.next.remove())},p.prototype.position=function(f,c){return[this.domNode,f]},p.prototype.split=function(f,c){if(c===void 0&&(c=!1),!c){if(f===0)return this;if(f===this.length())return this.next}var h=l.create(this.domNode.splitText(f));return this.parent.insertBefore(h,this.next),this.text=this.statics.value(this.domNode),h},p.prototype.update=function(f,c){var h=this;f.some(function(v){return v.type==="characterData"&&v.target===h.domNode})&&(this.text=this.statics.value(this.domNode))},p.prototype.value=function(){return this.text},p.blotName="text",p.scope=l.Scope.INLINE_BLOT,p}(s.default);o.default=u},function(e,o,a){var r=document.createElement("div");if(r.classList.toggle("test-class",!1),r.classList.contains("test-class")){var s=DOMTokenList.prototype.toggle;DOMTokenList.prototype.toggle=function(l,u){return arguments.length>1&&!this.contains(l)==!u?u:s.call(this,l)}}String.prototype.startsWith||(String.prototype.startsWith=function(l,u){return u=u||0,this.substr(u,l.length)===l}),String.prototype.endsWith||(String.prototype.endsWith=function(l,u){var d=this.toString();(typeof u!="number"||!isFinite(u)||Math.floor(u)!==u||u>d.length)&&(u=d.length),u-=l.length;var p=d.indexOf(l,u);return p!==-1&&p===u}),Array.prototype.find||Object.defineProperty(Array.prototype,"find",{value:function(u){if(this===null)throw new TypeError("Array.prototype.find called on null or undefined");if(typeof u!="function")throw new TypeError("predicate must be a function");for(var d=Object(this),p=d.length>>>0,f=arguments[1],c,h=0;h<p;h++)if(c=d[h],u.call(f,c,h,d))return c}}),document.addEventListener("DOMContentLoaded",function(){document.execCommand("enableObjectResizing",!1,!1),document.execCommand("autoUrlDetect",!1,!1)})},function(e,o){var a=-1,r=1,s=0;function l(b,k,T){if(b==k)return b?[[s,b]]:[];(T<0||b.length<T)&&(T=null);var S=f(b,k),x=b.substring(0,S);b=b.substring(S),k=k.substring(S),S=c(b,k);var B=b.substring(b.length-S);b=b.substring(0,b.length-S),k=k.substring(0,k.length-S);var E=u(b,k);return x&&E.unshift([s,x]),B&&E.push([s,B]),v(E),T!=null&&(E=y(E,T)),E=g(E),E}function u(b,k){var T;if(!b)return[[r,k]];if(!k)return[[a,b]];var S=b.length>k.length?b:k,x=b.length>k.length?k:b,B=S.indexOf(x);if(B!=-1)return T=[[r,S.substring(0,B)],[s,x],[r,S.substring(B+x.length)]],b.length>k.length&&(T[0][0]=T[2][0]=a),T;if(x.length==1)return[[a,b],[r,k]];var E=h(b,k);if(E){var C=E[0],O=E[1],N=E[2],R=E[3],q=E[4],W=l(C,N),Y=l(O,R);return W.concat([[s,q]],Y)}return d(b,k)}function d(b,k){for(var T=b.length,S=k.length,x=Math.ceil((T+S)/2),B=x,E=2*x,C=new Array(E),O=new Array(E),N=0;N<E;N++)C[N]=-1,O[N]=-1;C[B+1]=0,O[B+1]=0;for(var R=T-S,q=R%2!=0,W=0,Y=0,re=0,K=0,V=0;V<x;V++){for(var D=-V+W;D<=V-Y;D+=2){var A=B+D,I;D==-V||D!=V&&C[A-1]<C[A+1]?I=C[A+1]:I=C[A-1]+1;for(var U=I-D;I<T&&U<S&&b.charAt(I)==k.charAt(U);)I++,U++;if(C[A]=I,I>T)Y+=2;else if(U>S)W+=2;else if(q){var F=B+R-D;if(F>=0&&F<E&&O[F]!=-1){var L=T-O[F];if(I>=L)return p(b,k,I,U)}}}for(var z=-V+re;z<=V-K;z+=2){var F=B+z,L;z==-V||z!=V&&O[F-1]<O[F+1]?L=O[F+1]:L=O[F-1]+1;for(var Z=L-z;L<T&&Z<S&&b.charAt(T-L-1)==k.charAt(S-Z-1);)L++,Z++;if(O[F]=L,L>T)K+=2;else if(Z>S)re+=2;else if(!q){var A=B+R-z;if(A>=0&&A<E&&C[A]!=-1){var I=C[A],U=B+I-A;if(L=T-L,I>=L)return p(b,k,I,U)}}}}return[[a,b],[r,k]]}function p(b,k,T,S){var x=b.substring(0,T),B=k.substring(0,S),E=b.substring(T),C=k.substring(S),O=l(x,B),N=l(E,C);return O.concat(N)}function f(b,k){if(!b||!k||b.charAt(0)!=k.charAt(0))return 0;for(var T=0,S=Math.min(b.length,k.length),x=S,B=0;T<x;)b.substring(B,x)==k.substring(B,x)?(T=x,B=T):S=x,x=Math.floor((S-T)/2+T);return x}function c(b,k){if(!b||!k||b.charAt(b.length-1)!=k.charAt(k.length-1))return 0;for(var T=0,S=Math.min(b.length,k.length),x=S,B=0;T<x;)b.substring(b.length-x,b.length-B)==k.substring(k.length-x,k.length-B)?(T=x,B=T):S=x,x=Math.floor((S-T)/2+T);return x}function h(b,k){var T=b.length>k.length?b:k,S=b.length>k.length?k:b;if(T.length<4||S.length*2<T.length)return null;function x(Y,re,K){for(var V=Y.substring(K,K+Math.floor(Y.length/4)),D=-1,A="",I,U,F,L;(D=re.indexOf(V,D+1))!=-1;){var z=f(Y.substring(K),re.substring(D)),Z=c(Y.substring(0,K),re.substring(0,D));A.length<Z+z&&(A=re.substring(D-Z,D)+re.substring(D,D+z),I=Y.substring(0,K-Z),U=Y.substring(K+z),F=re.substring(0,D-Z),L=re.substring(D+z))}return A.length*2>=Y.length?[I,U,F,L,A]:null}var B=x(T,S,Math.ceil(T.length/4)),E=x(T,S,Math.ceil(T.length/2)),C;if(!B&&!E)return null;E?B?C=B[4].length>E[4].length?B:E:C=E:C=B;var O,N,R,q;b.length>k.length?(O=C[0],N=C[1],R=C[2],q=C[3]):(R=C[0],q=C[1],O=C[2],N=C[3]);var W=C[4];return[O,N,R,q,W]}function v(b){b.push([s,""]);for(var k=0,T=0,S=0,x="",B="",E;k<b.length;)switch(b[k][0]){case r:S++,B+=b[k][1],k++;break;case a:T++,x+=b[k][1],k++;break;case s:T+S>1?(T!==0&&S!==0&&(E=f(B,x),E!==0&&(k-T-S>0&&b[k-T-S-1][0]==s?b[k-T-S-1][1]+=B.substring(0,E):(b.splice(0,0,[s,B.substring(0,E)]),k++),B=B.substring(E),x=x.substring(E)),E=c(B,x),E!==0&&(b[k][1]=B.substring(B.length-E)+b[k][1],B=B.substring(0,B.length-E),x=x.substring(0,x.length-E))),T===0?b.splice(k-S,T+S,[r,B]):S===0?b.splice(k-T,T+S,[a,x]):b.splice(k-T-S,T+S,[a,x],[r,B]),k=k-T-S+(T?1:0)+(S?1:0)+1):k!==0&&b[k-1][0]==s?(b[k-1][1]+=b[k][1],b.splice(k,1)):k++,S=0,T=0,x="",B="";break}b[b.length-1][1]===""&&b.pop();var C=!1;for(k=1;k<b.length-1;)b[k-1][0]==s&&b[k+1][0]==s&&(b[k][1].substring(b[k][1].length-b[k-1][1].length)==b[k-1][1]?(b[k][1]=b[k-1][1]+b[k][1].substring(0,b[k][1].length-b[k-1][1].length),b[k+1][1]=b[k-1][1]+b[k+1][1],b.splice(k-1,1),C=!0):b[k][1].substring(0,b[k+1][1].length)==b[k+1][1]&&(b[k-1][1]+=b[k+1][1],b[k][1]=b[k][1].substring(b[k+1][1].length)+b[k+1][1],b.splice(k+1,1),C=!0)),k++;C&&v(b)}var m=l;m.INSERT=r,m.DELETE=a,m.EQUAL=s,e.exports=m;function _(b,k){if(k===0)return[s,b];for(var T=0,S=0;S<b.length;S++){var x=b[S];if(x[0]===a||x[0]===s){var B=T+x[1].length;if(k===B)return[S+1,b];if(k<B){b=b.slice();var E=k-T,C=[x[0],x[1].slice(0,E)],O=[x[0],x[1].slice(E)];return b.splice(S,1,C,O),[S+1,b]}else T=B}}throw new Error("cursor_pos is out of bounds!")}function y(b,k){var T=_(b,k),S=T[1],x=T[0],B=S[x],E=S[x+1];if(B==null)return b;if(B[0]!==s)return b;if(E!=null&&B[1]+E[1]===E[1]+B[1])return S.splice(x,2,E,B),w(S,x,2);if(E!=null&&E[1].indexOf(B[1])===0){S.splice(x,2,[E[0],B[1]],[0,B[1]]);var C=E[1].slice(B[1].length);return C.length>0&&S.splice(x+2,0,[E[0],C]),w(S,x,3)}else return b}function g(b){for(var k=!1,T=function(E){return E.charCodeAt(0)>=56320&&E.charCodeAt(0)<=57343},S=function(E){return E.charCodeAt(E.length-1)>=55296&&E.charCodeAt(E.length-1)<=56319},x=2;x<b.length;x+=1)b[x-2][0]===s&&S(b[x-2][1])&&b[x-1][0]===a&&T(b[x-1][1])&&b[x][0]===r&&T(b[x][1])&&(k=!0,b[x-1][1]=b[x-2][1].slice(-1)+b[x-1][1],b[x][1]=b[x-2][1].slice(-1)+b[x][1],b[x-2][1]=b[x-2][1].slice(0,-1));if(!k)return b;for(var B=[],x=0;x<b.length;x+=1)b[x][1].length>0&&B.push(b[x]);return B}function w(b,k,T){for(var S=k+T-1;S>=0&&S>=k-1;S--)if(S+1<b.length){var x=b[S],B=b[S+1];x[0]===B[1]&&b.splice(S,2,[x[0],x[1]+B[1]])}return b}},function(e,o){o=e.exports=typeof Object.keys=="function"?Object.keys:a,o.shim=a;function a(r){var s=[];for(var l in r)s.push(l);return s}},function(e,o){var a=function(){return Object.prototype.toString.call(arguments)}()=="[object Arguments]";o=e.exports=a?r:s,o.supported=r;function r(l){return Object.prototype.toString.call(l)=="[object Arguments]"}o.unsupported=s;function s(l){return l&&typeof l=="object"&&typeof l.length=="number"&&Object.prototype.hasOwnProperty.call(l,"callee")&&!Object.prototype.propertyIsEnumerable.call(l,"callee")||!1}},function(e,o){var a=Object.prototype.hasOwnProperty,r="~";function s(){}Object.create&&(s.prototype=Object.create(null),new s().__proto__||(r=!1));function l(d,p,f){this.fn=d,this.context=p,this.once=f||!1}function u(){this._events=new s,this._eventsCount=0}u.prototype.eventNames=function(){var p=[],f,c;if(this._eventsCount===0)return p;for(c in f=this._events)a.call(f,c)&&p.push(r?c.slice(1):c);return Object.getOwnPropertySymbols?p.concat(Object.getOwnPropertySymbols(f)):p},u.prototype.listeners=function(p,f){var c=r?r+p:p,h=this._events[c];if(f)return!!h;if(!h)return[];if(h.fn)return[h.fn];for(var v=0,m=h.length,_=new Array(m);v<m;v++)_[v]=h[v].fn;return _},u.prototype.emit=function(p,f,c,h,v,m){var _=r?r+p:p;if(!this._events[_])return!1;var y=this._events[_],g=arguments.length,w,b;if(y.fn){switch(y.once&&this.removeListener(p,y.fn,void 0,!0),g){case 1:return y.fn.call(y.context),!0;case 2:return y.fn.call(y.context,f),!0;case 3:return y.fn.call(y.context,f,c),!0;case 4:return y.fn.call(y.context,f,c,h),!0;case 5:return y.fn.call(y.context,f,c,h,v),!0;case 6:return y.fn.call(y.context,f,c,h,v,m),!0}for(b=1,w=new Array(g-1);b<g;b++)w[b-1]=arguments[b];y.fn.apply(y.context,w)}else{var k=y.length,T;for(b=0;b<k;b++)switch(y[b].once&&this.removeListener(p,y[b].fn,void 0,!0),g){case 1:y[b].fn.call(y[b].context);break;case 2:y[b].fn.call(y[b].context,f);break;case 3:y[b].fn.call(y[b].context,f,c);break;case 4:y[b].fn.call(y[b].context,f,c,h);break;default:if(!w)for(T=1,w=new Array(g-1);T<g;T++)w[T-1]=arguments[T];y[b].fn.apply(y[b].context,w)}}return!0},u.prototype.on=function(p,f,c){var h=new l(f,c||this),v=r?r+p:p;return this._events[v]?this._events[v].fn?this._events[v]=[this._events[v],h]:this._events[v].push(h):(this._events[v]=h,this._eventsCount++),this},u.prototype.once=function(p,f,c){var h=new l(f,c||this,!0),v=r?r+p:p;return this._events[v]?this._events[v].fn?this._events[v]=[this._events[v],h]:this._events[v].push(h):(this._events[v]=h,this._eventsCount++),this},u.prototype.removeListener=function(p,f,c,h){var v=r?r+p:p;if(!this._events[v])return this;if(!f)return--this._eventsCount===0?this._events=new s:delete this._events[v],this;var m=this._events[v];if(m.fn)m.fn===f&&(!h||m.once)&&(!c||m.context===c)&&(--this._eventsCount===0?this._events=new s:delete this._events[v]);else{for(var _=0,y=[],g=m.length;_<g;_++)(m[_].fn!==f||h&&!m[_].once||c&&m[_].context!==c)&&y.push(m[_]);y.length?this._events[v]=y.length===1?y[0]:y:--this._eventsCount===0?this._events=new s:delete this._events[v]}return this},u.prototype.removeAllListeners=function(p){var f;return p?(f=r?r+p:p,this._events[f]&&(--this._eventsCount===0?this._events=new s:delete this._events[f])):(this._events=new s,this._eventsCount=0),this},u.prototype.off=u.prototype.removeListener,u.prototype.addListener=u.prototype.on,u.prototype.setMaxListeners=function(){return this},u.prefixed=r,u.EventEmitter=u,typeof e<"u"&&(e.exports=u)},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.matchText=o.matchSpacing=o.matchNewline=o.matchBlot=o.matchAttributor=o.default=void 0;var r=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(Q){return typeof Q}:function(Q){return Q&&typeof Symbol=="function"&&Q.constructor===Symbol&&Q!==Symbol.prototype?"symbol":typeof Q},s=function(){function Q(te,ae){var le=[],ie=!0,$e=!1,me=void 0;try{for(var ve=te[Symbol.iterator](),ze;!(ie=(ze=ve.next()).done)&&(le.push(ze.value),!(ae&&le.length===ae));ie=!0);}catch(qe){$e=!0,me=qe}finally{try{!ie&&ve.return&&ve.return()}finally{if($e)throw me}}return le}return function(te,ae){if(Array.isArray(te))return te;if(Symbol.iterator in Object(te))return Q(te,ae);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),l=function(){function Q(te,ae){for(var le=0;le<ae.length;le++){var ie=ae[le];ie.enumerable=ie.enumerable||!1,ie.configurable=!0,"value"in ie&&(ie.writable=!0),Object.defineProperty(te,ie.key,ie)}}return function(te,ae,le){return ae&&Q(te.prototype,ae),le&&Q(te,le),te}}(),u=a(3),d=O(u),p=a(2),f=O(p),c=a(0),h=O(c),v=a(5),m=O(v),_=a(10),y=O(_),g=a(9),w=O(g),b=a(36),k=a(37),T=a(13),S=O(T),x=a(26),B=a(38),E=a(39),C=a(40);function O(Q){return Q&&Q.__esModule?Q:{default:Q}}function N(Q,te,ae){return te in Q?Object.defineProperty(Q,te,{value:ae,enumerable:!0,configurable:!0,writable:!0}):Q[te]=ae,Q}function R(Q,te){if(!(Q instanceof te))throw new TypeError("Cannot call a class as a function")}function q(Q,te){if(!Q)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return te&&(typeof te=="object"||typeof te=="function")?te:Q}function W(Q,te){if(typeof te!="function"&&te!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof te);Q.prototype=Object.create(te&&te.prototype,{constructor:{value:Q,enumerable:!1,writable:!0,configurable:!0}}),te&&(Object.setPrototypeOf?Object.setPrototypeOf(Q,te):Q.__proto__=te)}var Y=(0,y.default)("quill:clipboard"),re="__ql-matcher",K=[[Node.TEXT_NODE,Be],[Node.TEXT_NODE,ke],["br",ce],[Node.ELEMENT_NODE,ke],[Node.ELEMENT_NODE,ne],[Node.ELEMENT_NODE,Oe],[Node.ELEMENT_NODE,J],[Node.ELEMENT_NODE,Re],["li",be],["b",Z.bind(Z,"bold")],["i",Z.bind(Z,"italic")],["style",he]],V=[b.AlignAttribute,B.DirectionAttribute].reduce(function(Q,te){return Q[te.keyName]=te,Q},{}),D=[b.AlignStyle,k.BackgroundStyle,x.ColorStyle,B.DirectionStyle,E.FontStyle,C.SizeStyle].reduce(function(Q,te){return Q[te.keyName]=te,Q},{}),A=function(Q){W(te,Q);function te(ae,le){R(this,te);var ie=q(this,(te.__proto__||Object.getPrototypeOf(te)).call(this,ae,le));return ie.quill.root.addEventListener("paste",ie.onPaste.bind(ie)),ie.container=ie.quill.addContainer("ql-clipboard"),ie.container.setAttribute("contenteditable",!0),ie.container.setAttribute("tabindex",-1),ie.matchers=[],K.concat(ie.options.matchers).forEach(function($e){var me=s($e,2),ve=me[0],ze=me[1];!le.matchVisual&&ze===Oe||ie.addMatcher(ve,ze)}),ie}return l(te,[{key:"addMatcher",value:function(le,ie){this.matchers.push([le,ie])}},{key:"convert",value:function(le){if(typeof le=="string")return this.container.innerHTML=le.replace(/\>\r?\n +\</g,"><"),this.convert();var ie=this.quill.getFormat(this.quill.selection.savedRange.index);if(ie[S.default.blotName]){var $e=this.container.innerText;return this.container.innerHTML="",new f.default().insert($e,N({},S.default.blotName,ie[S.default.blotName]))}var me=this.prepareMatching(),ve=s(me,2),ze=ve[0],qe=ve[1],Ae=z(this.container,ze,qe);return F(Ae,`
|
|
123
|
+
`)&&Ae.ops[Ae.ops.length-1].attributes==null&&(Ae=Ae.compose(new f.default().retain(Ae.length()-1).delete(1))),Y.log("convert",this.container.innerHTML,Ae),this.container.innerHTML="",Ae}},{key:"dangerouslyPasteHTML",value:function(le,ie){var $e=arguments.length>2&&arguments[2]!==void 0?arguments[2]:m.default.sources.API;if(typeof le=="string")this.quill.setContents(this.convert(le),ie),this.quill.setSelection(0,m.default.sources.SILENT);else{var me=this.convert(ie);this.quill.updateContents(new f.default().retain(le).concat(me),$e),this.quill.setSelection(le+me.length(),m.default.sources.SILENT)}}},{key:"onPaste",value:function(le){var ie=this;if(!(le.defaultPrevented||!this.quill.isEnabled())){var $e=this.quill.getSelection(),me=new f.default().retain($e.index),ve=this.quill.scrollingContainer.scrollTop;this.container.focus(),this.quill.selection.update(m.default.sources.SILENT),setTimeout(function(){me=me.concat(ie.convert()).delete($e.length),ie.quill.updateContents(me,m.default.sources.USER),ie.quill.setSelection(me.length()-$e.length,m.default.sources.SILENT),ie.quill.scrollingContainer.scrollTop=ve,ie.quill.focus()},1)}}},{key:"prepareMatching",value:function(){var le=this,ie=[],$e=[];return this.matchers.forEach(function(me){var ve=s(me,2),ze=ve[0],qe=ve[1];switch(ze){case Node.TEXT_NODE:$e.push(qe);break;case Node.ELEMENT_NODE:ie.push(qe);break;default:[].forEach.call(le.container.querySelectorAll(ze),function(Ae){Ae[re]=Ae[re]||[],Ae[re].push(qe)});break}}),[ie,$e]}}]),te}(w.default);A.DEFAULTS={matchers:[],matchVisual:!0};function I(Q,te,ae){return(typeof te>"u"?"undefined":r(te))==="object"?Object.keys(te).reduce(function(le,ie){return I(le,ie,te[ie])},Q):Q.reduce(function(le,ie){return ie.attributes&&ie.attributes[te]?le.push(ie):le.insert(ie.insert,(0,d.default)({},N({},te,ae),ie.attributes))},new f.default)}function U(Q){if(Q.nodeType!==Node.ELEMENT_NODE)return{};var te="__ql-computed-style";return Q[te]||(Q[te]=window.getComputedStyle(Q))}function F(Q,te){for(var ae="",le=Q.ops.length-1;le>=0&&ae.length<te.length;--le){var ie=Q.ops[le];if(typeof ie.insert!="string")break;ae=ie.insert+ae}return ae.slice(-1*te.length)===te}function L(Q){if(Q.childNodes.length===0)return!1;var te=U(Q);return["block","list-item"].indexOf(te.display)>-1}function z(Q,te,ae){return Q.nodeType===Q.TEXT_NODE?ae.reduce(function(le,ie){return ie(Q,le)},new f.default):Q.nodeType===Q.ELEMENT_NODE?[].reduce.call(Q.childNodes||[],function(le,ie){var $e=z(ie,te,ae);return ie.nodeType===Q.ELEMENT_NODE&&($e=te.reduce(function(me,ve){return ve(ie,me)},$e),$e=(ie[re]||[]).reduce(function(me,ve){return ve(ie,me)},$e)),le.concat($e)},new f.default):new f.default}function Z(Q,te,ae){return I(ae,Q,!0)}function J(Q,te){var ae=h.default.Attributor.Attribute.keys(Q),le=h.default.Attributor.Class.keys(Q),ie=h.default.Attributor.Style.keys(Q),$e={};return ae.concat(le).concat(ie).forEach(function(me){var ve=h.default.query(me,h.default.Scope.ATTRIBUTE);ve!=null&&($e[ve.attrName]=ve.value(Q),$e[ve.attrName])||(ve=V[me],ve!=null&&(ve.attrName===me||ve.keyName===me)&&($e[ve.attrName]=ve.value(Q)||void 0),ve=D[me],ve!=null&&(ve.attrName===me||ve.keyName===me)&&(ve=D[me],$e[ve.attrName]=ve.value(Q)||void 0))}),Object.keys($e).length>0&&(te=I(te,$e)),te}function ne(Q,te){var ae=h.default.query(Q);if(ae==null)return te;if(ae.prototype instanceof h.default.Embed){var le={},ie=ae.value(Q);ie!=null&&(le[ae.blotName]=ie,te=new f.default().insert(le,ae.formats(Q)))}else typeof ae.formats=="function"&&(te=I(te,ae.blotName,ae.formats(Q)));return te}function ce(Q,te){return F(te,`
|
|
121
124
|
`)||te.insert(`
|
|
122
|
-
`),te}function he(){return new f.default}function
|
|
123
|
-
`))return te;for(var le=-1,
|
|
124
|
-
`)||(
|
|
125
|
-
`),te}function Oe(Q,te){if(
|
|
125
|
+
`),te}function he(){return new f.default}function be(Q,te){var ae=h.default.query(Q);if(ae==null||ae.blotName!=="list-item"||!F(te,`
|
|
126
|
+
`))return te;for(var le=-1,ie=Q.parentNode;!ie.classList.contains("ql-clipboard");)(h.default.query(ie)||{}).blotName==="list"&&(le+=1),ie=ie.parentNode;return le<=0?te:te.compose(new f.default().retain(te.length()-1).retain(1,{indent:le}))}function ke(Q,te){return F(te,`
|
|
127
|
+
`)||(L(Q)||te.length()>0&&Q.nextSibling&&L(Q.nextSibling))&&te.insert(`
|
|
128
|
+
`),te}function Oe(Q,te){if(L(Q)&&Q.nextElementSibling!=null&&!F(te,`
|
|
126
129
|
|
|
127
|
-
`)){var ae=Q.offsetHeight+parseFloat(
|
|
128
|
-
`)}return te}function Be(Q,te){var ae={},le=Q.style||{};return le.fontStyle&&Y(Q).fontStyle==="italic"&&(ae.italic=!0),le.fontWeight&&(Y(Q).fontWeight.startsWith("bold")||parseInt(Y(Q).fontWeight)>=700)&&(ae.bold=!0),Object.keys(ae).length>0&&(te=V(te,ae)),parseFloat(le.textIndent||0)>0&&(te=new f.default().insert(" ").concat(te)),te}function Pe(Q,te){var ae=Q.data;if(Q.parentNode.tagName==="O:P")return te.insert(ae.trim());if(ae.trim().length===0&&Q.parentNode.classList.contains("ql-clipboard"))return te;if(!Y(Q.parentNode).whiteSpace.startsWith("pre")){var le=function($e,me){return me=me.replace(/[^\u00a0]/g,""),me.length<1&&$e?" ":me};ae=ae.replace(/\r\n/g," ").replace(/\n/g," "),ae=ae.replace(/\s\s+/g,le.bind(le,!0)),(Q.previousSibling==null&&B(Q.parentNode)||Q.previousSibling!=null&&B(Q.previousSibling))&&(ae=ae.replace(/^\s+/,le.bind(le,!1))),(Q.nextSibling==null&&B(Q.parentNode)||Q.nextSibling!=null&&B(Q.nextSibling))&&(ae=ae.replace(/\s+$/,le.bind(le,!1)))}return te.insert(ae)}o.default=j,o.matchAttributor=J,o.matchBlot=ne,o.matchNewline=ke,o.matchSpacing=Oe,o.matchText=Pe},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=function(){function _(v,b){for(var g=0;g<b.length;g++){var y=b[g];y.enumerable=y.enumerable||!1,y.configurable=!0,"value"in y&&(y.writable=!0),Object.defineProperty(v,y.key,y)}}return function(v,b,g){return b&&_(v.prototype,b),g&&_(v,g),v}}(),s=function _(v,b,g){v===null&&(v=Function.prototype);var y=Object.getOwnPropertyDescriptor(v,b);if(y===void 0){var w=Object.getPrototypeOf(v);return w===null?void 0:_(w,b,g)}else{if("value"in y)return y.value;var m=y.get;return m===void 0?void 0:m.call(g)}},d=a(6),u=p(d);function p(_){return _&&_.__esModule?_:{default:_}}function h(_,v){if(!(_ instanceof v))throw new TypeError("Cannot call a class as a function")}function f(_,v){if(!_)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return v&&(typeof v=="object"||typeof v=="function")?v:_}function l(_,v){if(typeof v!="function"&&v!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof v);_.prototype=Object.create(v&&v.prototype,{constructor:{value:_,enumerable:!1,writable:!0,configurable:!0}}),v&&(Object.setPrototypeOf?Object.setPrototypeOf(_,v):_.__proto__=v)}var c=function(_){l(v,_);function v(){return h(this,v),f(this,(v.__proto__||Object.getPrototypeOf(v)).apply(this,arguments))}return r(v,[{key:"optimize",value:function(g){s(v.prototype.__proto__||Object.getPrototypeOf(v.prototype),"optimize",this).call(this,g),this.domNode.tagName!==this.statics.tagName[0]&&this.replaceWith(this.statics.blotName)}}],[{key:"create",value:function(){return s(v.__proto__||Object.getPrototypeOf(v),"create",this).call(this)}},{key:"formats",value:function(){return!0}}]),v}(u.default);c.blotName="bold",c.tagName=["STRONG","B"],o.default=c},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.addControls=o.default=void 0;var r=function(){function C(O,x){var P=[],q=!0,G=!1,W=void 0;try{for(var ie=O[Symbol.iterator](),U;!(q=(U=ie.next()).done)&&(P.push(U.value),!(x&&P.length===x));q=!0);}catch(R){G=!0,W=R}finally{try{!q&&ie.return&&ie.return()}finally{if(G)throw W}}return P}return function(O,x){if(Array.isArray(O))return O;if(Symbol.iterator in Object(O))return C(O,x);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),s=function(){function C(O,x){for(var P=0;P<x.length;P++){var q=x[P];q.enumerable=q.enumerable||!1,q.configurable=!0,"value"in q&&(q.writable=!0),Object.defineProperty(O,q.key,q)}}return function(O,x,P){return x&&C(O.prototype,x),P&&C(O,P),O}}(),d=a(2),u=g(d),p=a(0),h=g(p),f=a(5),l=g(f),c=a(10),_=g(c),v=a(9),b=g(v);function g(C){return C&&C.__esModule?C:{default:C}}function y(C,O,x){return O in C?Object.defineProperty(C,O,{value:x,enumerable:!0,configurable:!0,writable:!0}):C[O]=x,C}function w(C,O){if(!(C instanceof O))throw new TypeError("Cannot call a class as a function")}function m(C,O){if(!C)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return O&&(typeof O=="object"||typeof O=="function")?O:C}function k(C,O){if(typeof O!="function"&&O!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof O);C.prototype=Object.create(O&&O.prototype,{constructor:{value:C,enumerable:!1,writable:!0,configurable:!0}}),O&&(Object.setPrototypeOf?Object.setPrototypeOf(C,O):C.__proto__=O)}var N=(0,_.default)("quill:toolbar"),S=function(C){k(O,C);function O(x,P){w(this,O);var q=m(this,(O.__proto__||Object.getPrototypeOf(O)).call(this,x,P));if(Array.isArray(q.options.container)){var G=document.createElement("div");M(G,q.options.container),x.container.parentNode.insertBefore(G,x.container),q.container=G}else typeof q.options.container=="string"?q.container=document.querySelector(q.options.container):q.container=q.options.container;if(!(q.container instanceof HTMLElement)){var W;return W=N.error("Container required for toolbar",q.options),m(q,W)}return q.container.classList.add("ql-toolbar"),q.controls=[],q.handlers={},Object.keys(q.options.handlers).forEach(function(ie){q.addHandler(ie,q.options.handlers[ie])}),[].forEach.call(q.container.querySelectorAll("button, select"),function(ie){q.attach(ie)}),q.quill.on(l.default.events.EDITOR_CHANGE,function(ie,U){ie===l.default.events.SELECTION_CHANGE&&q.update(U)}),q.quill.on(l.default.events.SCROLL_OPTIMIZE,function(){var ie=q.quill.selection.getRange(),U=r(ie,1),R=U[0];q.update(R)}),q}return s(O,[{key:"addHandler",value:function(P,q){this.handlers[P]=q}},{key:"attach",value:function(P){var q=this,G=[].find.call(P.classList,function(ie){return ie.indexOf("ql-")===0});if(G){if(G=G.slice(3),P.tagName==="BUTTON"&&P.setAttribute("type","button"),this.handlers[G]==null){if(this.quill.scroll.whitelist!=null&&this.quill.scroll.whitelist[G]==null){N.warn("ignoring attaching to disabled format",G,P);return}if(h.default.query(G)==null){N.warn("ignoring attaching to nonexistent format",G,P);return}}var W=P.tagName==="SELECT"?"change":"click";P.addEventListener(W,function(ie){var U=void 0;if(P.tagName==="SELECT"){if(P.selectedIndex<0)return;var R=P.options[P.selectedIndex];R.hasAttribute("selected")?U=!1:U=R.value||!1}else P.classList.contains("ql-active")?U=!1:U=P.value||!P.hasAttribute("value"),ie.preventDefault();q.quill.focus();var A=q.quill.selection.getRange(),j=r(A,1),V=j[0];if(q.handlers[G]!=null)q.handlers[G].call(q,U);else if(h.default.query(G).prototype instanceof h.default.Embed){if(U=prompt("Enter "+G),!U)return;q.quill.updateContents(new u.default().retain(V.index).delete(V.length).insert(y({},G,U)),l.default.sources.USER)}else q.quill.format(G,U,l.default.sources.USER);q.update(V)}),this.controls.push([G,P])}}},{key:"update",value:function(P){var q=P==null?{}:this.quill.getFormat(P);this.controls.forEach(function(G){var W=r(G,2),ie=W[0],U=W[1];if(U.tagName==="SELECT"){var R=void 0;if(P==null)R=null;else if(q[ie]==null)R=U.querySelector("option[selected]");else if(!Array.isArray(q[ie])){var A=q[ie];typeof A=="string"&&(A=A.replace(/\"/g,'\\"')),R=U.querySelector('option[value="'+A+'"]')}R==null?(U.value="",U.selectedIndex=-1):R.selected=!0}else if(P==null)U.classList.remove("ql-active");else if(U.hasAttribute("value")){var j=q[ie]===U.getAttribute("value")||q[ie]!=null&&q[ie].toString()===U.getAttribute("value")||q[ie]==null&&!U.getAttribute("value");U.classList.toggle("ql-active",j)}else U.classList.toggle("ql-active",q[ie]!=null)})}}]),O}(b.default);S.DEFAULTS={};function T(C,O,x){var P=document.createElement("button");P.setAttribute("type","button"),P.classList.add("ql-"+O),x!=null&&(P.value=x),C.appendChild(P)}function M(C,O){Array.isArray(O[0])||(O=[O]),O.forEach(function(x){var P=document.createElement("span");P.classList.add("ql-formats"),x.forEach(function(q){if(typeof q=="string")T(P,q);else{var G=Object.keys(q)[0],W=q[G];Array.isArray(W)?E(P,G,W):T(P,G,W)}}),C.appendChild(P)})}function E(C,O,x){var P=document.createElement("select");P.classList.add("ql-"+O),x.forEach(function(q){var G=document.createElement("option");q!==!1?G.setAttribute("value",q):G.setAttribute("selected","selected"),P.appendChild(G)}),C.appendChild(P)}S.DEFAULTS={container:null,handlers:{clean:function(){var O=this,x=this.quill.getSelection();if(x!=null)if(x.length==0){var P=this.quill.getFormat();Object.keys(P).forEach(function(q){h.default.query(q,h.default.Scope.INLINE)!=null&&O.quill.format(q,!1)})}else this.quill.removeFormat(x,l.default.sources.USER)},direction:function(O){var x=this.quill.getFormat().align;O==="rtl"&&x==null?this.quill.format("align","right",l.default.sources.USER):!O&&x==="right"&&this.quill.format("align",!1,l.default.sources.USER),this.quill.format("direction",O,l.default.sources.USER)},indent:function(O){var x=this.quill.getSelection(),P=this.quill.getFormat(x),q=parseInt(P.indent||0);if(O==="+1"||O==="-1"){var G=O==="+1"?1:-1;P.direction==="rtl"&&(G*=-1),this.quill.format("indent",q+G,l.default.sources.USER)}},link:function(O){O===!0&&(O=prompt("Enter link URL:")),this.quill.format("link",O,l.default.sources.USER)},list:function(O){var x=this.quill.getSelection(),P=this.quill.getFormat(x);O==="check"?P.list==="checked"||P.list==="unchecked"?this.quill.format("list",!1,l.default.sources.USER):this.quill.format("list","unchecked",l.default.sources.USER):this.quill.format("list",O,l.default.sources.USER)}}},o.default=S,o.addControls=M},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <polyline class="ql-even ql-stroke" points="5 7 3 9 5 11"></polyline> <polyline class="ql-even ql-stroke" points="13 7 15 9 13 11"></polyline> <line class=ql-stroke x1=10 x2=8 y1=5 y2=13></line> </svg>'},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=function(){function _(v,b){for(var g=0;g<b.length;g++){var y=b[g];y.enumerable=y.enumerable||!1,y.configurable=!0,"value"in y&&(y.writable=!0),Object.defineProperty(v,y.key,y)}}return function(v,b,g){return b&&_(v.prototype,b),g&&_(v,g),v}}(),s=function _(v,b,g){v===null&&(v=Function.prototype);var y=Object.getOwnPropertyDescriptor(v,b);if(y===void 0){var w=Object.getPrototypeOf(v);return w===null?void 0:_(w,b,g)}else{if("value"in y)return y.value;var m=y.get;return m===void 0?void 0:m.call(g)}},d=a(28),u=p(d);function p(_){return _&&_.__esModule?_:{default:_}}function h(_,v){if(!(_ instanceof v))throw new TypeError("Cannot call a class as a function")}function f(_,v){if(!_)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return v&&(typeof v=="object"||typeof v=="function")?v:_}function l(_,v){if(typeof v!="function"&&v!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof v);_.prototype=Object.create(v&&v.prototype,{constructor:{value:_,enumerable:!1,writable:!0,configurable:!0}}),v&&(Object.setPrototypeOf?Object.setPrototypeOf(_,v):_.__proto__=v)}var c=function(_){l(v,_);function v(b,g){h(this,v);var y=f(this,(v.__proto__||Object.getPrototypeOf(v)).call(this,b));return y.label.innerHTML=g,y.container.classList.add("ql-color-picker"),[].slice.call(y.container.querySelectorAll(".ql-picker-item"),0,7).forEach(function(w){w.classList.add("ql-primary")}),y}return r(v,[{key:"buildItem",value:function(g){var y=s(v.prototype.__proto__||Object.getPrototypeOf(v.prototype),"buildItem",this).call(this,g);return y.style.backgroundColor=g.getAttribute("value")||"",y}},{key:"selectItem",value:function(g,y){s(v.prototype.__proto__||Object.getPrototypeOf(v.prototype),"selectItem",this).call(this,g,y);var w=this.label.querySelector(".ql-color-label"),m=g&&g.getAttribute("data-value")||"";w&&(w.tagName==="line"?w.style.stroke=m:w.style.fill=m)}}]),v}(u.default);o.default=c},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=function(){function _(v,b){for(var g=0;g<b.length;g++){var y=b[g];y.enumerable=y.enumerable||!1,y.configurable=!0,"value"in y&&(y.writable=!0),Object.defineProperty(v,y.key,y)}}return function(v,b,g){return b&&_(v.prototype,b),g&&_(v,g),v}}(),s=function _(v,b,g){v===null&&(v=Function.prototype);var y=Object.getOwnPropertyDescriptor(v,b);if(y===void 0){var w=Object.getPrototypeOf(v);return w===null?void 0:_(w,b,g)}else{if("value"in y)return y.value;var m=y.get;return m===void 0?void 0:m.call(g)}},d=a(28),u=p(d);function p(_){return _&&_.__esModule?_:{default:_}}function h(_,v){if(!(_ instanceof v))throw new TypeError("Cannot call a class as a function")}function f(_,v){if(!_)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return v&&(typeof v=="object"||typeof v=="function")?v:_}function l(_,v){if(typeof v!="function"&&v!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof v);_.prototype=Object.create(v&&v.prototype,{constructor:{value:_,enumerable:!1,writable:!0,configurable:!0}}),v&&(Object.setPrototypeOf?Object.setPrototypeOf(_,v):_.__proto__=v)}var c=function(_){l(v,_);function v(b,g){h(this,v);var y=f(this,(v.__proto__||Object.getPrototypeOf(v)).call(this,b));return y.container.classList.add("ql-icon-picker"),[].forEach.call(y.container.querySelectorAll(".ql-picker-item"),function(w){w.innerHTML=g[w.getAttribute("data-value")||""]}),y.defaultItem=y.container.querySelector(".ql-selected"),y.selectItem(y.defaultItem),y}return r(v,[{key:"selectItem",value:function(g,y){s(v.prototype.__proto__||Object.getPrototypeOf(v.prototype),"selectItem",this).call(this,g,y),g=g||this.defaultItem,this.label.innerHTML=g.innerHTML}}]),v}(u.default);o.default=c},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=function(){function u(p,h){for(var f=0;f<h.length;f++){var l=h[f];l.enumerable=l.enumerable||!1,l.configurable=!0,"value"in l&&(l.writable=!0),Object.defineProperty(p,l.key,l)}}return function(p,h,f){return h&&u(p.prototype,h),f&&u(p,f),p}}();function s(u,p){if(!(u instanceof p))throw new TypeError("Cannot call a class as a function")}var d=function(){function u(p,h){var f=this;s(this,u),this.quill=p,this.boundsContainer=h||document.body,this.root=p.addContainer("ql-tooltip"),this.root.innerHTML=this.constructor.TEMPLATE,this.quill.root===this.quill.scrollingContainer&&this.quill.root.addEventListener("scroll",function(){f.root.style.marginTop=-1*f.quill.root.scrollTop+"px"}),this.hide()}return r(u,[{key:"hide",value:function(){this.root.classList.add("ql-hidden")}},{key:"position",value:function(h){var f=h.left+h.width/2-this.root.offsetWidth/2,l=h.bottom+this.quill.root.scrollTop;this.root.style.left=f+"px",this.root.style.top=l+"px",this.root.classList.remove("ql-flip");var c=this.boundsContainer.getBoundingClientRect(),_=this.root.getBoundingClientRect(),v=0;if(_.right>c.right&&(v=c.right-_.right,this.root.style.left=f+v+"px"),_.left<c.left&&(v=c.left-_.left,this.root.style.left=f+v+"px"),_.bottom>c.bottom){var b=_.bottom-_.top,g=h.bottom-h.top+b;this.root.style.top=l-g+"px",this.root.classList.add("ql-flip")}return v}},{key:"show",value:function(){this.root.classList.remove("ql-editing"),this.root.classList.remove("ql-hidden")}}]),u}();o.default=d},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=function(){function E(C,O){var x=[],P=!0,q=!1,G=void 0;try{for(var W=C[Symbol.iterator](),ie;!(P=(ie=W.next()).done)&&(x.push(ie.value),!(O&&x.length===O));P=!0);}catch(U){q=!0,G=U}finally{try{!P&&W.return&&W.return()}finally{if(q)throw G}}return x}return function(C,O){if(Array.isArray(C))return C;if(Symbol.iterator in Object(C))return E(C,O);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),s=function E(C,O,x){C===null&&(C=Function.prototype);var P=Object.getOwnPropertyDescriptor(C,O);if(P===void 0){var q=Object.getPrototypeOf(C);return q===null?void 0:E(q,O,x)}else{if("value"in P)return P.value;var G=P.get;return G===void 0?void 0:G.call(x)}},d=function(){function E(C,O){for(var x=0;x<O.length;x++){var P=O[x];P.enumerable=P.enumerable||!1,P.configurable=!0,"value"in P&&(P.writable=!0),Object.defineProperty(C,P.key,P)}}return function(C,O,x){return O&&E(C.prototype,O),x&&E(C,x),C}}(),u=a(3),p=w(u),h=a(8),f=w(h),l=a(43),c=w(l),_=a(27),v=w(_),b=a(15),g=a(41),y=w(g);function w(E){return E&&E.__esModule?E:{default:E}}function m(E,C){if(!(E instanceof C))throw new TypeError("Cannot call a class as a function")}function k(E,C){if(!E)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return C&&(typeof C=="object"||typeof C=="function")?C:E}function N(E,C){if(typeof C!="function"&&C!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof C);E.prototype=Object.create(C&&C.prototype,{constructor:{value:E,enumerable:!1,writable:!0,configurable:!0}}),C&&(Object.setPrototypeOf?Object.setPrototypeOf(E,C):E.__proto__=C)}var S=[[{header:["1","2","3",!1]}],["bold","italic","underline","link"],[{list:"ordered"},{list:"bullet"}],["clean"]],T=function(E){N(C,E);function C(O,x){m(this,C),x.modules.toolbar!=null&&x.modules.toolbar.container==null&&(x.modules.toolbar.container=S);var P=k(this,(C.__proto__||Object.getPrototypeOf(C)).call(this,O,x));return P.quill.container.classList.add("ql-snow"),P}return d(C,[{key:"extendToolbar",value:function(x){x.container.classList.add("ql-snow"),this.buildButtons([].slice.call(x.container.querySelectorAll("button")),y.default),this.buildPickers([].slice.call(x.container.querySelectorAll("select")),y.default),this.tooltip=new M(this.quill,this.options.bounds),x.container.querySelector(".ql-link")&&this.quill.keyboard.addBinding({key:"K",shortKey:!0},function(P,q){x.handlers.link.call(x,!q.format.link)})}}]),C}(c.default);T.DEFAULTS=(0,p.default)(!0,{},c.default.DEFAULTS,{modules:{toolbar:{handlers:{link:function(C){if(C){var O=this.quill.getSelection();if(O==null||O.length==0)return;var x=this.quill.getText(O);/^\S+@\S+\.\S+$/.test(x)&&x.indexOf("mailto:")!==0&&(x="mailto:"+x);var P=this.quill.theme.tooltip;P.edit("link",x)}else this.quill.format("link",!1)}}}}});var M=function(E){N(C,E);function C(O,x){m(this,C);var P=k(this,(C.__proto__||Object.getPrototypeOf(C)).call(this,O,x));return P.preview=P.root.querySelector("a.ql-preview"),P}return d(C,[{key:"listen",value:function(){var x=this;s(C.prototype.__proto__||Object.getPrototypeOf(C.prototype),"listen",this).call(this),this.root.querySelector("a.ql-action").addEventListener("click",function(P){x.root.classList.contains("ql-editing")?x.save():x.edit("link",x.preview.textContent),P.preventDefault()}),this.root.querySelector("a.ql-remove").addEventListener("click",function(P){if(x.linkRange!=null){var q=x.linkRange;x.restoreFocus(),x.quill.formatText(q,"link",!1,f.default.sources.USER),delete x.linkRange}P.preventDefault(),x.hide()}),this.quill.on(f.default.events.SELECTION_CHANGE,function(P,q,G){if(P!=null){if(P.length===0&&G===f.default.sources.USER){var W=x.quill.scroll.descendant(v.default,P.index),ie=r(W,2),U=ie[0],R=ie[1];if(U!=null){x.linkRange=new b.Range(P.index-R,U.length());var A=v.default.formats(U.domNode);x.preview.textContent=A,x.preview.setAttribute("href",A),x.show(),x.position(x.quill.getBounds(x.linkRange));return}}else delete x.linkRange;x.hide()}})}},{key:"show",value:function(){s(C.prototype.__proto__||Object.getPrototypeOf(C.prototype),"show",this).call(this),this.root.removeAttribute("data-mode")}}]),C}(l.BaseTooltip);M.TEMPLATE=['<a class="ql-preview" rel="noopener noreferrer" target="_blank" href="about:blank"></a>','<input type="text" data-formula="e=mc^2" data-link="https://quilljs.com" data-video="Embed URL">','<a class="ql-action"></a>','<a class="ql-remove"></a>'].join(""),o.default=T},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=a(29),s=re(r),d=a(36),u=a(38),p=a(64),h=a(65),f=re(h),l=a(66),c=re(l),_=a(67),v=re(_),b=a(37),g=a(26),y=a(39),w=a(40),m=a(56),k=re(m),N=a(68),S=re(N),T=a(27),M=re(T),E=a(69),C=re(E),O=a(70),x=re(O),P=a(71),q=re(P),G=a(72),W=re(G),ie=a(73),U=re(ie),R=a(13),A=re(R),j=a(74),V=re(j),Y=a(75),H=re(Y),B=a(57),z=re(B),Z=a(41),J=re(Z),ne=a(28),de=re(ne),he=a(59),ve=re(he),ke=a(60),Oe=re(ke),Be=a(61),Pe=re(Be),Q=a(108),te=re(Q),ae=a(62),le=re(ae);function re($e){return $e&&$e.__esModule?$e:{default:$e}}s.default.register({"attributors/attribute/direction":u.DirectionAttribute,"attributors/class/align":d.AlignClass,"attributors/class/background":b.BackgroundClass,"attributors/class/color":g.ColorClass,"attributors/class/direction":u.DirectionClass,"attributors/class/font":y.FontClass,"attributors/class/size":w.SizeClass,"attributors/style/align":d.AlignStyle,"attributors/style/background":b.BackgroundStyle,"attributors/style/color":g.ColorStyle,"attributors/style/direction":u.DirectionStyle,"attributors/style/font":y.FontStyle,"attributors/style/size":w.SizeStyle},!0),s.default.register({"formats/align":d.AlignClass,"formats/direction":u.DirectionClass,"formats/indent":p.IndentClass,"formats/background":b.BackgroundStyle,"formats/color":g.ColorStyle,"formats/font":y.FontClass,"formats/size":w.SizeClass,"formats/blockquote":f.default,"formats/code-block":A.default,"formats/header":c.default,"formats/list":v.default,"formats/bold":k.default,"formats/code":R.Code,"formats/italic":S.default,"formats/link":M.default,"formats/script":C.default,"formats/strike":x.default,"formats/underline":q.default,"formats/image":W.default,"formats/video":U.default,"formats/list/item":_.ListItem,"modules/formula":V.default,"modules/syntax":H.default,"modules/toolbar":z.default,"themes/bubble":te.default,"themes/snow":le.default,"ui/icons":J.default,"ui/picker":de.default,"ui/icon-picker":Oe.default,"ui/color-picker":ve.default,"ui/tooltip":Pe.default},!0),o.default=s.default},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.IndentClass=void 0;var r=function(){function v(b,g){for(var y=0;y<g.length;y++){var w=g[y];w.enumerable=w.enumerable||!1,w.configurable=!0,"value"in w&&(w.writable=!0),Object.defineProperty(b,w.key,w)}}return function(b,g,y){return g&&v(b.prototype,g),y&&v(b,y),b}}(),s=function v(b,g,y){b===null&&(b=Function.prototype);var w=Object.getOwnPropertyDescriptor(b,g);if(w===void 0){var m=Object.getPrototypeOf(b);return m===null?void 0:v(m,g,y)}else{if("value"in w)return w.value;var k=w.get;return k===void 0?void 0:k.call(y)}},d=a(0),u=p(d);function p(v){return v&&v.__esModule?v:{default:v}}function h(v,b){if(!(v instanceof b))throw new TypeError("Cannot call a class as a function")}function f(v,b){if(!v)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return b&&(typeof b=="object"||typeof b=="function")?b:v}function l(v,b){if(typeof b!="function"&&b!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof b);v.prototype=Object.create(b&&b.prototype,{constructor:{value:v,enumerable:!1,writable:!0,configurable:!0}}),b&&(Object.setPrototypeOf?Object.setPrototypeOf(v,b):v.__proto__=b)}var c=function(v){l(b,v);function b(){return h(this,b),f(this,(b.__proto__||Object.getPrototypeOf(b)).apply(this,arguments))}return r(b,[{key:"add",value:function(y,w){if(w==="+1"||w==="-1"){var m=this.value(y)||0;w=w==="+1"?m+1:m-1}return w===0?(this.remove(y),!0):s(b.prototype.__proto__||Object.getPrototypeOf(b.prototype),"add",this).call(this,y,w)}},{key:"canAdd",value:function(y,w){return s(b.prototype.__proto__||Object.getPrototypeOf(b.prototype),"canAdd",this).call(this,y,w)||s(b.prototype.__proto__||Object.getPrototypeOf(b.prototype),"canAdd",this).call(this,y,parseInt(w))}},{key:"value",value:function(y){return parseInt(s(b.prototype.__proto__||Object.getPrototypeOf(b.prototype),"value",this).call(this,y))||void 0}}]),b}(u.default.Attributor.Class),_=new c("indent","ql-indent",{scope:u.default.Scope.BLOCK,whitelist:[1,2,3,4,5,6,7,8]});o.IndentClass=_},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=a(4),s=d(r);function d(l){return l&&l.__esModule?l:{default:l}}function u(l,c){if(!(l instanceof c))throw new TypeError("Cannot call a class as a function")}function p(l,c){if(!l)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return c&&(typeof c=="object"||typeof c=="function")?c:l}function h(l,c){if(typeof c!="function"&&c!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof c);l.prototype=Object.create(c&&c.prototype,{constructor:{value:l,enumerable:!1,writable:!0,configurable:!0}}),c&&(Object.setPrototypeOf?Object.setPrototypeOf(l,c):l.__proto__=c)}var f=function(l){h(c,l);function c(){return u(this,c),p(this,(c.__proto__||Object.getPrototypeOf(c)).apply(this,arguments))}return c}(s.default);f.blotName="blockquote",f.tagName="blockquote",o.default=f},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=function(){function c(_,v){for(var b=0;b<v.length;b++){var g=v[b];g.enumerable=g.enumerable||!1,g.configurable=!0,"value"in g&&(g.writable=!0),Object.defineProperty(_,g.key,g)}}return function(_,v,b){return v&&c(_.prototype,v),b&&c(_,b),_}}(),s=a(4),d=u(s);function u(c){return c&&c.__esModule?c:{default:c}}function p(c,_){if(!(c instanceof _))throw new TypeError("Cannot call a class as a function")}function h(c,_){if(!c)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return _&&(typeof _=="object"||typeof _=="function")?_:c}function f(c,_){if(typeof _!="function"&&_!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof _);c.prototype=Object.create(_&&_.prototype,{constructor:{value:c,enumerable:!1,writable:!0,configurable:!0}}),_&&(Object.setPrototypeOf?Object.setPrototypeOf(c,_):c.__proto__=_)}var l=function(c){f(_,c);function _(){return p(this,_),h(this,(_.__proto__||Object.getPrototypeOf(_)).apply(this,arguments))}return r(_,null,[{key:"formats",value:function(b){return this.tagName.indexOf(b.tagName)+1}}]),_}(d.default);l.blotName="header",l.tagName=["H1","H2","H3","H4","H5","H6"],o.default=l},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.default=o.ListItem=void 0;var r=function(){function m(k,N){for(var S=0;S<N.length;S++){var T=N[S];T.enumerable=T.enumerable||!1,T.configurable=!0,"value"in T&&(T.writable=!0),Object.defineProperty(k,T.key,T)}}return function(k,N,S){return N&&m(k.prototype,N),S&&m(k,S),k}}(),s=function m(k,N,S){k===null&&(k=Function.prototype);var T=Object.getOwnPropertyDescriptor(k,N);if(T===void 0){var M=Object.getPrototypeOf(k);return M===null?void 0:m(M,N,S)}else{if("value"in T)return T.value;var E=T.get;return E===void 0?void 0:E.call(S)}},d=a(0),u=c(d),p=a(4),h=c(p),f=a(25),l=c(f);function c(m){return m&&m.__esModule?m:{default:m}}function _(m,k,N){return k in m?Object.defineProperty(m,k,{value:N,enumerable:!0,configurable:!0,writable:!0}):m[k]=N,m}function v(m,k){if(!(m instanceof k))throw new TypeError("Cannot call a class as a function")}function b(m,k){if(!m)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return k&&(typeof k=="object"||typeof k=="function")?k:m}function g(m,k){if(typeof k!="function"&&k!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof k);m.prototype=Object.create(k&&k.prototype,{constructor:{value:m,enumerable:!1,writable:!0,configurable:!0}}),k&&(Object.setPrototypeOf?Object.setPrototypeOf(m,k):m.__proto__=k)}var y=function(m){g(k,m);function k(){return v(this,k),b(this,(k.__proto__||Object.getPrototypeOf(k)).apply(this,arguments))}return r(k,[{key:"format",value:function(S,T){S===w.blotName&&!T?this.replaceWith(u.default.create(this.statics.scope)):s(k.prototype.__proto__||Object.getPrototypeOf(k.prototype),"format",this).call(this,S,T)}},{key:"remove",value:function(){this.prev==null&&this.next==null?this.parent.remove():s(k.prototype.__proto__||Object.getPrototypeOf(k.prototype),"remove",this).call(this)}},{key:"replaceWith",value:function(S,T){return this.parent.isolate(this.offset(this.parent),this.length()),S===this.parent.statics.blotName?(this.parent.replaceWith(S,T),this):(this.parent.unwrap(),s(k.prototype.__proto__||Object.getPrototypeOf(k.prototype),"replaceWith",this).call(this,S,T))}}],[{key:"formats",value:function(S){return S.tagName===this.tagName?void 0:s(k.__proto__||Object.getPrototypeOf(k),"formats",this).call(this,S)}}]),k}(h.default);y.blotName="list-item",y.tagName="LI";var w=function(m){g(k,m),r(k,null,[{key:"create",value:function(S){var T=S==="ordered"?"OL":"UL",M=s(k.__proto__||Object.getPrototypeOf(k),"create",this).call(this,T);return(S==="checked"||S==="unchecked")&&M.setAttribute("data-checked",S==="checked"),M}},{key:"formats",value:function(S){if(S.tagName==="OL")return"ordered";if(S.tagName==="UL")return S.hasAttribute("data-checked")?S.getAttribute("data-checked")==="true"?"checked":"unchecked":"bullet"}}]);function k(N){v(this,k);var S=b(this,(k.__proto__||Object.getPrototypeOf(k)).call(this,N)),T=function(E){if(E.target.parentNode===N){var C=S.statics.formats(N),O=u.default.find(E.target);C==="checked"?O.format("list","unchecked"):C==="unchecked"&&O.format("list","checked")}};return N.addEventListener("touchstart",T),N.addEventListener("mousedown",T),S}return r(k,[{key:"format",value:function(S,T){this.children.length>0&&this.children.tail.format(S,T)}},{key:"formats",value:function(){return _({},this.statics.blotName,this.statics.formats(this.domNode))}},{key:"insertBefore",value:function(S,T){if(S instanceof y)s(k.prototype.__proto__||Object.getPrototypeOf(k.prototype),"insertBefore",this).call(this,S,T);else{var M=T==null?this.length():T.offset(this),E=this.split(M);E.parent.insertBefore(S,E)}}},{key:"optimize",value:function(S){s(k.prototype.__proto__||Object.getPrototypeOf(k.prototype),"optimize",this).call(this,S);var T=this.next;T!=null&&T.prev===this&&T.statics.blotName===this.statics.blotName&&T.domNode.tagName===this.domNode.tagName&&T.domNode.getAttribute("data-checked")===this.domNode.getAttribute("data-checked")&&(T.moveChildren(this),T.remove())}},{key:"replace",value:function(S){if(S.statics.blotName!==this.statics.blotName){var T=u.default.create(this.statics.defaultChild);S.moveChildren(T),this.appendChild(T)}s(k.prototype.__proto__||Object.getPrototypeOf(k.prototype),"replace",this).call(this,S)}}]),k}(l.default);w.blotName="list",w.scope=u.default.Scope.BLOCK_BLOT,w.tagName=["OL","UL"],w.defaultChild="list-item",w.allowedChildren=[y],o.ListItem=y,o.default=w},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=a(56),s=d(r);function d(l){return l&&l.__esModule?l:{default:l}}function u(l,c){if(!(l instanceof c))throw new TypeError("Cannot call a class as a function")}function p(l,c){if(!l)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return c&&(typeof c=="object"||typeof c=="function")?c:l}function h(l,c){if(typeof c!="function"&&c!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof c);l.prototype=Object.create(c&&c.prototype,{constructor:{value:l,enumerable:!1,writable:!0,configurable:!0}}),c&&(Object.setPrototypeOf?Object.setPrototypeOf(l,c):l.__proto__=c)}var f=function(l){h(c,l);function c(){return u(this,c),p(this,(c.__proto__||Object.getPrototypeOf(c)).apply(this,arguments))}return c}(s.default);f.blotName="italic",f.tagName=["EM","I"],o.default=f},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=function(){function _(v,b){for(var g=0;g<b.length;g++){var y=b[g];y.enumerable=y.enumerable||!1,y.configurable=!0,"value"in y&&(y.writable=!0),Object.defineProperty(v,y.key,y)}}return function(v,b,g){return b&&_(v.prototype,b),g&&_(v,g),v}}(),s=function _(v,b,g){v===null&&(v=Function.prototype);var y=Object.getOwnPropertyDescriptor(v,b);if(y===void 0){var w=Object.getPrototypeOf(v);return w===null?void 0:_(w,b,g)}else{if("value"in y)return y.value;var m=y.get;return m===void 0?void 0:m.call(g)}},d=a(6),u=p(d);function p(_){return _&&_.__esModule?_:{default:_}}function h(_,v){if(!(_ instanceof v))throw new TypeError("Cannot call a class as a function")}function f(_,v){if(!_)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return v&&(typeof v=="object"||typeof v=="function")?v:_}function l(_,v){if(typeof v!="function"&&v!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof v);_.prototype=Object.create(v&&v.prototype,{constructor:{value:_,enumerable:!1,writable:!0,configurable:!0}}),v&&(Object.setPrototypeOf?Object.setPrototypeOf(_,v):_.__proto__=v)}var c=function(_){l(v,_);function v(){return h(this,v),f(this,(v.__proto__||Object.getPrototypeOf(v)).apply(this,arguments))}return r(v,null,[{key:"create",value:function(g){return g==="super"?document.createElement("sup"):g==="sub"?document.createElement("sub"):s(v.__proto__||Object.getPrototypeOf(v),"create",this).call(this,g)}},{key:"formats",value:function(g){if(g.tagName==="SUB")return"sub";if(g.tagName==="SUP")return"super"}}]),v}(u.default);c.blotName="script",c.tagName=["SUB","SUP"],o.default=c},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=a(6),s=d(r);function d(l){return l&&l.__esModule?l:{default:l}}function u(l,c){if(!(l instanceof c))throw new TypeError("Cannot call a class as a function")}function p(l,c){if(!l)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return c&&(typeof c=="object"||typeof c=="function")?c:l}function h(l,c){if(typeof c!="function"&&c!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof c);l.prototype=Object.create(c&&c.prototype,{constructor:{value:l,enumerable:!1,writable:!0,configurable:!0}}),c&&(Object.setPrototypeOf?Object.setPrototypeOf(l,c):l.__proto__=c)}var f=function(l){h(c,l);function c(){return u(this,c),p(this,(c.__proto__||Object.getPrototypeOf(c)).apply(this,arguments))}return c}(s.default);f.blotName="strike",f.tagName="S",o.default=f},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=a(6),s=d(r);function d(l){return l&&l.__esModule?l:{default:l}}function u(l,c){if(!(l instanceof c))throw new TypeError("Cannot call a class as a function")}function p(l,c){if(!l)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return c&&(typeof c=="object"||typeof c=="function")?c:l}function h(l,c){if(typeof c!="function"&&c!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof c);l.prototype=Object.create(c&&c.prototype,{constructor:{value:l,enumerable:!1,writable:!0,configurable:!0}}),c&&(Object.setPrototypeOf?Object.setPrototypeOf(l,c):l.__proto__=c)}var f=function(l){h(c,l);function c(){return u(this,c),p(this,(c.__proto__||Object.getPrototypeOf(c)).apply(this,arguments))}return c}(s.default);f.blotName="underline",f.tagName="U",o.default=f},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=function(){function b(g,y){for(var w=0;w<y.length;w++){var m=y[w];m.enumerable=m.enumerable||!1,m.configurable=!0,"value"in m&&(m.writable=!0),Object.defineProperty(g,m.key,m)}}return function(g,y,w){return y&&b(g.prototype,y),w&&b(g,w),g}}(),s=function b(g,y,w){g===null&&(g=Function.prototype);var m=Object.getOwnPropertyDescriptor(g,y);if(m===void 0){var k=Object.getPrototypeOf(g);return k===null?void 0:b(k,y,w)}else{if("value"in m)return m.value;var N=m.get;return N===void 0?void 0:N.call(w)}},d=a(0),u=h(d),p=a(27);function h(b){return b&&b.__esModule?b:{default:b}}function f(b,g){if(!(b instanceof g))throw new TypeError("Cannot call a class as a function")}function l(b,g){if(!b)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return g&&(typeof g=="object"||typeof g=="function")?g:b}function c(b,g){if(typeof g!="function"&&g!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof g);b.prototype=Object.create(g&&g.prototype,{constructor:{value:b,enumerable:!1,writable:!0,configurable:!0}}),g&&(Object.setPrototypeOf?Object.setPrototypeOf(b,g):b.__proto__=g)}var _=["alt","height","width"],v=function(b){c(g,b);function g(){return f(this,g),l(this,(g.__proto__||Object.getPrototypeOf(g)).apply(this,arguments))}return r(g,[{key:"format",value:function(w,m){_.indexOf(w)>-1?m?this.domNode.setAttribute(w,m):this.domNode.removeAttribute(w):s(g.prototype.__proto__||Object.getPrototypeOf(g.prototype),"format",this).call(this,w,m)}}],[{key:"create",value:function(w){var m=s(g.__proto__||Object.getPrototypeOf(g),"create",this).call(this,w);return typeof w=="string"&&m.setAttribute("src",this.sanitize(w)),m}},{key:"formats",value:function(w){return _.reduce(function(m,k){return w.hasAttribute(k)&&(m[k]=w.getAttribute(k)),m},{})}},{key:"match",value:function(w){return/\.(jpe?g|gif|png)$/.test(w)||/^data:image\/.+;base64/.test(w)}},{key:"sanitize",value:function(w){return(0,p.sanitize)(w,["http","https","data"])?w:"//:0"}},{key:"value",value:function(w){return w.getAttribute("src")}}]),g}(u.default.Embed);v.blotName="image",v.tagName="IMG",o.default=v},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=function(){function b(g,y){for(var w=0;w<y.length;w++){var m=y[w];m.enumerable=m.enumerable||!1,m.configurable=!0,"value"in m&&(m.writable=!0),Object.defineProperty(g,m.key,m)}}return function(g,y,w){return y&&b(g.prototype,y),w&&b(g,w),g}}(),s=function b(g,y,w){g===null&&(g=Function.prototype);var m=Object.getOwnPropertyDescriptor(g,y);if(m===void 0){var k=Object.getPrototypeOf(g);return k===null?void 0:b(k,y,w)}else{if("value"in m)return m.value;var N=m.get;return N===void 0?void 0:N.call(w)}},d=a(4),u=a(27),p=h(u);function h(b){return b&&b.__esModule?b:{default:b}}function f(b,g){if(!(b instanceof g))throw new TypeError("Cannot call a class as a function")}function l(b,g){if(!b)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return g&&(typeof g=="object"||typeof g=="function")?g:b}function c(b,g){if(typeof g!="function"&&g!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof g);b.prototype=Object.create(g&&g.prototype,{constructor:{value:b,enumerable:!1,writable:!0,configurable:!0}}),g&&(Object.setPrototypeOf?Object.setPrototypeOf(b,g):b.__proto__=g)}var _=["height","width"],v=function(b){c(g,b);function g(){return f(this,g),l(this,(g.__proto__||Object.getPrototypeOf(g)).apply(this,arguments))}return r(g,[{key:"format",value:function(w,m){_.indexOf(w)>-1?m?this.domNode.setAttribute(w,m):this.domNode.removeAttribute(w):s(g.prototype.__proto__||Object.getPrototypeOf(g.prototype),"format",this).call(this,w,m)}}],[{key:"create",value:function(w){var m=s(g.__proto__||Object.getPrototypeOf(g),"create",this).call(this,w);return m.setAttribute("frameborder","0"),m.setAttribute("allowfullscreen",!0),m.setAttribute("src",this.sanitize(w)),m}},{key:"formats",value:function(w){return _.reduce(function(m,k){return w.hasAttribute(k)&&(m[k]=w.getAttribute(k)),m},{})}},{key:"sanitize",value:function(w){return p.default.sanitize(w)}},{key:"value",value:function(w){return w.getAttribute("src")}}]),g}(d.BlockEmbed);v.blotName="video",v.className="ql-video",v.tagName="IFRAME",o.default=v},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.default=o.FormulaBlot=void 0;var r=function(){function w(m,k){for(var N=0;N<k.length;N++){var S=k[N];S.enumerable=S.enumerable||!1,S.configurable=!0,"value"in S&&(S.writable=!0),Object.defineProperty(m,S.key,S)}}return function(m,k,N){return k&&w(m.prototype,k),N&&w(m,N),m}}(),s=function w(m,k,N){m===null&&(m=Function.prototype);var S=Object.getOwnPropertyDescriptor(m,k);if(S===void 0){var T=Object.getPrototypeOf(m);return T===null?void 0:w(T,k,N)}else{if("value"in S)return S.value;var M=S.get;return M===void 0?void 0:M.call(N)}},d=a(35),u=c(d),p=a(5),h=c(p),f=a(9),l=c(f);function c(w){return w&&w.__esModule?w:{default:w}}function _(w,m){if(!(w instanceof m))throw new TypeError("Cannot call a class as a function")}function v(w,m){if(!w)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return m&&(typeof m=="object"||typeof m=="function")?m:w}function b(w,m){if(typeof m!="function"&&m!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof m);w.prototype=Object.create(m&&m.prototype,{constructor:{value:w,enumerable:!1,writable:!0,configurable:!0}}),m&&(Object.setPrototypeOf?Object.setPrototypeOf(w,m):w.__proto__=m)}var g=function(w){b(m,w);function m(){return _(this,m),v(this,(m.__proto__||Object.getPrototypeOf(m)).apply(this,arguments))}return r(m,null,[{key:"create",value:function(N){var S=s(m.__proto__||Object.getPrototypeOf(m),"create",this).call(this,N);return typeof N=="string"&&(window.katex.render(N,S,{throwOnError:!1,errorColor:"#f00"}),S.setAttribute("data-value",N)),S}},{key:"value",value:function(N){return N.getAttribute("data-value")}}]),m}(u.default);g.blotName="formula",g.className="ql-formula",g.tagName="SPAN";var y=function(w){b(m,w),r(m,null,[{key:"register",value:function(){h.default.register(g,!0)}}]);function m(){_(this,m);var k=v(this,(m.__proto__||Object.getPrototypeOf(m)).call(this));if(window.katex==null)throw new Error("Formula module requires KaTeX.");return k}return m}(l.default);o.FormulaBlot=g,o.default=y},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.default=o.CodeToken=o.CodeBlock=void 0;var r=function(){function N(S,T){for(var M=0;M<T.length;M++){var E=T[M];E.enumerable=E.enumerable||!1,E.configurable=!0,"value"in E&&(E.writable=!0),Object.defineProperty(S,E.key,E)}}return function(S,T,M){return T&&N(S.prototype,T),M&&N(S,M),S}}(),s=function N(S,T,M){S===null&&(S=Function.prototype);var E=Object.getOwnPropertyDescriptor(S,T);if(E===void 0){var C=Object.getPrototypeOf(S);return C===null?void 0:N(C,T,M)}else{if("value"in E)return E.value;var O=E.get;return O===void 0?void 0:O.call(M)}},d=a(0),u=v(d),p=a(5),h=v(p),f=a(9),l=v(f),c=a(13),_=v(c);function v(N){return N&&N.__esModule?N:{default:N}}function b(N,S){if(!(N instanceof S))throw new TypeError("Cannot call a class as a function")}function g(N,S){if(!N)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return S&&(typeof S=="object"||typeof S=="function")?S:N}function y(N,S){if(typeof S!="function"&&S!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof S);N.prototype=Object.create(S&&S.prototype,{constructor:{value:N,enumerable:!1,writable:!0,configurable:!0}}),S&&(Object.setPrototypeOf?Object.setPrototypeOf(N,S):N.__proto__=S)}var w=function(N){y(S,N);function S(){return b(this,S),g(this,(S.__proto__||Object.getPrototypeOf(S)).apply(this,arguments))}return r(S,[{key:"replaceWith",value:function(M){this.domNode.textContent=this.domNode.textContent,this.attach(),s(S.prototype.__proto__||Object.getPrototypeOf(S.prototype),"replaceWith",this).call(this,M)}},{key:"highlight",value:function(M){var E=this.domNode.textContent;this.cachedText!==E&&((E.trim().length>0||this.cachedText==null)&&(this.domNode.innerHTML=M(E),this.domNode.normalize(),this.attach()),this.cachedText=E)}}]),S}(_.default);w.className="ql-syntax";var m=new u.default.Attributor.Class("token","hljs",{scope:u.default.Scope.INLINE}),k=function(N){y(S,N),r(S,null,[{key:"register",value:function(){h.default.register(m,!0),h.default.register(w,!0)}}]);function S(T,M){b(this,S);var E=g(this,(S.__proto__||Object.getPrototypeOf(S)).call(this,T,M));if(typeof E.options.highlight!="function")throw new Error("Syntax module requires highlight.js. Please include the library on the page before Quill.");var C=null;return E.quill.on(h.default.events.SCROLL_OPTIMIZE,function(){clearTimeout(C),C=setTimeout(function(){E.highlight(),C=null},E.options.interval)}),E.highlight(),E}return r(S,[{key:"highlight",value:function(){var M=this;if(!this.quill.selection.composing){this.quill.update(h.default.sources.USER);var E=this.quill.getSelection();this.quill.scroll.descendants(w).forEach(function(C){C.highlight(M.options.highlight)}),this.quill.update(h.default.sources.SILENT),E!=null&&this.quill.setSelection(E,h.default.sources.SILENT)}}}]),S}(l.default);k.DEFAULTS={highlight:function(){return window.hljs==null?null:function(N){var S=window.hljs.highlightAuto(N);return S.value}}(),interval:1e3},o.CodeBlock=w,o.CodeToken=m,o.default=k},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=3 x2=15 y1=9 y2=9></line> <line class=ql-stroke x1=3 x2=13 y1=14 y2=14></line> <line class=ql-stroke x1=3 x2=9 y1=4 y2=4></line> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=15 x2=3 y1=9 y2=9></line> <line class=ql-stroke x1=14 x2=4 y1=14 y2=14></line> <line class=ql-stroke x1=12 x2=6 y1=4 y2=4></line> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=15 x2=3 y1=9 y2=9></line> <line class=ql-stroke x1=15 x2=5 y1=14 y2=14></line> <line class=ql-stroke x1=15 x2=9 y1=4 y2=4></line> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=15 x2=3 y1=9 y2=9></line> <line class=ql-stroke x1=15 x2=3 y1=14 y2=14></line> <line class=ql-stroke x1=15 x2=3 y1=4 y2=4></line> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <g class="ql-fill ql-color-label"> <polygon points="6 6.868 6 6 5 6 5 7 5.942 7 6 6.868"></polygon> <rect height=1 width=1 x=4 y=4></rect> <polygon points="6.817 5 6 5 6 6 6.38 6 6.817 5"></polygon> <rect height=1 width=1 x=2 y=6></rect> <rect height=1 width=1 x=3 y=5></rect> <rect height=1 width=1 x=4 y=7></rect> <polygon points="4 11.439 4 11 3 11 3 12 3.755 12 4 11.439"></polygon> <rect height=1 width=1 x=2 y=12></rect> <rect height=1 width=1 x=2 y=9></rect> <rect height=1 width=1 x=2 y=15></rect> <polygon points="4.63 10 4 10 4 11 4.192 11 4.63 10"></polygon> <rect height=1 width=1 x=3 y=8></rect> <path d=M10.832,4.2L11,4.582V4H10.708A1.948,1.948,0,0,1,10.832,4.2Z></path> <path d=M7,4.582L7.168,4.2A1.929,1.929,0,0,1,7.292,4H7V4.582Z></path> <path d=M8,13H7.683l-0.351.8a1.933,1.933,0,0,1-.124.2H8V13Z></path> <rect height=1 width=1 x=12 y=2></rect> <rect height=1 width=1 x=11 y=3></rect> <path d=M9,3H8V3.282A1.985,1.985,0,0,1,9,3Z></path> <rect height=1 width=1 x=2 y=3></rect> <rect height=1 width=1 x=6 y=2></rect> <rect height=1 width=1 x=3 y=2></rect> <rect height=1 width=1 x=5 y=3></rect> <rect height=1 width=1 x=9 y=2></rect> <rect height=1 width=1 x=15 y=14></rect> <polygon points="13.447 10.174 13.469 10.225 13.472 10.232 13.808 11 14 11 14 10 13.37 10 13.447 10.174"></polygon> <rect height=1 width=1 x=13 y=7></rect> <rect height=1 width=1 x=15 y=5></rect> <rect height=1 width=1 x=14 y=6></rect> <rect height=1 width=1 x=15 y=8></rect> <rect height=1 width=1 x=14 y=9></rect> <path d=M3.775,14H3v1H4V14.314A1.97,1.97,0,0,1,3.775,14Z></path> <rect height=1 width=1 x=14 y=3></rect> <polygon points="12 6.868 12 6 11.62 6 12 6.868"></polygon> <rect height=1 width=1 x=15 y=2></rect> <rect height=1 width=1 x=12 y=5></rect> <rect height=1 width=1 x=13 y=4></rect> <polygon points="12.933 9 13 9 13 8 12.495 8 12.933 9"></polygon> <rect height=1 width=1 x=9 y=14></rect> <rect height=1 width=1 x=8 y=15></rect> <path d=M6,14.926V15H7V14.316A1.993,1.993,0,0,1,6,14.926Z></path> <rect height=1 width=1 x=5 y=15></rect> <path d=M10.668,13.8L10.317,13H10v1h0.792A1.947,1.947,0,0,1,10.668,13.8Z></path> <rect height=1 width=1 x=11 y=15></rect> <path d=M14.332,12.2a1.99,1.99,0,0,1,.166.8H15V12H14.245Z></path> <rect height=1 width=1 x=14 y=15></rect> <rect height=1 width=1 x=15 y=11></rect> </g> <polyline class=ql-stroke points="5.5 13 9 5 12.5 13"></polyline> <line class=ql-stroke x1=11.63 x2=6.38 y1=11 y2=11></line> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <rect class="ql-fill ql-stroke" height=3 width=3 x=4 y=5></rect> <rect class="ql-fill ql-stroke" height=3 width=3 x=11 y=5></rect> <path class="ql-even ql-fill ql-stroke" d=M7,8c0,4.031-3,5-3,5></path> <path class="ql-even ql-fill ql-stroke" d=M14,8c0,4.031-3,5-3,5></path> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <path class=ql-stroke d=M5,4H9.5A2.5,2.5,0,0,1,12,6.5v0A2.5,2.5,0,0,1,9.5,9H5A0,0,0,0,1,5,9V4A0,0,0,0,1,5,4Z></path> <path class=ql-stroke d=M5,9h5.5A2.5,2.5,0,0,1,13,11.5v0A2.5,2.5,0,0,1,10.5,14H5a0,0,0,0,1,0,0V9A0,0,0,0,1,5,9Z></path> </svg>'},function(e,o){e.exports='<svg class="" viewbox="0 0 18 18"> <line class=ql-stroke x1=5 x2=13 y1=3 y2=3></line> <line class=ql-stroke x1=6 x2=9.35 y1=12 y2=3></line> <line class=ql-stroke x1=11 x2=15 y1=11 y2=15></line> <line class=ql-stroke x1=15 x2=11 y1=11 y2=15></line> <rect class=ql-fill height=1 rx=0.5 ry=0.5 width=7 x=2 y=14></rect> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <line class="ql-color-label ql-stroke ql-transparent" x1=3 x2=15 y1=15 y2=15></line> <polyline class=ql-stroke points="5.5 11 9 3 12.5 11"></polyline> <line class=ql-stroke x1=11.63 x2=6.38 y1=9 y2=9></line> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <polygon class="ql-stroke ql-fill" points="3 11 5 9 3 7 3 11"></polygon> <line class="ql-stroke ql-fill" x1=15 x2=11 y1=4 y2=4></line> <path class=ql-fill d=M11,3a3,3,0,0,0,0,6h1V3H11Z></path> <rect class=ql-fill height=11 width=1 x=11 y=4></rect> <rect class=ql-fill height=11 width=1 x=13 y=4></rect> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <polygon class="ql-stroke ql-fill" points="15 12 13 10 15 8 15 12"></polygon> <line class="ql-stroke ql-fill" x1=9 x2=5 y1=4 y2=4></line> <path class=ql-fill d=M5,3A3,3,0,0,0,5,9H6V3H5Z></path> <rect class=ql-fill height=11 width=1 x=5 y=4></rect> <rect class=ql-fill height=11 width=1 x=7 y=4></rect> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <path class=ql-fill d=M14,16H4a1,1,0,0,1,0-2H14A1,1,0,0,1,14,16Z /> <path class=ql-fill d=M14,4H4A1,1,0,0,1,4,2H14A1,1,0,0,1,14,4Z /> <rect class=ql-fill x=3 y=6 width=12 height=6 rx=1 ry=1 /> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <path class=ql-fill d=M13,16H5a1,1,0,0,1,0-2h8A1,1,0,0,1,13,16Z /> <path class=ql-fill d=M13,4H5A1,1,0,0,1,5,2h8A1,1,0,0,1,13,4Z /> <rect class=ql-fill x=2 y=6 width=14 height=6 rx=1 ry=1 /> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <path class=ql-fill d=M15,8H13a1,1,0,0,1,0-2h2A1,1,0,0,1,15,8Z /> <path class=ql-fill d=M15,12H13a1,1,0,0,1,0-2h2A1,1,0,0,1,15,12Z /> <path class=ql-fill d=M15,16H5a1,1,0,0,1,0-2H15A1,1,0,0,1,15,16Z /> <path class=ql-fill d=M15,4H5A1,1,0,0,1,5,2H15A1,1,0,0,1,15,4Z /> <rect class=ql-fill x=2 y=6 width=8 height=6 rx=1 ry=1 /> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <path class=ql-fill d=M5,8H3A1,1,0,0,1,3,6H5A1,1,0,0,1,5,8Z /> <path class=ql-fill d=M5,12H3a1,1,0,0,1,0-2H5A1,1,0,0,1,5,12Z /> <path class=ql-fill d=M13,16H3a1,1,0,0,1,0-2H13A1,1,0,0,1,13,16Z /> <path class=ql-fill d=M13,4H3A1,1,0,0,1,3,2H13A1,1,0,0,1,13,4Z /> <rect class=ql-fill x=8 y=6 width=8 height=6 rx=1 ry=1 transform="translate(24 18) rotate(-180)"/> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <path class=ql-fill d=M11.759,2.482a2.561,2.561,0,0,0-3.53.607A7.656,7.656,0,0,0,6.8,6.2C6.109,9.188,5.275,14.677,4.15,14.927a1.545,1.545,0,0,0-1.3-.933A0.922,0.922,0,0,0,2,15.036S1.954,16,4.119,16s3.091-2.691,3.7-5.553c0.177-.826.36-1.726,0.554-2.6L8.775,6.2c0.381-1.421.807-2.521,1.306-2.676a1.014,1.014,0,0,0,1.02.56A0.966,0.966,0,0,0,11.759,2.482Z></path> <rect class=ql-fill height=1.6 rx=0.8 ry=0.8 width=5 x=5.15 y=6.2></rect> <path class=ql-fill d=M13.663,12.027a1.662,1.662,0,0,1,.266-0.276q0.193,0.069.456,0.138a2.1,2.1,0,0,0,.535.069,1.075,1.075,0,0,0,.767-0.3,1.044,1.044,0,0,0,.314-0.8,0.84,0.84,0,0,0-.238-0.619,0.8,0.8,0,0,0-.594-0.239,1.154,1.154,0,0,0-.781.3,4.607,4.607,0,0,0-.781,1q-0.091.15-.218,0.346l-0.246.38c-0.068-.288-0.137-0.582-0.212-0.885-0.459-1.847-2.494-.984-2.941-0.8-0.482.2-.353,0.647-0.094,0.529a0.869,0.869,0,0,1,1.281.585c0.217,0.751.377,1.436,0.527,2.038a5.688,5.688,0,0,1-.362.467,2.69,2.69,0,0,1-.264.271q-0.221-.08-0.471-0.147a2.029,2.029,0,0,0-.522-0.066,1.079,1.079,0,0,0-.768.3A1.058,1.058,0,0,0,9,15.131a0.82,0.82,0,0,0,.832.852,1.134,1.134,0,0,0,.787-0.3,5.11,5.11,0,0,0,.776-0.993q0.141-.219.215-0.34c0.046-.076.122-0.194,0.223-0.346a2.786,2.786,0,0,0,.918,1.726,2.582,2.582,0,0,0,2.376-.185c0.317-.181.212-0.565,0-0.494A0.807,0.807,0,0,1,14.176,15a5.159,5.159,0,0,1-.913-2.446l0,0Q13.487,12.24,13.663,12.027Z></path> </svg>'},function(e,o){e.exports='<svg viewBox="0 0 18 18"> <path class=ql-fill d=M10,4V14a1,1,0,0,1-2,0V10H3v4a1,1,0,0,1-2,0V4A1,1,0,0,1,3,4V8H8V4a1,1,0,0,1,2,0Zm6.06787,9.209H14.98975V7.59863a.54085.54085,0,0,0-.605-.60547h-.62744a1.01119,1.01119,0,0,0-.748.29688L11.645,8.56641a.5435.5435,0,0,0-.022.8584l.28613.30762a.53861.53861,0,0,0,.84717.0332l.09912-.08789a1.2137,1.2137,0,0,0,.2417-.35254h.02246s-.01123.30859-.01123.60547V13.209H12.041a.54085.54085,0,0,0-.605.60547v.43945a.54085.54085,0,0,0,.605.60547h4.02686a.54085.54085,0,0,0,.605-.60547v-.43945A.54085.54085,0,0,0,16.06787,13.209Z /> </svg>'},function(e,o){e.exports='<svg viewBox="0 0 18 18"> <path class=ql-fill d=M16.73975,13.81445v.43945a.54085.54085,0,0,1-.605.60547H11.855a.58392.58392,0,0,1-.64893-.60547V14.0127c0-2.90527,3.39941-3.42187,3.39941-4.55469a.77675.77675,0,0,0-.84717-.78125,1.17684,1.17684,0,0,0-.83594.38477c-.2749.26367-.561.374-.85791.13184l-.4292-.34082c-.30811-.24219-.38525-.51758-.1543-.81445a2.97155,2.97155,0,0,1,2.45361-1.17676,2.45393,2.45393,0,0,1,2.68408,2.40918c0,2.45312-3.1792,2.92676-3.27832,3.93848h2.79443A.54085.54085,0,0,1,16.73975,13.81445ZM9,3A.99974.99974,0,0,0,8,4V8H3V4A1,1,0,0,0,1,4V14a1,1,0,0,0,2,0V10H8v4a1,1,0,0,0,2,0V4A.99974.99974,0,0,0,9,3Z /> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=7 x2=13 y1=4 y2=4></line> <line class=ql-stroke x1=5 x2=11 y1=14 y2=14></line> <line class=ql-stroke x1=8 x2=10 y1=14 y2=4></line> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <rect class=ql-stroke height=10 width=12 x=3 y=4></rect> <circle class=ql-fill cx=6 cy=7 r=1></circle> <polyline class="ql-even ql-fill" points="5 12 5 11 7 9 8 10 11 7 13 9 13 12 5 12"></polyline> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=3 x2=15 y1=14 y2=14></line> <line class=ql-stroke x1=3 x2=15 y1=4 y2=4></line> <line class=ql-stroke x1=9 x2=15 y1=9 y2=9></line> <polyline class="ql-fill ql-stroke" points="3 7 3 11 5 9 3 7"></polyline> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=3 x2=15 y1=14 y2=14></line> <line class=ql-stroke x1=3 x2=15 y1=4 y2=4></line> <line class=ql-stroke x1=9 x2=15 y1=9 y2=9></line> <polyline class=ql-stroke points="5 7 5 11 3 9 5 7"></polyline> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=7 x2=11 y1=7 y2=11></line> <path class="ql-even ql-stroke" d=M8.9,4.577a3.476,3.476,0,0,1,.36,4.679A3.476,3.476,0,0,1,4.577,8.9C3.185,7.5,2.035,6.4,4.217,4.217S7.5,3.185,8.9,4.577Z></path> <path class="ql-even ql-stroke" d=M13.423,9.1a3.476,3.476,0,0,0-4.679-.36,3.476,3.476,0,0,0,.36,4.679c1.392,1.392,2.5,2.542,4.679.36S14.815,10.5,13.423,9.1Z></path> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=7 x2=15 y1=4 y2=4></line> <line class=ql-stroke x1=7 x2=15 y1=9 y2=9></line> <line class=ql-stroke x1=7 x2=15 y1=14 y2=14></line> <line class="ql-stroke ql-thin" x1=2.5 x2=4.5 y1=5.5 y2=5.5></line> <path class=ql-fill d=M3.5,6A0.5,0.5,0,0,1,3,5.5V3.085l-0.276.138A0.5,0.5,0,0,1,2.053,3c-0.124-.247-0.023-0.324.224-0.447l1-.5A0.5,0.5,0,0,1,4,2.5v3A0.5,0.5,0,0,1,3.5,6Z></path> <path class="ql-stroke ql-thin" d=M4.5,10.5h-2c0-.234,1.85-1.076,1.85-2.234A0.959,0.959,0,0,0,2.5,8.156></path> <path class="ql-stroke ql-thin" d=M2.5,14.846a0.959,0.959,0,0,0,1.85-.109A0.7,0.7,0,0,0,3.75,14a0.688,0.688,0,0,0,.6-0.736,0.959,0.959,0,0,0-1.85-.109></path> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=6 x2=15 y1=4 y2=4></line> <line class=ql-stroke x1=6 x2=15 y1=9 y2=9></line> <line class=ql-stroke x1=6 x2=15 y1=14 y2=14></line> <line class=ql-stroke x1=3 x2=3 y1=4 y2=4></line> <line class=ql-stroke x1=3 x2=3 y1=9 y2=9></line> <line class=ql-stroke x1=3 x2=3 y1=14 y2=14></line> </svg>'},function(e,o){e.exports='<svg class="" viewbox="0 0 18 18"> <line class=ql-stroke x1=9 x2=15 y1=4 y2=4></line> <polyline class=ql-stroke points="3 4 4 5 6 3"></polyline> <line class=ql-stroke x1=9 x2=15 y1=14 y2=14></line> <polyline class=ql-stroke points="3 14 4 15 6 13"></polyline> <line class=ql-stroke x1=9 x2=15 y1=9 y2=9></line> <polyline class=ql-stroke points="3 9 4 10 6 8"></polyline> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <path class=ql-fill d=M15.5,15H13.861a3.858,3.858,0,0,0,1.914-2.975,1.8,1.8,0,0,0-1.6-1.751A1.921,1.921,0,0,0,12.021,11.7a0.50013,0.50013,0,1,0,.957.291h0a0.914,0.914,0,0,1,1.053-.725,0.81,0.81,0,0,1,.744.762c0,1.076-1.16971,1.86982-1.93971,2.43082A1.45639,1.45639,0,0,0,12,15.5a0.5,0.5,0,0,0,.5.5h3A0.5,0.5,0,0,0,15.5,15Z /> <path class=ql-fill d=M9.65,5.241a1,1,0,0,0-1.409.108L6,7.964,3.759,5.349A1,1,0,0,0,2.192,6.59178Q2.21541,6.6213,2.241,6.649L4.684,9.5,2.241,12.35A1,1,0,0,0,3.71,13.70722q0.02557-.02768.049-0.05722L6,11.036,8.241,13.65a1,1,0,1,0,1.567-1.24277Q9.78459,12.3777,9.759,12.35L7.316,9.5,9.759,6.651A1,1,0,0,0,9.65,5.241Z /> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <path class=ql-fill d=M15.5,7H13.861a4.015,4.015,0,0,0,1.914-2.975,1.8,1.8,0,0,0-1.6-1.751A1.922,1.922,0,0,0,12.021,3.7a0.5,0.5,0,1,0,.957.291,0.917,0.917,0,0,1,1.053-.725,0.81,0.81,0,0,1,.744.762c0,1.077-1.164,1.925-1.934,2.486A1.423,1.423,0,0,0,12,7.5a0.5,0.5,0,0,0,.5.5h3A0.5,0.5,0,0,0,15.5,7Z /> <path class=ql-fill d=M9.651,5.241a1,1,0,0,0-1.41.108L6,7.964,3.759,5.349a1,1,0,1,0-1.519,1.3L4.683,9.5,2.241,12.35a1,1,0,1,0,1.519,1.3L6,11.036,8.241,13.65a1,1,0,0,0,1.519-1.3L7.317,9.5,9.759,6.651A1,1,0,0,0,9.651,5.241Z /> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <line class="ql-stroke ql-thin" x1=15.5 x2=2.5 y1=8.5 y2=9.5></line> <path class=ql-fill d=M9.007,8C6.542,7.791,6,7.519,6,6.5,6,5.792,7.283,5,9,5c1.571,0,2.765.679,2.969,1.309a1,1,0,0,0,1.9-.617C13.356,4.106,11.354,3,9,3,6.2,3,4,4.538,4,6.5a3.2,3.2,0,0,0,.5,1.843Z></path> <path class=ql-fill d=M8.984,10C11.457,10.208,12,10.479,12,11.5c0,0.708-1.283,1.5-3,1.5-1.571,0-2.765-.679-2.969-1.309a1,1,0,1,0-1.9.617C4.644,13.894,6.646,15,9,15c2.8,0,5-1.538,5-3.5a3.2,3.2,0,0,0-.5-1.843Z></path> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <path class=ql-stroke d=M5,3V9a4.012,4.012,0,0,0,4,4H9a4.012,4.012,0,0,0,4-4V3></path> <rect class=ql-fill height=1 rx=0.5 ry=0.5 width=12 x=3 y=15></rect> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <rect class=ql-stroke height=12 width=12 x=3 y=3></rect> <rect class=ql-fill height=12 width=1 x=5 y=3></rect> <rect class=ql-fill height=12 width=1 x=12 y=3></rect> <rect class=ql-fill height=2 width=8 x=5 y=8></rect> <rect class=ql-fill height=1 width=3 x=3 y=5></rect> <rect class=ql-fill height=1 width=3 x=3 y=7></rect> <rect class=ql-fill height=1 width=3 x=3 y=10></rect> <rect class=ql-fill height=1 width=3 x=3 y=12></rect> <rect class=ql-fill height=1 width=3 x=12 y=5></rect> <rect class=ql-fill height=1 width=3 x=12 y=7></rect> <rect class=ql-fill height=1 width=3 x=12 y=10></rect> <rect class=ql-fill height=1 width=3 x=12 y=12></rect> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <polygon class=ql-stroke points="7 11 9 13 11 11 7 11"></polygon> <polygon class=ql-stroke points="7 7 9 5 11 7 7 7"></polygon> </svg>'},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.default=o.BubbleTooltip=void 0;var r=function S(T,M,E){T===null&&(T=Function.prototype);var C=Object.getOwnPropertyDescriptor(T,M);if(C===void 0){var O=Object.getPrototypeOf(T);return O===null?void 0:S(O,M,E)}else{if("value"in C)return C.value;var x=C.get;return x===void 0?void 0:x.call(E)}},s=function(){function S(T,M){for(var E=0;E<M.length;E++){var C=M[E];C.enumerable=C.enumerable||!1,C.configurable=!0,"value"in C&&(C.writable=!0),Object.defineProperty(T,C.key,C)}}return function(T,M,E){return M&&S(T.prototype,M),E&&S(T,E),T}}(),d=a(3),u=b(d),p=a(8),h=b(p),f=a(43),l=b(f),c=a(15),_=a(41),v=b(_);function b(S){return S&&S.__esModule?S:{default:S}}function g(S,T){if(!(S instanceof T))throw new TypeError("Cannot call a class as a function")}function y(S,T){if(!S)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return T&&(typeof T=="object"||typeof T=="function")?T:S}function w(S,T){if(typeof T!="function"&&T!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof T);S.prototype=Object.create(T&&T.prototype,{constructor:{value:S,enumerable:!1,writable:!0,configurable:!0}}),T&&(Object.setPrototypeOf?Object.setPrototypeOf(S,T):S.__proto__=T)}var m=[["bold","italic","link"],[{header:1},{header:2},"blockquote"]],k=function(S){w(T,S);function T(M,E){g(this,T),E.modules.toolbar!=null&&E.modules.toolbar.container==null&&(E.modules.toolbar.container=m);var C=y(this,(T.__proto__||Object.getPrototypeOf(T)).call(this,M,E));return C.quill.container.classList.add("ql-bubble"),C}return s(T,[{key:"extendToolbar",value:function(E){this.tooltip=new N(this.quill,this.options.bounds),this.tooltip.root.appendChild(E.container),this.buildButtons([].slice.call(E.container.querySelectorAll("button")),v.default),this.buildPickers([].slice.call(E.container.querySelectorAll("select")),v.default)}}]),T}(l.default);k.DEFAULTS=(0,u.default)(!0,{},l.default.DEFAULTS,{modules:{toolbar:{handlers:{link:function(T){T?this.quill.theme.tooltip.edit():this.quill.format("link",!1)}}}}});var N=function(S){w(T,S);function T(M,E){g(this,T);var C=y(this,(T.__proto__||Object.getPrototypeOf(T)).call(this,M,E));return C.quill.on(h.default.events.EDITOR_CHANGE,function(O,x,P,q){if(O===h.default.events.SELECTION_CHANGE)if(x!=null&&x.length>0&&q===h.default.sources.USER){C.show(),C.root.style.left="0px",C.root.style.width="",C.root.style.width=C.root.offsetWidth+"px";var G=C.quill.getLines(x.index,x.length);if(G.length===1)C.position(C.quill.getBounds(x));else{var W=G[G.length-1],ie=C.quill.getIndex(W),U=Math.min(W.length()-1,x.index+x.length-ie),R=C.quill.getBounds(new c.Range(ie,U));C.position(R)}}else document.activeElement!==C.textbox&&C.quill.hasFocus()&&C.hide()}),C}return s(T,[{key:"listen",value:function(){var E=this;r(T.prototype.__proto__||Object.getPrototypeOf(T.prototype),"listen",this).call(this),this.root.querySelector(".ql-close").addEventListener("click",function(){E.root.classList.remove("ql-editing")}),this.quill.on(h.default.events.SCROLL_OPTIMIZE,function(){setTimeout(function(){if(!E.root.classList.contains("ql-hidden")){var C=E.quill.getSelection();C!=null&&E.position(E.quill.getBounds(C))}},1)})}},{key:"cancel",value:function(){this.show()}},{key:"position",value:function(E){var C=r(T.prototype.__proto__||Object.getPrototypeOf(T.prototype),"position",this).call(this,E),O=this.root.querySelector(".ql-tooltip-arrow");if(O.style.marginLeft="",C===0)return C;O.style.marginLeft=-1*C-O.offsetWidth/2+"px"}}]),T}(f.BaseTooltip);N.TEMPLATE=['<span class="ql-tooltip-arrow"></span>','<div class="ql-tooltip-editor">','<input type="text" data-formula="e=mc^2" data-link="https://quilljs.com" data-video="Embed URL">','<a class="ql-close"></a>',"</div>"].join(""),o.BubbleTooltip=N,o.default=k},function(e,o,a){e.exports=a(63)}]).default})})(To);var Kf=To.exports;const yt=jn(Kf);var vt=-1,mt=1,at=0;function mn(t,n,e,o){if(t===n)return t?[[at,t]]:[];if(e!=null){var a=Jf(t,n,e);if(a)return a}var r=Fr(t,n),s=t.substring(0,r);t=t.substring(r),n=n.substring(r),r=Hr(t,n);var d=t.substring(t.length-r);t=t.substring(0,t.length-r),n=n.substring(0,n.length-r);var u=Gf(t,n);return s&&u.unshift([at,s]),d&&u.push([at,d]),xo(u,o),u}function Gf(t,n){var e;if(!t)return[[mt,n]];if(!n)return[[vt,t]];var o=t.length>n.length?t:n,a=t.length>n.length?n:t,r=o.indexOf(a);if(r!==-1)return e=[[mt,o.substring(0,r)],[at,a],[mt,o.substring(r+a.length)]],t.length>n.length&&(e[0][0]=e[2][0]=vt),e;if(a.length===1)return[[vt,t],[mt,n]];var s=Wf(t,n);if(s){var d=s[0],u=s[1],p=s[2],h=s[3],f=s[4],l=mn(d,p),c=mn(u,h);return l.concat([[at,f]],c)}return Yf(t,n)}function Yf(t,n){for(var e=t.length,o=n.length,a=Math.ceil((e+o)/2),r=a,s=2*a,d=new Array(s),u=new Array(s),p=0;p<s;p++)d[p]=-1,u[p]=-1;d[r+1]=0,u[r+1]=0;for(var h=e-o,f=h%2!==0,l=0,c=0,_=0,v=0,b=0;b<a;b++){for(var g=-b+l;g<=b-c;g+=2){var y=r+g,w;g===-b||g!==b&&d[y-1]<d[y+1]?w=d[y+1]:w=d[y-1]+1;for(var m=w-g;w<e&&m<o&&t.charAt(w)===n.charAt(m);)w++,m++;if(d[y]=w,w>e)c+=2;else if(m>o)l+=2;else if(f){var k=r+h-g;if(k>=0&&k<s&&u[k]!==-1){var N=e-u[k];if(w>=N)return No(t,n,w,m)}}}for(var S=-b+_;S<=b-v;S+=2){var k=r+S,N;S===-b||S!==b&&u[k-1]<u[k+1]?N=u[k+1]:N=u[k-1]+1;for(var T=N-S;N<e&&T<o&&t.charAt(e-N-1)===n.charAt(o-T-1);)N++,T++;if(u[k]=N,N>e)v+=2;else if(T>o)_+=2;else if(!f){var y=r+h-S;if(y>=0&&y<s&&d[y]!==-1){var w=d[y],m=r+w-y;if(N=e-N,w>=N)return No(t,n,w,m)}}}}return[[vt,t],[mt,n]]}function No(t,n,e,o){var a=t.substring(0,e),r=n.substring(0,o),s=t.substring(e),d=n.substring(o),u=mn(a,r),p=mn(s,d);return u.concat(p)}function Fr(t,n){if(!t||!n||t.charAt(0)!==n.charAt(0))return 0;for(var e=0,o=Math.min(t.length,n.length),a=o,r=0;e<a;)t.substring(r,a)==n.substring(r,a)?(e=a,r=e):o=a,a=Math.floor((o-e)/2+e);return Ao(t.charCodeAt(a-1))&&a--,a}function Hr(t,n){if(!t||!n||t.slice(-1)!==n.slice(-1))return 0;for(var e=0,o=Math.min(t.length,n.length),a=o,r=0;e<a;)t.substring(t.length-a,t.length-r)==n.substring(n.length-a,n.length-r)?(e=a,r=e):o=a,a=Math.floor((o-e)/2+e);return Do(t.charCodeAt(t.length-a))&&a--,a}function Wf(t,n){var e=t.length>n.length?t:n,o=t.length>n.length?n:t;if(e.length<4||o.length*2<e.length)return null;function a(c,_,v){for(var b=c.substring(v,v+Math.floor(c.length/4)),g=-1,y="",w,m,k,N;(g=_.indexOf(b,g+1))!==-1;){var S=Fr(c.substring(v),_.substring(g)),T=Hr(c.substring(0,v),_.substring(0,g));y.length<T+S&&(y=_.substring(g-T,g)+_.substring(g,g+S),w=c.substring(0,v-T),m=c.substring(v+S),k=_.substring(0,g-T),N=_.substring(g+S))}return y.length*2>=c.length?[w,m,k,N,y]:null}var r=a(e,o,Math.ceil(e.length/4)),s=a(e,o,Math.ceil(e.length/2)),d;if(!r&&!s)return null;s?r?d=r[4].length>s[4].length?r:s:d=s:d=r;var u,p,h,f;t.length>n.length?(u=d[0],p=d[1],h=d[2],f=d[3]):(h=d[0],f=d[1],u=d[2],p=d[3]);var l=d[4];return[u,p,h,f,l]}function xo(t,n){t.push([at,""]);for(var e=0,o=0,a=0,r="",s="",d;e<t.length;){if(e<t.length-1&&!t[e][1]){t.splice(e,1);continue}switch(t[e][0]){case mt:a++,s+=t[e][1],e++;break;case vt:o++,r+=t[e][1],e++;break;case at:var u=e-a-o-1;if(n){if(u>=0&&Mo(t[u][1])){var p=t[u][1].slice(-1);if(t[u][1]=t[u][1].slice(0,-1),r=p+r,s=p+s,!t[u][1]){t.splice(u,1),e--;var h=u-1;t[h]&&t[h][0]===mt&&(a++,s=t[h][1]+s,h--),t[h]&&t[h][0]===vt&&(o++,r=t[h][1]+r,h--),u=h}}if(Io(t[e][1])){var p=t[e][1].charAt(0);t[e][1]=t[e][1].slice(1),r+=p,s+=p}}if(e<t.length-1&&!t[e][1]){t.splice(e,1);break}if(r.length>0||s.length>0){r.length>0&&s.length>0&&(d=Fr(s,r),d!==0&&(u>=0?t[u][1]+=s.substring(0,d):(t.splice(0,0,[at,s.substring(0,d)]),e++),s=s.substring(d),r=r.substring(d)),d=Hr(s,r),d!==0&&(t[e][1]=s.substring(s.length-d)+t[e][1],s=s.substring(0,s.length-d),r=r.substring(0,r.length-d)));var f=a+o;r.length===0&&s.length===0?(t.splice(e-f,f),e=e-f):r.length===0?(t.splice(e-f,f,[mt,s]),e=e-f+1):s.length===0?(t.splice(e-f,f,[vt,r]),e=e-f+1):(t.splice(e-f,f,[vt,r],[mt,s]),e=e-f+2)}e!==0&&t[e-1][0]===at?(t[e-1][1]+=t[e][1],t.splice(e,1)):e++,a=0,o=0,r="",s="";break}}t[t.length-1][1]===""&&t.pop();var l=!1;for(e=1;e<t.length-1;)t[e-1][0]===at&&t[e+1][0]===at&&(t[e][1].substring(t[e][1].length-t[e-1][1].length)===t[e-1][1]?(t[e][1]=t[e-1][1]+t[e][1].substring(0,t[e][1].length-t[e-1][1].length),t[e+1][1]=t[e-1][1]+t[e+1][1],t.splice(e-1,1),l=!0):t[e][1].substring(0,t[e+1][1].length)==t[e+1][1]&&(t[e-1][1]+=t[e+1][1],t[e][1]=t[e][1].substring(t[e+1][1].length)+t[e+1][1],t.splice(e+1,1),l=!0)),e++;l&&xo(t,n)}function Ao(t){return t>=55296&&t<=56319}function Do(t){return t>=56320&&t<=57343}function Io(t){return Do(t.charCodeAt(0))}function Mo(t){return Ao(t.charCodeAt(t.length-1))}function Zf(t){for(var n=[],e=0;e<t.length;e++)t[e][1].length>0&&n.push(t[e]);return n}function zr(t,n,e,o){return Mo(t)||Io(o)?null:Zf([[at,t],[vt,n],[mt,e],[at,o]])}function Jf(t,n,e){var o=typeof e=="number"?{index:e,length:0}:e.oldRange,a=typeof e=="number"?null:e.newRange,r=t.length,s=n.length;if(o.length===0&&(a===null||a.length===0)){var d=o.index,u=t.slice(0,d),p=t.slice(d),h=a?a.index:null;e:{var f=d+s-r;if(h!==null&&h!==f||f<0||f>s)break e;var l=n.slice(0,f),c=n.slice(f);if(c!==p)break e;var _=Math.min(d,f),v=u.slice(0,_),b=l.slice(0,_);if(v!==b)break e;var g=u.slice(_),y=l.slice(_);return zr(v,g,y,p)}e:{if(h!==null&&h!==d)break e;var w=d,l=n.slice(0,w),c=n.slice(w);if(l!==u)break e;var m=Math.min(r-w,s-w),k=p.slice(p.length-m),N=c.slice(c.length-m);if(k!==N)break e;var g=p.slice(0,p.length-m),y=c.slice(0,c.length-m);return zr(u,g,y,k)}}if(o.length>0&&a&&a.length===0)e:{var v=t.slice(0,o.index),k=t.slice(o.index+o.length),_=v.length,m=k.length;if(s<_+m)break e;var b=n.slice(0,_),N=n.slice(s-m);if(v!==b||k!==N)break e;var g=t.slice(_,r-m),y=n.slice(_,s-m);return zr(v,g,y,k)}return null}function Wn(t,n,e){return mn(t,n,e,!0)}Wn.INSERT=mt,Wn.DELETE=vt,Wn.EQUAL=at;var Xf=Wn,Zn={exports:{}};Zn.exports,function(t,n){var e=200,o="__lodash_hash_undefined__",a=9007199254740991,r="[object Arguments]",s="[object Array]",d="[object Boolean]",u="[object Date]",p="[object Error]",h="[object Function]",f="[object GeneratorFunction]",l="[object Map]",c="[object Number]",_="[object Object]",v="[object Promise]",b="[object RegExp]",g="[object Set]",y="[object String]",w="[object Symbol]",m="[object WeakMap]",k="[object ArrayBuffer]",N="[object DataView]",S="[object Float32Array]",T="[object Float64Array]",M="[object Int8Array]",E="[object Int16Array]",C="[object Int32Array]",O="[object Uint8Array]",x="[object Uint8ClampedArray]",P="[object Uint16Array]",q="[object Uint32Array]",G=/[\\^$.*+?()[\]{}|]/g,W=/\w*$/,ie=/^\[object .+?Constructor\]$/,U=/^(?:0|[1-9]\d*)$/,R={};R[r]=R[s]=R[k]=R[N]=R[d]=R[u]=R[S]=R[T]=R[M]=R[E]=R[C]=R[l]=R[c]=R[_]=R[b]=R[g]=R[y]=R[w]=R[O]=R[x]=R[P]=R[q]=!0,R[p]=R[h]=R[m]=!1;var A=typeof qe=="object"&&qe&&qe.Object===Object&&qe,j=typeof self=="object"&&self&&self.Object===Object&&self,V=A||j||Function("return this")(),Y=n&&!n.nodeType&&n,H=Y&&!0&&t&&!t.nodeType&&t,B=H&&H.exports===Y;function z($,D){return $.set(D[0],D[1]),$}function Z($,D){return $.add(D),$}function J($,D){for(var F=-1,ee=$?$.length:0;++F<ee&&D($[F],F,$)!==!1;);return $}function ne($,D){for(var F=-1,ee=D.length,we=$.length;++F<ee;)$[we+F]=D[F];return $}function de($,D,F,ee){var we=-1,fe=$?$.length:0;for(ee&&fe&&(F=$[++we]);++we<fe;)F=D(F,$[we],we,$);return F}function he($,D){for(var F=-1,ee=Array($);++F<$;)ee[F]=D(F);return ee}function ve($,D){return $==null?void 0:$[D]}function ke($){var D=!1;if($!=null&&typeof $.toString!="function")try{D=!!($+"")}catch{}return D}function Oe($){var D=-1,F=Array($.size);return $.forEach(function(ee,we){F[++D]=[we,ee]}),F}function Be($,D){return function(F){return $(D(F))}}function Pe($){var D=-1,F=Array($.size);return $.forEach(function(ee){F[++D]=ee}),F}var Q=Array.prototype,te=Function.prototype,ae=Object.prototype,le=V["__core-js_shared__"],re=function(){var $=/[^.]+$/.exec(le&&le.keys&&le.keys.IE_PROTO||"");return $?"Symbol(src)_1."+$:""}(),$e=te.toString,me=ae.hasOwnProperty,be=ae.toString,He=RegExp("^"+$e.call(me).replace(G,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$"),je=B?V.Buffer:void 0,xe=V.Symbol,bt=V.Uint8Array,Ee=Be(Object.getPrototypeOf,Object),nt=Object.create,Ht=ae.propertyIsEnumerable,vn=Q.splice,zt=Object.getOwnPropertySymbols,De=je?je.isBuffer:void 0,Bt=Be(Object.keys,Object),_t=gt(V,"DataView"),Nt=gt(V,"Map"),We=gt(V,"Promise"),$t=gt(V,"Set"),rt=gt(V,"WeakMap"),xt=gt(Object,"create"),Ut=it(_t),I=it(Nt),L=it(We),K=it($t),X=it(rt),oe=xe?xe.prototype:void 0,se=oe?oe.valueOf:void 0;function ye($){var D=-1,F=$?$.length:0;for(this.clear();++D<F;){var ee=$[D];this.set(ee[0],ee[1])}}function ue(){this.__data__=xt?xt(null):{}}function Ce($){return this.has($)&&delete this.__data__[$]}function ce($){var D=this.__data__;if(xt){var F=D[$];return F===o?void 0:F}return me.call(D,$)?D[$]:void 0}function ge($){var D=this.__data__;return xt?D[$]!==void 0:me.call(D,$)}function Te($,D){var F=this.__data__;return F[$]=xt&&D===void 0?o:D,this}ye.prototype.clear=ue,ye.prototype.delete=Ce,ye.prototype.get=ce,ye.prototype.has=ge,ye.prototype.set=Te;function Me($){var D=-1,F=$?$.length:0;for(this.clear();++D<F;){var ee=$[D];this.set(ee[0],ee[1])}}function Ke(){this.__data__=[]}function At($){var D=this.__data__,F=tn(D,$);if(F<0)return!1;var ee=D.length-1;return F==ee?D.pop():vn.call(D,F,1),!0}function wt($){var D=this.__data__,F=tn(D,$);return F<0?void 0:D[F][1]}function bn($){return tn(this.__data__,$)>-1}function Kt($,D){var F=this.__data__,ee=tn(F,$);return ee<0?F.push([$,D]):F[ee][1]=D,this}Me.prototype.clear=Ke,Me.prototype.delete=At,Me.prototype.get=wt,Me.prototype.has=bn,Me.prototype.set=Kt;function ze($){var D=-1,F=$?$.length:0;for(this.clear();++D<F;){var ee=$[D];this.set(ee[0],ee[1])}}function _n(){this.__data__={hash:new ye,map:new(Nt||Me),string:new ye}}function $n($){return Yt(this,$).delete($)}function wn($){return Yt(this,$).get($)}function kn($){return Yt(this,$).has($)}function Cn($,D){return Yt(this,$).set($,D),this}ze.prototype.clear=_n,ze.prototype.delete=$n,ze.prototype.get=wn,ze.prototype.has=kn,ze.prototype.set=Cn;function Ze($){this.__data__=new Me($)}function On(){this.__data__=new Me}function Wr($){return this.__data__.delete($)}function Zr($){return this.__data__.get($)}function Jr($){return this.__data__.has($)}function Xr($,D){var F=this.__data__;if(F instanceof Me){var ee=F.__data__;if(!Nt||ee.length<e-1)return ee.push([$,D]),this;F=this.__data__=new ze(ee)}return F.set($,D),this}Ze.prototype.clear=On,Ze.prototype.delete=Wr,Ze.prototype.get=Zr,Ze.prototype.has=Jr,Ze.prototype.set=Xr;function en($,D){var F=Nn($)||rn($)?he($.length,String):[],ee=F.length,we=!!ee;for(var fe in $)(D||me.call($,fe))&&!(we&&(fe=="length"||fi(fe,ee)))&&F.push(fe);return F}function nr($,D,F){var ee=$[D];(!(me.call($,D)&&lr(ee,F))||F===void 0&&!(D in $))&&($[D]=F)}function tn($,D){for(var F=$.length;F--;)if(lr($[F][0],D))return F;return-1}function kt($,D){return $&&Tn(D,An(D),$)}function En($,D,F,ee,we,fe,Se){var Ne;if(ee&&(Ne=fe?ee($,we,fe,Se):ee($)),Ne!==void 0)return Ne;if(!Ot($))return $;var Ve=Nn($);if(Ve){if(Ne=ci($),!D)return li($,Ne)}else{var Ie=It($),Je=Ie==h||Ie==f;if(sr($))return nn($,D);if(Ie==_||Ie==r||Je&&!fe){if(ke($))return fe?$:{};if(Ne=Ct(Je?{}:$),!D)return si($,kt(Ne,$))}else{if(!R[Ie])return fe?$:{};Ne=ui($,Ie,En,D)}}Se||(Se=new Ze);var st=Se.get($);if(st)return st;if(Se.set($,Ne),!Ve)var Fe=F?di($):An($);return J(Fe||$,function(Xe,Ge){Fe&&(Ge=Xe,Xe=$[Ge]),nr(Ne,Ge,En(Xe,D,F,ee,Ge,$,Se))}),Ne}function Qr($){return Ot($)?nt($):{}}function ei($,D,F){var ee=D($);return Nn($)?ee:ne(ee,F($))}function ti($){return be.call($)}function ni($){if(!Ot($)||pi($))return!1;var D=xn($)||ke($)?He:ie;return D.test(it($))}function ri($){if(!or($))return Bt($);var D=[];for(var F in Object($))me.call($,F)&&F!="constructor"&&D.push(F);return D}function nn($,D){if(D)return $.slice();var F=new $.constructor($.length);return $.copy(F),F}function Sn($){var D=new $.constructor($.byteLength);return new bt(D).set(new bt($)),D}function Gt($,D){var F=D?Sn($.buffer):$.buffer;return new $.constructor(F,$.byteOffset,$.byteLength)}function rr($,D,F){var ee=D?F(Oe($),!0):Oe($);return de(ee,z,new $.constructor)}function ir($){var D=new $.constructor($.source,W.exec($));return D.lastIndex=$.lastIndex,D}function ii($,D,F){var ee=D?F(Pe($),!0):Pe($);return de(ee,Z,new $.constructor)}function oi($){return se?Object(se.call($)):{}}function ai($,D){var F=D?Sn($.buffer):$.buffer;return new $.constructor(F,$.byteOffset,$.length)}function li($,D){var F=-1,ee=$.length;for(D||(D=Array(ee));++F<ee;)D[F]=$[F];return D}function Tn($,D,F,ee){F||(F={});for(var we=-1,fe=D.length;++we<fe;){var Se=D[we],Ne=ee?ee(F[Se],$[Se],Se,F,$):void 0;nr(F,Se,Ne===void 0?$[Se]:Ne)}return F}function si($,D){return Tn($,Dt($),D)}function di($){return ei($,An,Dt)}function Yt($,D){var F=$.__data__;return hi(D)?F[typeof D=="string"?"string":"hash"]:F.map}function gt($,D){var F=ve($,D);return ni(F)?F:void 0}var Dt=zt?Be(zt,Object):gi,It=ti;(_t&&It(new _t(new ArrayBuffer(1)))!=N||Nt&&It(new Nt)!=l||We&&It(We.resolve())!=v||$t&&It(new $t)!=g||rt&&It(new rt)!=m)&&(It=function($){var D=be.call($),F=D==_?$.constructor:void 0,ee=F?it(F):void 0;if(ee)switch(ee){case Ut:return N;case I:return l;case L:return v;case K:return g;case X:return m}return D});function ci($){var D=$.length,F=$.constructor(D);return D&&typeof $[0]=="string"&&me.call($,"index")&&(F.index=$.index,F.input=$.input),F}function Ct($){return typeof $.constructor=="function"&&!or($)?Qr(Ee($)):{}}function ui($,D,F,ee){var we=$.constructor;switch(D){case k:return Sn($);case d:case u:return new we(+$);case N:return Gt($,ee);case S:case T:case M:case E:case C:case O:case x:case P:case q:return ai($,ee);case l:return rr($,ee,F);case c:case y:return new we($);case b:return ir($);case g:return ii($,ee,F);case w:return oi($)}}function fi($,D){return D=D??a,!!D&&(typeof $=="number"||U.test($))&&$>-1&&$%1==0&&$<D}function hi($){var D=typeof $;return D=="string"||D=="number"||D=="symbol"||D=="boolean"?$!=="__proto__":$===null}function pi($){return!!re&&re in $}function or($){var D=$&&$.constructor,F=typeof D=="function"&&D.prototype||ae;return $===F}function it($){if($!=null){try{return $e.call($)}catch{}try{return $+""}catch{}}return""}function ar($){return En($,!0,!0)}function lr($,D){return $===D||$!==$&&D!==D}function rn($){return mi($)&&me.call($,"callee")&&(!Ht.call($,"callee")||be.call($)==r)}var Nn=Array.isArray;function on($){return $!=null&&dr($.length)&&!xn($)}function mi($){return cr($)&&on($)}var sr=De||yi;function xn($){var D=Ot($)?be.call($):"";return D==h||D==f}function dr($){return typeof $=="number"&&$>-1&&$%1==0&&$<=a}function Ot($){var D=typeof $;return!!$&&(D=="object"||D=="function")}function cr($){return!!$&&typeof $=="object"}function An($){return on($)?en($):ri($)}function gi(){return[]}function yi(){return!1}t.exports=ar}(Zn,Zn.exports);var Po=Zn.exports,Jn={exports:{}};Jn.exports,function(t,n){var e=200,o="__lodash_hash_undefined__",a=1,r=2,s=9007199254740991,d="[object Arguments]",u="[object Array]",p="[object AsyncFunction]",h="[object Boolean]",f="[object Date]",l="[object Error]",c="[object Function]",_="[object GeneratorFunction]",v="[object Map]",b="[object Number]",g="[object Null]",y="[object Object]",w="[object Promise]",m="[object Proxy]",k="[object RegExp]",N="[object Set]",S="[object String]",T="[object Symbol]",M="[object Undefined]",E="[object WeakMap]",C="[object ArrayBuffer]",O="[object DataView]",x="[object Float32Array]",P="[object Float64Array]",q="[object Int8Array]",G="[object Int16Array]",W="[object Int32Array]",ie="[object Uint8Array]",U="[object Uint8ClampedArray]",R="[object Uint16Array]",A="[object Uint32Array]",j=/[\\^$.*+?()[\]{}|]/g,V=/^\[object .+?Constructor\]$/,Y=/^(?:0|[1-9]\d*)$/,H={};H[x]=H[P]=H[q]=H[G]=H[W]=H[ie]=H[U]=H[R]=H[A]=!0,H[d]=H[u]=H[C]=H[h]=H[O]=H[f]=H[l]=H[c]=H[v]=H[b]=H[y]=H[k]=H[N]=H[S]=H[E]=!1;var B=typeof qe=="object"&&qe&&qe.Object===Object&&qe,z=typeof self=="object"&&self&&self.Object===Object&&self,Z=B||z||Function("return this")(),J=n&&!n.nodeType&&n,ne=J&&!0&&t&&!t.nodeType&&t,de=ne&&ne.exports===J,he=de&&B.process,ve=function(){try{return he&&he.binding&&he.binding("util")}catch{}}(),ke=ve&&ve.isTypedArray;function Oe($,D){for(var F=-1,ee=$==null?0:$.length,we=0,fe=[];++F<ee;){var Se=$[F];D(Se,F,$)&&(fe[we++]=Se)}return fe}function Be($,D){for(var F=-1,ee=D.length,we=$.length;++F<ee;)$[we+F]=D[F];return $}function Pe($,D){for(var F=-1,ee=$==null?0:$.length;++F<ee;)if(D($[F],F,$))return!0;return!1}function Q($,D){for(var F=-1,ee=Array($);++F<$;)ee[F]=D(F);return ee}function te($){return function(D){return $(D)}}function ae($,D){return $.has(D)}function le($,D){return $==null?void 0:$[D]}function re($){var D=-1,F=Array($.size);return $.forEach(function(ee,we){F[++D]=[we,ee]}),F}function $e($,D){return function(F){return $(D(F))}}function me($){var D=-1,F=Array($.size);return $.forEach(function(ee){F[++D]=ee}),F}var be=Array.prototype,He=Function.prototype,je=Object.prototype,xe=Z["__core-js_shared__"],bt=He.toString,Ee=je.hasOwnProperty,nt=function(){var $=/[^.]+$/.exec(xe&&xe.keys&&xe.keys.IE_PROTO||"");return $?"Symbol(src)_1."+$:""}(),Ht=je.toString,vn=RegExp("^"+bt.call(Ee).replace(j,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$"),zt=de?Z.Buffer:void 0,De=Z.Symbol,Bt=Z.Uint8Array,_t=je.propertyIsEnumerable,Nt=be.splice,We=De?De.toStringTag:void 0,$t=Object.getOwnPropertySymbols,rt=zt?zt.isBuffer:void 0,xt=$e(Object.keys,Object),Ut=Dt(Z,"DataView"),I=Dt(Z,"Map"),L=Dt(Z,"Promise"),K=Dt(Z,"Set"),X=Dt(Z,"WeakMap"),oe=Dt(Object,"create"),se=it(Ut),ye=it(I),ue=it(L),Ce=it(K),ce=it(X),ge=De?De.prototype:void 0,Te=ge?ge.valueOf:void 0;function Me($){var D=-1,F=$==null?0:$.length;for(this.clear();++D<F;){var ee=$[D];this.set(ee[0],ee[1])}}function Ke(){this.__data__=oe?oe(null):{},this.size=0}function At($){var D=this.has($)&&delete this.__data__[$];return this.size-=D?1:0,D}function wt($){var D=this.__data__;if(oe){var F=D[$];return F===o?void 0:F}return Ee.call(D,$)?D[$]:void 0}function bn($){var D=this.__data__;return oe?D[$]!==void 0:Ee.call(D,$)}function Kt($,D){var F=this.__data__;return this.size+=this.has($)?0:1,F[$]=oe&&D===void 0?o:D,this}Me.prototype.clear=Ke,Me.prototype.delete=At,Me.prototype.get=wt,Me.prototype.has=bn,Me.prototype.set=Kt;function ze($){var D=-1,F=$==null?0:$.length;for(this.clear();++D<F;){var ee=$[D];this.set(ee[0],ee[1])}}function _n(){this.__data__=[],this.size=0}function $n($){var D=this.__data__,F=nn(D,$);if(F<0)return!1;var ee=D.length-1;return F==ee?D.pop():Nt.call(D,F,1),--this.size,!0}function wn($){var D=this.__data__,F=nn(D,$);return F<0?void 0:D[F][1]}function kn($){return nn(this.__data__,$)>-1}function Cn($,D){var F=this.__data__,ee=nn(F,$);return ee<0?(++this.size,F.push([$,D])):F[ee][1]=D,this}ze.prototype.clear=_n,ze.prototype.delete=$n,ze.prototype.get=wn,ze.prototype.has=kn,ze.prototype.set=Cn;function Ze($){var D=-1,F=$==null?0:$.length;for(this.clear();++D<F;){var ee=$[D];this.set(ee[0],ee[1])}}function On(){this.size=0,this.__data__={hash:new Me,map:new(I||ze),string:new Me}}function Wr($){var D=gt(this,$).delete($);return this.size-=D?1:0,D}function Zr($){return gt(this,$).get($)}function Jr($){return gt(this,$).has($)}function Xr($,D){var F=gt(this,$),ee=F.size;return F.set($,D),this.size+=F.size==ee?0:1,this}Ze.prototype.clear=On,Ze.prototype.delete=Wr,Ze.prototype.get=Zr,Ze.prototype.has=Jr,Ze.prototype.set=Xr;function en($){var D=-1,F=$==null?0:$.length;for(this.__data__=new Ze;++D<F;)this.add($[D])}function nr($){return this.__data__.set($,o),this}function tn($){return this.__data__.has($)}en.prototype.add=en.prototype.push=nr,en.prototype.has=tn;function kt($){var D=this.__data__=new ze($);this.size=D.size}function En(){this.__data__=new ze,this.size=0}function Qr($){var D=this.__data__,F=D.delete($);return this.size=D.size,F}function ei($){return this.__data__.get($)}function ti($){return this.__data__.has($)}function ni($,D){var F=this.__data__;if(F instanceof ze){var ee=F.__data__;if(!I||ee.length<e-1)return ee.push([$,D]),this.size=++F.size,this;F=this.__data__=new Ze(ee)}return F.set($,D),this.size=F.size,this}kt.prototype.clear=En,kt.prototype.delete=Qr,kt.prototype.get=ei,kt.prototype.has=ti,kt.prototype.set=ni;function ri($,D){var F=rn($),ee=!F&&lr($),we=!F&&!ee&&on($),fe=!F&&!ee&&!we&&cr($),Se=F||ee||we||fe,Ne=Se?Q($.length,String):[],Ve=Ne.length;for(var Ie in $)(D||Ee.call($,Ie))&&!(Se&&(Ie=="length"||we&&(Ie=="offset"||Ie=="parent")||fe&&(Ie=="buffer"||Ie=="byteLength"||Ie=="byteOffset")||ui(Ie,Ve)))&&Ne.push(Ie);return Ne}function nn($,D){for(var F=$.length;F--;)if(ar($[F][0],D))return F;return-1}function Sn($,D,F){var ee=D($);return rn($)?ee:Be(ee,F($))}function Gt($){return $==null?$===void 0?M:g:We&&We in Object($)?It($):or($)}function rr($){return Ot($)&&Gt($)==d}function ir($,D,F,ee,we){return $===D?!0:$==null||D==null||!Ot($)&&!Ot(D)?$!==$&&D!==D:ii($,D,F,ee,ir,we)}function ii($,D,F,ee,we,fe){var Se=rn($),Ne=rn(D),Ve=Se?u:Ct($),Ie=Ne?u:Ct(D);Ve=Ve==d?y:Ve,Ie=Ie==d?y:Ie;var Je=Ve==y,st=Ie==y,Fe=Ve==Ie;if(Fe&&on($)){if(!on(D))return!1;Se=!0,Je=!1}if(Fe&&!Je)return fe||(fe=new kt),Se||cr($)?Tn($,D,F,ee,we,fe):si($,D,Ve,F,ee,we,fe);if(!(F&a)){var Xe=Je&&Ee.call($,"__wrapped__"),Ge=st&&Ee.call(D,"__wrapped__");if(Xe||Ge){var Lt=Xe?$.value():$,Mt=Ge?D.value():D;return fe||(fe=new kt),we(Lt,Mt,F,ee,fe)}}return Fe?(fe||(fe=new kt),di($,D,F,ee,we,fe)):!1}function oi($){if(!dr($)||hi($))return!1;var D=sr($)?vn:V;return D.test(it($))}function ai($){return Ot($)&&xn($.length)&&!!H[Gt($)]}function li($){if(!pi($))return xt($);var D=[];for(var F in Object($))Ee.call($,F)&&F!="constructor"&&D.push(F);return D}function Tn($,D,F,ee,we,fe){var Se=F&a,Ne=$.length,Ve=D.length;if(Ne!=Ve&&!(Se&&Ve>Ne))return!1;var Ie=fe.get($);if(Ie&&fe.get(D))return Ie==D;var Je=-1,st=!0,Fe=F&r?new en:void 0;for(fe.set($,D),fe.set(D,$);++Je<Ne;){var Xe=$[Je],Ge=D[Je];if(ee)var Lt=Se?ee(Ge,Xe,Je,D,$,fe):ee(Xe,Ge,Je,$,D,fe);if(Lt!==void 0){if(Lt)continue;st=!1;break}if(Fe){if(!Pe(D,function(Mt,Wt){if(!ae(Fe,Wt)&&(Xe===Mt||we(Xe,Mt,F,ee,fe)))return Fe.push(Wt)})){st=!1;break}}else if(!(Xe===Ge||we(Xe,Ge,F,ee,fe))){st=!1;break}}return fe.delete($),fe.delete(D),st}function si($,D,F,ee,we,fe,Se){switch(F){case O:if($.byteLength!=D.byteLength||$.byteOffset!=D.byteOffset)return!1;$=$.buffer,D=D.buffer;case C:return!($.byteLength!=D.byteLength||!fe(new Bt($),new Bt(D)));case h:case f:case b:return ar(+$,+D);case l:return $.name==D.name&&$.message==D.message;case k:case S:return $==D+"";case v:var Ne=re;case N:var Ve=ee&a;if(Ne||(Ne=me),$.size!=D.size&&!Ve)return!1;var Ie=Se.get($);if(Ie)return Ie==D;ee|=r,Se.set($,D);var Je=Tn(Ne($),Ne(D),ee,we,fe,Se);return Se.delete($),Je;case T:if(Te)return Te.call($)==Te.call(D)}return!1}function di($,D,F,ee,we,fe){var Se=F&a,Ne=Yt($),Ve=Ne.length,Ie=Yt(D),Je=Ie.length;if(Ve!=Je&&!Se)return!1;for(var st=Ve;st--;){var Fe=Ne[st];if(!(Se?Fe in D:Ee.call(D,Fe)))return!1}var Xe=fe.get($);if(Xe&&fe.get(D))return Xe==D;var Ge=!0;fe.set($,D),fe.set(D,$);for(var Lt=Se;++st<Ve;){Fe=Ne[st];var Mt=$[Fe],Wt=D[Fe];if(ee)var Uo=Se?ee(Wt,Mt,Fe,D,$,fe):ee(Mt,Wt,Fe,$,D,fe);if(!(Uo===void 0?Mt===Wt||we(Mt,Wt,F,ee,fe):Uo)){Ge=!1;break}Lt||(Lt=Fe=="constructor")}if(Ge&&!Lt){var ur=$.constructor,fr=D.constructor;ur!=fr&&"constructor"in $&&"constructor"in D&&!(typeof ur=="function"&&ur instanceof ur&&typeof fr=="function"&&fr instanceof fr)&&(Ge=!1)}return fe.delete($),fe.delete(D),Ge}function Yt($){return Sn($,An,ci)}function gt($,D){var F=$.__data__;return fi(D)?F[typeof D=="string"?"string":"hash"]:F.map}function Dt($,D){var F=le($,D);return oi(F)?F:void 0}function It($){var D=Ee.call($,We),F=$[We];try{$[We]=void 0;var ee=!0}catch{}var we=Ht.call($);return ee&&(D?$[We]=F:delete $[We]),we}var ci=$t?function($){return $==null?[]:($=Object($),Oe($t($),function(D){return _t.call($,D)}))}:gi,Ct=Gt;(Ut&&Ct(new Ut(new ArrayBuffer(1)))!=O||I&&Ct(new I)!=v||L&&Ct(L.resolve())!=w||K&&Ct(new K)!=N||X&&Ct(new X)!=E)&&(Ct=function($){var D=Gt($),F=D==y?$.constructor:void 0,ee=F?it(F):"";if(ee)switch(ee){case se:return O;case ye:return v;case ue:return w;case Ce:return N;case ce:return E}return D});function ui($,D){return D=D??s,!!D&&(typeof $=="number"||Y.test($))&&$>-1&&$%1==0&&$<D}function fi($){var D=typeof $;return D=="string"||D=="number"||D=="symbol"||D=="boolean"?$!=="__proto__":$===null}function hi($){return!!nt&&nt in $}function pi($){var D=$&&$.constructor,F=typeof D=="function"&&D.prototype||je;return $===F}function or($){return Ht.call($)}function it($){if($!=null){try{return bt.call($)}catch{}try{return $+""}catch{}}return""}function ar($,D){return $===D||$!==$&&D!==D}var lr=rr(function(){return arguments}())?rr:function($){return Ot($)&&Ee.call($,"callee")&&!_t.call($,"callee")},rn=Array.isArray;function Nn($){return $!=null&&xn($.length)&&!sr($)}var on=rt||yi;function mi($,D){return ir($,D)}function sr($){if(!dr($))return!1;var D=Gt($);return D==c||D==_||D==p||D==m}function xn($){return typeof $=="number"&&$>-1&&$%1==0&&$<=s}function dr($){var D=typeof $;return $!=null&&(D=="object"||D=="function")}function Ot($){return $!=null&&typeof $=="object"}var cr=ke?te(ke):ai;function An($){return Nn($)?ri($):li($)}function gi(){return[]}function yi(){return!1}t.exports=mi}(Jn,Jn.exports);var Bo=Jn.exports,Ur={},Lo=qe&&qe.__importDefault||function(t){return t&&t.__esModule?t:{default:t}};Object.defineProperty(Ur,"__esModule",{value:!0});var Qf=Lo(Po),eh=Lo(Bo),Kr;(function(t){function n(r,s,d){r===void 0&&(r={}),s===void 0&&(s={}),typeof r!="object"&&(r={}),typeof s!="object"&&(s={});var u=Qf.default(s);d||(u=Object.keys(u).reduce(function(h,f){return u[f]!=null&&(h[f]=u[f]),h},{}));for(var p in r)r[p]!==void 0&&s[p]===void 0&&(u[p]=r[p]);return Object.keys(u).length>0?u:void 0}t.compose=n;function e(r,s){r===void 0&&(r={}),s===void 0&&(s={}),typeof r!="object"&&(r={}),typeof s!="object"&&(s={});var d=Object.keys(r).concat(Object.keys(s)).reduce(function(u,p){return eh.default(r[p],s[p])||(u[p]=s[p]===void 0?null:s[p]),u},{});return Object.keys(d).length>0?d:void 0}t.diff=e;function o(r,s){r===void 0&&(r={}),s===void 0&&(s={}),r=r||{};var d=Object.keys(s).reduce(function(u,p){return s[p]!==r[p]&&r[p]!==void 0&&(u[p]=s[p]),u},{});return Object.keys(r).reduce(function(u,p){return r[p]!==s[p]&&s[p]===void 0&&(u[p]=null),u},d)}t.invert=o;function a(r,s,d){if(d===void 0&&(d=!1),typeof r!="object")return s;if(typeof s=="object"){if(!d)return s;var u=Object.keys(s).reduce(function(p,h){return r[h]===void 0&&(p[h]=s[h]),p},{});return Object.keys(u).length>0?u:void 0}}t.transform=a})(Kr||(Kr={})),Ur.default=Kr;var Xn={},Qn={},Ro;function th(){if(Ro)return Qn;Ro=1;var t=qe&&qe.__importDefault||function(o){return o&&o.__esModule?o:{default:o}};Object.defineProperty(Qn,"__esModule",{value:!0});var n=t(Vo()),e=function(){function o(a){this.ops=a,this.index=0,this.offset=0}return o.prototype.hasNext=function(){return this.peekLength()<1/0},o.prototype.next=function(a){a||(a=1/0);var r=this.ops[this.index];if(r){var s=this.offset,d=n.default.length(r);if(a>=d-s?(a=d-s,this.index+=1,this.offset=0):this.offset+=a,typeof r.delete=="number")return{delete:a};var u={};return r.attributes&&(u.attributes=r.attributes),typeof r.retain=="number"?u.retain=a:typeof r.insert=="string"?u.insert=r.insert.substr(s,a):u.insert=r.insert,u}else return{retain:1/0}},o.prototype.peek=function(){return this.ops[this.index]},o.prototype.peekLength=function(){return this.ops[this.index]?n.default.length(this.ops[this.index])-this.offset:1/0},o.prototype.peekType=function(){return this.ops[this.index]?typeof this.ops[this.index].delete=="number"?"delete":typeof this.ops[this.index].retain=="number"?"retain":"insert":"retain"},o.prototype.rest=function(){if(this.hasNext()){if(this.offset===0)return this.ops.slice(this.index);var a=this.offset,r=this.index,s=this.next(),d=this.ops.slice(this.index);return this.offset=a,this.index=r,[s].concat(d)}else return[]},o}();return Qn.default=e,Qn}var jo;function Vo(){if(jo)return Xn;jo=1;var t=qe&&qe.__importDefault||function(o){return o&&o.__esModule?o:{default:o}};Object.defineProperty(Xn,"__esModule",{value:!0});var n=t(th()),e;return function(o){function a(s){return new n.default(s)}o.iterator=a;function r(s){return typeof s.delete=="number"?s.delete:typeof s.retain=="number"?s.retain:typeof s.insert=="string"?s.insert.length:1}o.length=r}(e||(e={})),Xn.default=e,Xn}var gn=qe&&qe.__importDefault||function(t){return t&&t.__esModule?t:{default:t}},er=gn(Xf),nh=gn(Po),Gr=gn(Bo),yn=gn(Ur),Ue=gn(Vo()),rh=String.fromCharCode(0),ih=function(){function t(n){Array.isArray(n)?this.ops=n:n!=null&&Array.isArray(n.ops)?this.ops=n.ops:this.ops=[]}return t.prototype.insert=function(n,e){var o={};return typeof n=="string"&&n.length===0?this:(o.insert=n,e!=null&&typeof e=="object"&&Object.keys(e).length>0&&(o.attributes=e),this.push(o))},t.prototype.delete=function(n){return n<=0?this:this.push({delete:n})},t.prototype.retain=function(n,e){if(n<=0)return this;var o={retain:n};return e!=null&&typeof e=="object"&&Object.keys(e).length>0&&(o.attributes=e),this.push(o)},t.prototype.push=function(n){var e=this.ops.length,o=this.ops[e-1];if(n=nh.default(n),typeof o=="object"){if(typeof n.delete=="number"&&typeof o.delete=="number")return this.ops[e-1]={delete:o.delete+n.delete},this;if(typeof o.delete=="number"&&n.insert!=null&&(e-=1,o=this.ops[e-1],typeof o!="object"))return this.ops.unshift(n),this;if(Gr.default(n.attributes,o.attributes)){if(typeof n.insert=="string"&&typeof o.insert=="string")return this.ops[e-1]={insert:o.insert+n.insert},typeof n.attributes=="object"&&(this.ops[e-1].attributes=n.attributes),this;if(typeof n.retain=="number"&&typeof o.retain=="number")return this.ops[e-1]={retain:o.retain+n.retain},typeof n.attributes=="object"&&(this.ops[e-1].attributes=n.attributes),this}}return e===this.ops.length?this.ops.push(n):this.ops.splice(e,0,n),this},t.prototype.chop=function(){var n=this.ops[this.ops.length-1];return n&&n.retain&&!n.attributes&&this.ops.pop(),this},t.prototype.filter=function(n){return this.ops.filter(n)},t.prototype.forEach=function(n){this.ops.forEach(n)},t.prototype.map=function(n){return this.ops.map(n)},t.prototype.partition=function(n){var e=[],o=[];return this.forEach(function(a){var r=n(a)?e:o;r.push(a)}),[e,o]},t.prototype.reduce=function(n,e){return this.ops.reduce(n,e)},t.prototype.changeLength=function(){return this.reduce(function(n,e){return e.insert?n+Ue.default.length(e):e.delete?n-e.delete:n},0)},t.prototype.length=function(){return this.reduce(function(n,e){return n+Ue.default.length(e)},0)},t.prototype.slice=function(n,e){n===void 0&&(n=0),e===void 0&&(e=1/0);for(var o=[],a=Ue.default.iterator(this.ops),r=0;r<e&&a.hasNext();){var s=void 0;r<n?s=a.next(n-r):(s=a.next(e-r),o.push(s)),r+=Ue.default.length(s)}return new t(o)},t.prototype.compose=function(n){var e=Ue.default.iterator(this.ops),o=Ue.default.iterator(n.ops),a=[],r=o.peek();if(r!=null&&typeof r.retain=="number"&&r.attributes==null){for(var s=r.retain;e.peekType()==="insert"&&e.peekLength()<=s;)s-=e.peekLength(),a.push(e.next());r.retain-s>0&&o.next(r.retain-s)}for(var d=new t(a);e.hasNext()||o.hasNext();)if(o.peekType()==="insert")d.push(o.next());else if(e.peekType()==="delete")d.push(e.next());else{var u=Math.min(e.peekLength(),o.peekLength()),p=e.next(u),h=o.next(u);if(typeof h.retain=="number"){var f={};typeof p.retain=="number"?f.retain=u:f.insert=p.insert;var l=yn.default.compose(p.attributes,h.attributes,typeof p.retain=="number");if(l&&(f.attributes=l),d.push(f),!o.hasNext()&&Gr.default(d.ops[d.ops.length-1],f)){var c=new t(e.rest());return d.concat(c).chop()}}else typeof h.delete=="number"&&typeof p.retain=="number"&&d.push(h)}return d.chop()},t.prototype.concat=function(n){var e=new t(this.ops.slice());return n.ops.length>0&&(e.push(n.ops[0]),e.ops=e.ops.concat(n.ops.slice(1))),e},t.prototype.diff=function(n,e){if(this.ops===n.ops)return new t;var o=[this,n].map(function(u){return u.map(function(p){if(p.insert!=null)return typeof p.insert=="string"?p.insert:rh;var h=u===n?"on":"with";throw new Error("diff() called "+h+" non-document")}).join("")}),a=new t,r=er.default(o[0],o[1],e),s=Ue.default.iterator(this.ops),d=Ue.default.iterator(n.ops);return r.forEach(function(u){for(var p=u[1].length;p>0;){var h=0;switch(u[0]){case er.default.INSERT:h=Math.min(d.peekLength(),p),a.push(d.next(h));break;case er.default.DELETE:h=Math.min(p,s.peekLength()),s.next(h),a.delete(h);break;case er.default.EQUAL:h=Math.min(s.peekLength(),d.peekLength(),p);var f=s.next(h),l=d.next(h);Gr.default(f.insert,l.insert)?a.retain(h,yn.default.diff(f.attributes,l.attributes)):a.push(l).delete(h);break}p-=h}}),a.chop()},t.prototype.eachLine=function(n,e){e===void 0&&(e=`
|
|
129
|
-
`);for(var o=
|
|
130
|
+
`)){var ae=Q.offsetHeight+parseFloat(U(Q).marginTop)+parseFloat(U(Q).marginBottom);Q.nextElementSibling.offsetTop>Q.offsetTop+ae*1.5&&te.insert(`
|
|
131
|
+
`)}return te}function Re(Q,te){var ae={},le=Q.style||{};return le.fontStyle&&U(Q).fontStyle==="italic"&&(ae.italic=!0),le.fontWeight&&(U(Q).fontWeight.startsWith("bold")||parseInt(U(Q).fontWeight)>=700)&&(ae.bold=!0),Object.keys(ae).length>0&&(te=I(te,ae)),parseFloat(le.textIndent||0)>0&&(te=new f.default().insert(" ").concat(te)),te}function Be(Q,te){var ae=Q.data;if(Q.parentNode.tagName==="O:P")return te.insert(ae.trim());if(ae.trim().length===0&&Q.parentNode.classList.contains("ql-clipboard"))return te;if(!U(Q.parentNode).whiteSpace.startsWith("pre")){var le=function($e,me){return me=me.replace(/[^\u00a0]/g,""),me.length<1&&$e?" ":me};ae=ae.replace(/\r\n/g," ").replace(/\n/g," "),ae=ae.replace(/\s\s+/g,le.bind(le,!0)),(Q.previousSibling==null&&L(Q.parentNode)||Q.previousSibling!=null&&L(Q.previousSibling))&&(ae=ae.replace(/^\s+/,le.bind(le,!1))),(Q.nextSibling==null&&L(Q.parentNode)||Q.nextSibling!=null&&L(Q.nextSibling))&&(ae=ae.replace(/\s+$/,le.bind(le,!1)))}return te.insert(ae)}o.default=A,o.matchAttributor=J,o.matchBlot=ne,o.matchNewline=ke,o.matchSpacing=Oe,o.matchText=Be},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=function(){function v(m,_){for(var y=0;y<_.length;y++){var g=_[y];g.enumerable=g.enumerable||!1,g.configurable=!0,"value"in g&&(g.writable=!0),Object.defineProperty(m,g.key,g)}}return function(m,_,y){return _&&v(m.prototype,_),y&&v(m,y),m}}(),s=function v(m,_,y){m===null&&(m=Function.prototype);var g=Object.getOwnPropertyDescriptor(m,_);if(g===void 0){var w=Object.getPrototypeOf(m);return w===null?void 0:v(w,_,y)}else{if("value"in g)return g.value;var b=g.get;return b===void 0?void 0:b.call(y)}},l=a(6),u=d(l);function d(v){return v&&v.__esModule?v:{default:v}}function p(v,m){if(!(v instanceof m))throw new TypeError("Cannot call a class as a function")}function f(v,m){if(!v)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return m&&(typeof m=="object"||typeof m=="function")?m:v}function c(v,m){if(typeof m!="function"&&m!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof m);v.prototype=Object.create(m&&m.prototype,{constructor:{value:v,enumerable:!1,writable:!0,configurable:!0}}),m&&(Object.setPrototypeOf?Object.setPrototypeOf(v,m):v.__proto__=m)}var h=function(v){c(m,v);function m(){return p(this,m),f(this,(m.__proto__||Object.getPrototypeOf(m)).apply(this,arguments))}return r(m,[{key:"optimize",value:function(y){s(m.prototype.__proto__||Object.getPrototypeOf(m.prototype),"optimize",this).call(this,y),this.domNode.tagName!==this.statics.tagName[0]&&this.replaceWith(this.statics.blotName)}}],[{key:"create",value:function(){return s(m.__proto__||Object.getPrototypeOf(m),"create",this).call(this)}},{key:"formats",value:function(){return!0}}]),m}(u.default);h.blotName="bold",h.tagName=["STRONG","B"],o.default=h},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.addControls=o.default=void 0;var r=function(){function C(O,N){var R=[],q=!0,W=!1,Y=void 0;try{for(var re=O[Symbol.iterator](),K;!(q=(K=re.next()).done)&&(R.push(K.value),!(N&&R.length===N));q=!0);}catch(V){W=!0,Y=V}finally{try{!q&&re.return&&re.return()}finally{if(W)throw Y}}return R}return function(O,N){if(Array.isArray(O))return O;if(Symbol.iterator in Object(O))return C(O,N);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),s=function(){function C(O,N){for(var R=0;R<N.length;R++){var q=N[R];q.enumerable=q.enumerable||!1,q.configurable=!0,"value"in q&&(q.writable=!0),Object.defineProperty(O,q.key,q)}}return function(O,N,R){return N&&C(O.prototype,N),R&&C(O,R),O}}(),l=a(2),u=y(l),d=a(0),p=y(d),f=a(5),c=y(f),h=a(10),v=y(h),m=a(9),_=y(m);function y(C){return C&&C.__esModule?C:{default:C}}function g(C,O,N){return O in C?Object.defineProperty(C,O,{value:N,enumerable:!0,configurable:!0,writable:!0}):C[O]=N,C}function w(C,O){if(!(C instanceof O))throw new TypeError("Cannot call a class as a function")}function b(C,O){if(!C)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return O&&(typeof O=="object"||typeof O=="function")?O:C}function k(C,O){if(typeof O!="function"&&O!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof O);C.prototype=Object.create(O&&O.prototype,{constructor:{value:C,enumerable:!1,writable:!0,configurable:!0}}),O&&(Object.setPrototypeOf?Object.setPrototypeOf(C,O):C.__proto__=O)}var T=(0,v.default)("quill:toolbar"),S=function(C){k(O,C);function O(N,R){w(this,O);var q=b(this,(O.__proto__||Object.getPrototypeOf(O)).call(this,N,R));if(Array.isArray(q.options.container)){var W=document.createElement("div");B(W,q.options.container),N.container.parentNode.insertBefore(W,N.container),q.container=W}else typeof q.options.container=="string"?q.container=document.querySelector(q.options.container):q.container=q.options.container;if(!(q.container instanceof HTMLElement)){var Y;return Y=T.error("Container required for toolbar",q.options),b(q,Y)}return q.container.classList.add("ql-toolbar"),q.controls=[],q.handlers={},Object.keys(q.options.handlers).forEach(function(re){q.addHandler(re,q.options.handlers[re])}),[].forEach.call(q.container.querySelectorAll("button, select"),function(re){q.attach(re)}),q.quill.on(c.default.events.EDITOR_CHANGE,function(re,K){re===c.default.events.SELECTION_CHANGE&&q.update(K)}),q.quill.on(c.default.events.SCROLL_OPTIMIZE,function(){var re=q.quill.selection.getRange(),K=r(re,1),V=K[0];q.update(V)}),q}return s(O,[{key:"addHandler",value:function(R,q){this.handlers[R]=q}},{key:"attach",value:function(R){var q=this,W=[].find.call(R.classList,function(re){return re.indexOf("ql-")===0});if(W){if(W=W.slice(3),R.tagName==="BUTTON"&&R.setAttribute("type","button"),this.handlers[W]==null){if(this.quill.scroll.whitelist!=null&&this.quill.scroll.whitelist[W]==null){T.warn("ignoring attaching to disabled format",W,R);return}if(p.default.query(W)==null){T.warn("ignoring attaching to nonexistent format",W,R);return}}var Y=R.tagName==="SELECT"?"change":"click";R.addEventListener(Y,function(re){var K=void 0;if(R.tagName==="SELECT"){if(R.selectedIndex<0)return;var V=R.options[R.selectedIndex];V.hasAttribute("selected")?K=!1:K=V.value||!1}else R.classList.contains("ql-active")?K=!1:K=R.value||!R.hasAttribute("value"),re.preventDefault();q.quill.focus();var D=q.quill.selection.getRange(),A=r(D,1),I=A[0];if(q.handlers[W]!=null)q.handlers[W].call(q,K);else if(p.default.query(W).prototype instanceof p.default.Embed){if(K=prompt("Enter "+W),!K)return;q.quill.updateContents(new u.default().retain(I.index).delete(I.length).insert(g({},W,K)),c.default.sources.USER)}else q.quill.format(W,K,c.default.sources.USER);q.update(I)}),this.controls.push([W,R])}}},{key:"update",value:function(R){var q=R==null?{}:this.quill.getFormat(R);this.controls.forEach(function(W){var Y=r(W,2),re=Y[0],K=Y[1];if(K.tagName==="SELECT"){var V=void 0;if(R==null)V=null;else if(q[re]==null)V=K.querySelector("option[selected]");else if(!Array.isArray(q[re])){var D=q[re];typeof D=="string"&&(D=D.replace(/\"/g,'\\"')),V=K.querySelector('option[value="'+D+'"]')}V==null?(K.value="",K.selectedIndex=-1):V.selected=!0}else if(R==null)K.classList.remove("ql-active");else if(K.hasAttribute("value")){var A=q[re]===K.getAttribute("value")||q[re]!=null&&q[re].toString()===K.getAttribute("value")||q[re]==null&&!K.getAttribute("value");K.classList.toggle("ql-active",A)}else K.classList.toggle("ql-active",q[re]!=null)})}}]),O}(_.default);S.DEFAULTS={};function x(C,O,N){var R=document.createElement("button");R.setAttribute("type","button"),R.classList.add("ql-"+O),N!=null&&(R.value=N),C.appendChild(R)}function B(C,O){Array.isArray(O[0])||(O=[O]),O.forEach(function(N){var R=document.createElement("span");R.classList.add("ql-formats"),N.forEach(function(q){if(typeof q=="string")x(R,q);else{var W=Object.keys(q)[0],Y=q[W];Array.isArray(Y)?E(R,W,Y):x(R,W,Y)}}),C.appendChild(R)})}function E(C,O,N){var R=document.createElement("select");R.classList.add("ql-"+O),N.forEach(function(q){var W=document.createElement("option");q!==!1?W.setAttribute("value",q):W.setAttribute("selected","selected"),R.appendChild(W)}),C.appendChild(R)}S.DEFAULTS={container:null,handlers:{clean:function(){var O=this,N=this.quill.getSelection();if(N!=null)if(N.length==0){var R=this.quill.getFormat();Object.keys(R).forEach(function(q){p.default.query(q,p.default.Scope.INLINE)!=null&&O.quill.format(q,!1)})}else this.quill.removeFormat(N,c.default.sources.USER)},direction:function(O){var N=this.quill.getFormat().align;O==="rtl"&&N==null?this.quill.format("align","right",c.default.sources.USER):!O&&N==="right"&&this.quill.format("align",!1,c.default.sources.USER),this.quill.format("direction",O,c.default.sources.USER)},indent:function(O){var N=this.quill.getSelection(),R=this.quill.getFormat(N),q=parseInt(R.indent||0);if(O==="+1"||O==="-1"){var W=O==="+1"?1:-1;R.direction==="rtl"&&(W*=-1),this.quill.format("indent",q+W,c.default.sources.USER)}},link:function(O){O===!0&&(O=prompt("Enter link URL:")),this.quill.format("link",O,c.default.sources.USER)},list:function(O){var N=this.quill.getSelection(),R=this.quill.getFormat(N);O==="check"?R.list==="checked"||R.list==="unchecked"?this.quill.format("list",!1,c.default.sources.USER):this.quill.format("list","unchecked",c.default.sources.USER):this.quill.format("list",O,c.default.sources.USER)}}},o.default=S,o.addControls=B},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <polyline class="ql-even ql-stroke" points="5 7 3 9 5 11"></polyline> <polyline class="ql-even ql-stroke" points="13 7 15 9 13 11"></polyline> <line class=ql-stroke x1=10 x2=8 y1=5 y2=13></line> </svg>'},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=function(){function v(m,_){for(var y=0;y<_.length;y++){var g=_[y];g.enumerable=g.enumerable||!1,g.configurable=!0,"value"in g&&(g.writable=!0),Object.defineProperty(m,g.key,g)}}return function(m,_,y){return _&&v(m.prototype,_),y&&v(m,y),m}}(),s=function v(m,_,y){m===null&&(m=Function.prototype);var g=Object.getOwnPropertyDescriptor(m,_);if(g===void 0){var w=Object.getPrototypeOf(m);return w===null?void 0:v(w,_,y)}else{if("value"in g)return g.value;var b=g.get;return b===void 0?void 0:b.call(y)}},l=a(28),u=d(l);function d(v){return v&&v.__esModule?v:{default:v}}function p(v,m){if(!(v instanceof m))throw new TypeError("Cannot call a class as a function")}function f(v,m){if(!v)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return m&&(typeof m=="object"||typeof m=="function")?m:v}function c(v,m){if(typeof m!="function"&&m!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof m);v.prototype=Object.create(m&&m.prototype,{constructor:{value:v,enumerable:!1,writable:!0,configurable:!0}}),m&&(Object.setPrototypeOf?Object.setPrototypeOf(v,m):v.__proto__=m)}var h=function(v){c(m,v);function m(_,y){p(this,m);var g=f(this,(m.__proto__||Object.getPrototypeOf(m)).call(this,_));return g.label.innerHTML=y,g.container.classList.add("ql-color-picker"),[].slice.call(g.container.querySelectorAll(".ql-picker-item"),0,7).forEach(function(w){w.classList.add("ql-primary")}),g}return r(m,[{key:"buildItem",value:function(y){var g=s(m.prototype.__proto__||Object.getPrototypeOf(m.prototype),"buildItem",this).call(this,y);return g.style.backgroundColor=y.getAttribute("value")||"",g}},{key:"selectItem",value:function(y,g){s(m.prototype.__proto__||Object.getPrototypeOf(m.prototype),"selectItem",this).call(this,y,g);var w=this.label.querySelector(".ql-color-label"),b=y&&y.getAttribute("data-value")||"";w&&(w.tagName==="line"?w.style.stroke=b:w.style.fill=b)}}]),m}(u.default);o.default=h},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=function(){function v(m,_){for(var y=0;y<_.length;y++){var g=_[y];g.enumerable=g.enumerable||!1,g.configurable=!0,"value"in g&&(g.writable=!0),Object.defineProperty(m,g.key,g)}}return function(m,_,y){return _&&v(m.prototype,_),y&&v(m,y),m}}(),s=function v(m,_,y){m===null&&(m=Function.prototype);var g=Object.getOwnPropertyDescriptor(m,_);if(g===void 0){var w=Object.getPrototypeOf(m);return w===null?void 0:v(w,_,y)}else{if("value"in g)return g.value;var b=g.get;return b===void 0?void 0:b.call(y)}},l=a(28),u=d(l);function d(v){return v&&v.__esModule?v:{default:v}}function p(v,m){if(!(v instanceof m))throw new TypeError("Cannot call a class as a function")}function f(v,m){if(!v)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return m&&(typeof m=="object"||typeof m=="function")?m:v}function c(v,m){if(typeof m!="function"&&m!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof m);v.prototype=Object.create(m&&m.prototype,{constructor:{value:v,enumerable:!1,writable:!0,configurable:!0}}),m&&(Object.setPrototypeOf?Object.setPrototypeOf(v,m):v.__proto__=m)}var h=function(v){c(m,v);function m(_,y){p(this,m);var g=f(this,(m.__proto__||Object.getPrototypeOf(m)).call(this,_));return g.container.classList.add("ql-icon-picker"),[].forEach.call(g.container.querySelectorAll(".ql-picker-item"),function(w){w.innerHTML=y[w.getAttribute("data-value")||""]}),g.defaultItem=g.container.querySelector(".ql-selected"),g.selectItem(g.defaultItem),g}return r(m,[{key:"selectItem",value:function(y,g){s(m.prototype.__proto__||Object.getPrototypeOf(m.prototype),"selectItem",this).call(this,y,g),y=y||this.defaultItem,this.label.innerHTML=y.innerHTML}}]),m}(u.default);o.default=h},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=function(){function u(d,p){for(var f=0;f<p.length;f++){var c=p[f];c.enumerable=c.enumerable||!1,c.configurable=!0,"value"in c&&(c.writable=!0),Object.defineProperty(d,c.key,c)}}return function(d,p,f){return p&&u(d.prototype,p),f&&u(d,f),d}}();function s(u,d){if(!(u instanceof d))throw new TypeError("Cannot call a class as a function")}var l=function(){function u(d,p){var f=this;s(this,u),this.quill=d,this.boundsContainer=p||document.body,this.root=d.addContainer("ql-tooltip"),this.root.innerHTML=this.constructor.TEMPLATE,this.quill.root===this.quill.scrollingContainer&&this.quill.root.addEventListener("scroll",function(){f.root.style.marginTop=-1*f.quill.root.scrollTop+"px"}),this.hide()}return r(u,[{key:"hide",value:function(){this.root.classList.add("ql-hidden")}},{key:"position",value:function(p){var f=p.left+p.width/2-this.root.offsetWidth/2,c=p.bottom+this.quill.root.scrollTop;this.root.style.left=f+"px",this.root.style.top=c+"px",this.root.classList.remove("ql-flip");var h=this.boundsContainer.getBoundingClientRect(),v=this.root.getBoundingClientRect(),m=0;if(v.right>h.right&&(m=h.right-v.right,this.root.style.left=f+m+"px"),v.left<h.left&&(m=h.left-v.left,this.root.style.left=f+m+"px"),v.bottom>h.bottom){var _=v.bottom-v.top,y=p.bottom-p.top+_;this.root.style.top=c-y+"px",this.root.classList.add("ql-flip")}return m}},{key:"show",value:function(){this.root.classList.remove("ql-editing"),this.root.classList.remove("ql-hidden")}}]),u}();o.default=l},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=function(){function E(C,O){var N=[],R=!0,q=!1,W=void 0;try{for(var Y=C[Symbol.iterator](),re;!(R=(re=Y.next()).done)&&(N.push(re.value),!(O&&N.length===O));R=!0);}catch(K){q=!0,W=K}finally{try{!R&&Y.return&&Y.return()}finally{if(q)throw W}}return N}return function(C,O){if(Array.isArray(C))return C;if(Symbol.iterator in Object(C))return E(C,O);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),s=function E(C,O,N){C===null&&(C=Function.prototype);var R=Object.getOwnPropertyDescriptor(C,O);if(R===void 0){var q=Object.getPrototypeOf(C);return q===null?void 0:E(q,O,N)}else{if("value"in R)return R.value;var W=R.get;return W===void 0?void 0:W.call(N)}},l=function(){function E(C,O){for(var N=0;N<O.length;N++){var R=O[N];R.enumerable=R.enumerable||!1,R.configurable=!0,"value"in R&&(R.writable=!0),Object.defineProperty(C,R.key,R)}}return function(C,O,N){return O&&E(C.prototype,O),N&&E(C,N),C}}(),u=a(3),d=w(u),p=a(8),f=w(p),c=a(43),h=w(c),v=a(27),m=w(v),_=a(15),y=a(41),g=w(y);function w(E){return E&&E.__esModule?E:{default:E}}function b(E,C){if(!(E instanceof C))throw new TypeError("Cannot call a class as a function")}function k(E,C){if(!E)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return C&&(typeof C=="object"||typeof C=="function")?C:E}function T(E,C){if(typeof C!="function"&&C!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof C);E.prototype=Object.create(C&&C.prototype,{constructor:{value:E,enumerable:!1,writable:!0,configurable:!0}}),C&&(Object.setPrototypeOf?Object.setPrototypeOf(E,C):E.__proto__=C)}var S=[[{header:["1","2","3",!1]}],["bold","italic","underline","link"],[{list:"ordered"},{list:"bullet"}],["clean"]],x=function(E){T(C,E);function C(O,N){b(this,C),N.modules.toolbar!=null&&N.modules.toolbar.container==null&&(N.modules.toolbar.container=S);var R=k(this,(C.__proto__||Object.getPrototypeOf(C)).call(this,O,N));return R.quill.container.classList.add("ql-snow"),R}return l(C,[{key:"extendToolbar",value:function(N){N.container.classList.add("ql-snow"),this.buildButtons([].slice.call(N.container.querySelectorAll("button")),g.default),this.buildPickers([].slice.call(N.container.querySelectorAll("select")),g.default),this.tooltip=new B(this.quill,this.options.bounds),N.container.querySelector(".ql-link")&&this.quill.keyboard.addBinding({key:"K",shortKey:!0},function(R,q){N.handlers.link.call(N,!q.format.link)})}}]),C}(h.default);x.DEFAULTS=(0,d.default)(!0,{},h.default.DEFAULTS,{modules:{toolbar:{handlers:{link:function(C){if(C){var O=this.quill.getSelection();if(O==null||O.length==0)return;var N=this.quill.getText(O);/^\S+@\S+\.\S+$/.test(N)&&N.indexOf("mailto:")!==0&&(N="mailto:"+N);var R=this.quill.theme.tooltip;R.edit("link",N)}else this.quill.format("link",!1)}}}}});var B=function(E){T(C,E);function C(O,N){b(this,C);var R=k(this,(C.__proto__||Object.getPrototypeOf(C)).call(this,O,N));return R.preview=R.root.querySelector("a.ql-preview"),R}return l(C,[{key:"listen",value:function(){var N=this;s(C.prototype.__proto__||Object.getPrototypeOf(C.prototype),"listen",this).call(this),this.root.querySelector("a.ql-action").addEventListener("click",function(R){N.root.classList.contains("ql-editing")?N.save():N.edit("link",N.preview.textContent),R.preventDefault()}),this.root.querySelector("a.ql-remove").addEventListener("click",function(R){if(N.linkRange!=null){var q=N.linkRange;N.restoreFocus(),N.quill.formatText(q,"link",!1,f.default.sources.USER),delete N.linkRange}R.preventDefault(),N.hide()}),this.quill.on(f.default.events.SELECTION_CHANGE,function(R,q,W){if(R!=null){if(R.length===0&&W===f.default.sources.USER){var Y=N.quill.scroll.descendant(m.default,R.index),re=r(Y,2),K=re[0],V=re[1];if(K!=null){N.linkRange=new _.Range(R.index-V,K.length());var D=m.default.formats(K.domNode);N.preview.textContent=D,N.preview.setAttribute("href",D),N.show(),N.position(N.quill.getBounds(N.linkRange));return}}else delete N.linkRange;N.hide()}})}},{key:"show",value:function(){s(C.prototype.__proto__||Object.getPrototypeOf(C.prototype),"show",this).call(this),this.root.removeAttribute("data-mode")}}]),C}(c.BaseTooltip);B.TEMPLATE=['<a class="ql-preview" rel="noopener noreferrer" target="_blank" href="about:blank"></a>','<input type="text" data-formula="e=mc^2" data-link="https://quilljs.com" data-video="Embed URL">','<a class="ql-action"></a>','<a class="ql-remove"></a>'].join(""),o.default=x},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=a(29),s=ie(r),l=a(36),u=a(38),d=a(64),p=a(65),f=ie(p),c=a(66),h=ie(c),v=a(67),m=ie(v),_=a(37),y=a(26),g=a(39),w=a(40),b=a(56),k=ie(b),T=a(68),S=ie(T),x=a(27),B=ie(x),E=a(69),C=ie(E),O=a(70),N=ie(O),R=a(71),q=ie(R),W=a(72),Y=ie(W),re=a(73),K=ie(re),V=a(13),D=ie(V),A=a(74),I=ie(A),U=a(75),F=ie(U),L=a(57),z=ie(L),Z=a(41),J=ie(Z),ne=a(28),ce=ie(ne),he=a(59),be=ie(he),ke=a(60),Oe=ie(ke),Re=a(61),Be=ie(Re),Q=a(108),te=ie(Q),ae=a(62),le=ie(ae);function ie($e){return $e&&$e.__esModule?$e:{default:$e}}s.default.register({"attributors/attribute/direction":u.DirectionAttribute,"attributors/class/align":l.AlignClass,"attributors/class/background":_.BackgroundClass,"attributors/class/color":y.ColorClass,"attributors/class/direction":u.DirectionClass,"attributors/class/font":g.FontClass,"attributors/class/size":w.SizeClass,"attributors/style/align":l.AlignStyle,"attributors/style/background":_.BackgroundStyle,"attributors/style/color":y.ColorStyle,"attributors/style/direction":u.DirectionStyle,"attributors/style/font":g.FontStyle,"attributors/style/size":w.SizeStyle},!0),s.default.register({"formats/align":l.AlignClass,"formats/direction":u.DirectionClass,"formats/indent":d.IndentClass,"formats/background":_.BackgroundStyle,"formats/color":y.ColorStyle,"formats/font":g.FontClass,"formats/size":w.SizeClass,"formats/blockquote":f.default,"formats/code-block":D.default,"formats/header":h.default,"formats/list":m.default,"formats/bold":k.default,"formats/code":V.Code,"formats/italic":S.default,"formats/link":B.default,"formats/script":C.default,"formats/strike":N.default,"formats/underline":q.default,"formats/image":Y.default,"formats/video":K.default,"formats/list/item":v.ListItem,"modules/formula":I.default,"modules/syntax":F.default,"modules/toolbar":z.default,"themes/bubble":te.default,"themes/snow":le.default,"ui/icons":J.default,"ui/picker":ce.default,"ui/icon-picker":Oe.default,"ui/color-picker":be.default,"ui/tooltip":Be.default},!0),o.default=s.default},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.IndentClass=void 0;var r=function(){function m(_,y){for(var g=0;g<y.length;g++){var w=y[g];w.enumerable=w.enumerable||!1,w.configurable=!0,"value"in w&&(w.writable=!0),Object.defineProperty(_,w.key,w)}}return function(_,y,g){return y&&m(_.prototype,y),g&&m(_,g),_}}(),s=function m(_,y,g){_===null&&(_=Function.prototype);var w=Object.getOwnPropertyDescriptor(_,y);if(w===void 0){var b=Object.getPrototypeOf(_);return b===null?void 0:m(b,y,g)}else{if("value"in w)return w.value;var k=w.get;return k===void 0?void 0:k.call(g)}},l=a(0),u=d(l);function d(m){return m&&m.__esModule?m:{default:m}}function p(m,_){if(!(m instanceof _))throw new TypeError("Cannot call a class as a function")}function f(m,_){if(!m)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return _&&(typeof _=="object"||typeof _=="function")?_:m}function c(m,_){if(typeof _!="function"&&_!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof _);m.prototype=Object.create(_&&_.prototype,{constructor:{value:m,enumerable:!1,writable:!0,configurable:!0}}),_&&(Object.setPrototypeOf?Object.setPrototypeOf(m,_):m.__proto__=_)}var h=function(m){c(_,m);function _(){return p(this,_),f(this,(_.__proto__||Object.getPrototypeOf(_)).apply(this,arguments))}return r(_,[{key:"add",value:function(g,w){if(w==="+1"||w==="-1"){var b=this.value(g)||0;w=w==="+1"?b+1:b-1}return w===0?(this.remove(g),!0):s(_.prototype.__proto__||Object.getPrototypeOf(_.prototype),"add",this).call(this,g,w)}},{key:"canAdd",value:function(g,w){return s(_.prototype.__proto__||Object.getPrototypeOf(_.prototype),"canAdd",this).call(this,g,w)||s(_.prototype.__proto__||Object.getPrototypeOf(_.prototype),"canAdd",this).call(this,g,parseInt(w))}},{key:"value",value:function(g){return parseInt(s(_.prototype.__proto__||Object.getPrototypeOf(_.prototype),"value",this).call(this,g))||void 0}}]),_}(u.default.Attributor.Class),v=new h("indent","ql-indent",{scope:u.default.Scope.BLOCK,whitelist:[1,2,3,4,5,6,7,8]});o.IndentClass=v},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=a(4),s=l(r);function l(c){return c&&c.__esModule?c:{default:c}}function u(c,h){if(!(c instanceof h))throw new TypeError("Cannot call a class as a function")}function d(c,h){if(!c)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return h&&(typeof h=="object"||typeof h=="function")?h:c}function p(c,h){if(typeof h!="function"&&h!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof h);c.prototype=Object.create(h&&h.prototype,{constructor:{value:c,enumerable:!1,writable:!0,configurable:!0}}),h&&(Object.setPrototypeOf?Object.setPrototypeOf(c,h):c.__proto__=h)}var f=function(c){p(h,c);function h(){return u(this,h),d(this,(h.__proto__||Object.getPrototypeOf(h)).apply(this,arguments))}return h}(s.default);f.blotName="blockquote",f.tagName="blockquote",o.default=f},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=function(){function h(v,m){for(var _=0;_<m.length;_++){var y=m[_];y.enumerable=y.enumerable||!1,y.configurable=!0,"value"in y&&(y.writable=!0),Object.defineProperty(v,y.key,y)}}return function(v,m,_){return m&&h(v.prototype,m),_&&h(v,_),v}}(),s=a(4),l=u(s);function u(h){return h&&h.__esModule?h:{default:h}}function d(h,v){if(!(h instanceof v))throw new TypeError("Cannot call a class as a function")}function p(h,v){if(!h)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return v&&(typeof v=="object"||typeof v=="function")?v:h}function f(h,v){if(typeof v!="function"&&v!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof v);h.prototype=Object.create(v&&v.prototype,{constructor:{value:h,enumerable:!1,writable:!0,configurable:!0}}),v&&(Object.setPrototypeOf?Object.setPrototypeOf(h,v):h.__proto__=v)}var c=function(h){f(v,h);function v(){return d(this,v),p(this,(v.__proto__||Object.getPrototypeOf(v)).apply(this,arguments))}return r(v,null,[{key:"formats",value:function(_){return this.tagName.indexOf(_.tagName)+1}}]),v}(l.default);c.blotName="header",c.tagName=["H1","H2","H3","H4","H5","H6"],o.default=c},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.default=o.ListItem=void 0;var r=function(){function b(k,T){for(var S=0;S<T.length;S++){var x=T[S];x.enumerable=x.enumerable||!1,x.configurable=!0,"value"in x&&(x.writable=!0),Object.defineProperty(k,x.key,x)}}return function(k,T,S){return T&&b(k.prototype,T),S&&b(k,S),k}}(),s=function b(k,T,S){k===null&&(k=Function.prototype);var x=Object.getOwnPropertyDescriptor(k,T);if(x===void 0){var B=Object.getPrototypeOf(k);return B===null?void 0:b(B,T,S)}else{if("value"in x)return x.value;var E=x.get;return E===void 0?void 0:E.call(S)}},l=a(0),u=h(l),d=a(4),p=h(d),f=a(25),c=h(f);function h(b){return b&&b.__esModule?b:{default:b}}function v(b,k,T){return k in b?Object.defineProperty(b,k,{value:T,enumerable:!0,configurable:!0,writable:!0}):b[k]=T,b}function m(b,k){if(!(b instanceof k))throw new TypeError("Cannot call a class as a function")}function _(b,k){if(!b)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return k&&(typeof k=="object"||typeof k=="function")?k:b}function y(b,k){if(typeof k!="function"&&k!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof k);b.prototype=Object.create(k&&k.prototype,{constructor:{value:b,enumerable:!1,writable:!0,configurable:!0}}),k&&(Object.setPrototypeOf?Object.setPrototypeOf(b,k):b.__proto__=k)}var g=function(b){y(k,b);function k(){return m(this,k),_(this,(k.__proto__||Object.getPrototypeOf(k)).apply(this,arguments))}return r(k,[{key:"format",value:function(S,x){S===w.blotName&&!x?this.replaceWith(u.default.create(this.statics.scope)):s(k.prototype.__proto__||Object.getPrototypeOf(k.prototype),"format",this).call(this,S,x)}},{key:"remove",value:function(){this.prev==null&&this.next==null?this.parent.remove():s(k.prototype.__proto__||Object.getPrototypeOf(k.prototype),"remove",this).call(this)}},{key:"replaceWith",value:function(S,x){return this.parent.isolate(this.offset(this.parent),this.length()),S===this.parent.statics.blotName?(this.parent.replaceWith(S,x),this):(this.parent.unwrap(),s(k.prototype.__proto__||Object.getPrototypeOf(k.prototype),"replaceWith",this).call(this,S,x))}}],[{key:"formats",value:function(S){return S.tagName===this.tagName?void 0:s(k.__proto__||Object.getPrototypeOf(k),"formats",this).call(this,S)}}]),k}(p.default);g.blotName="list-item",g.tagName="LI";var w=function(b){y(k,b),r(k,null,[{key:"create",value:function(S){var x=S==="ordered"?"OL":"UL",B=s(k.__proto__||Object.getPrototypeOf(k),"create",this).call(this,x);return(S==="checked"||S==="unchecked")&&B.setAttribute("data-checked",S==="checked"),B}},{key:"formats",value:function(S){if(S.tagName==="OL")return"ordered";if(S.tagName==="UL")return S.hasAttribute("data-checked")?S.getAttribute("data-checked")==="true"?"checked":"unchecked":"bullet"}}]);function k(T){m(this,k);var S=_(this,(k.__proto__||Object.getPrototypeOf(k)).call(this,T)),x=function(E){if(E.target.parentNode===T){var C=S.statics.formats(T),O=u.default.find(E.target);C==="checked"?O.format("list","unchecked"):C==="unchecked"&&O.format("list","checked")}};return T.addEventListener("touchstart",x),T.addEventListener("mousedown",x),S}return r(k,[{key:"format",value:function(S,x){this.children.length>0&&this.children.tail.format(S,x)}},{key:"formats",value:function(){return v({},this.statics.blotName,this.statics.formats(this.domNode))}},{key:"insertBefore",value:function(S,x){if(S instanceof g)s(k.prototype.__proto__||Object.getPrototypeOf(k.prototype),"insertBefore",this).call(this,S,x);else{var B=x==null?this.length():x.offset(this),E=this.split(B);E.parent.insertBefore(S,E)}}},{key:"optimize",value:function(S){s(k.prototype.__proto__||Object.getPrototypeOf(k.prototype),"optimize",this).call(this,S);var x=this.next;x!=null&&x.prev===this&&x.statics.blotName===this.statics.blotName&&x.domNode.tagName===this.domNode.tagName&&x.domNode.getAttribute("data-checked")===this.domNode.getAttribute("data-checked")&&(x.moveChildren(this),x.remove())}},{key:"replace",value:function(S){if(S.statics.blotName!==this.statics.blotName){var x=u.default.create(this.statics.defaultChild);S.moveChildren(x),this.appendChild(x)}s(k.prototype.__proto__||Object.getPrototypeOf(k.prototype),"replace",this).call(this,S)}}]),k}(c.default);w.blotName="list",w.scope=u.default.Scope.BLOCK_BLOT,w.tagName=["OL","UL"],w.defaultChild="list-item",w.allowedChildren=[g],o.ListItem=g,o.default=w},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=a(56),s=l(r);function l(c){return c&&c.__esModule?c:{default:c}}function u(c,h){if(!(c instanceof h))throw new TypeError("Cannot call a class as a function")}function d(c,h){if(!c)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return h&&(typeof h=="object"||typeof h=="function")?h:c}function p(c,h){if(typeof h!="function"&&h!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof h);c.prototype=Object.create(h&&h.prototype,{constructor:{value:c,enumerable:!1,writable:!0,configurable:!0}}),h&&(Object.setPrototypeOf?Object.setPrototypeOf(c,h):c.__proto__=h)}var f=function(c){p(h,c);function h(){return u(this,h),d(this,(h.__proto__||Object.getPrototypeOf(h)).apply(this,arguments))}return h}(s.default);f.blotName="italic",f.tagName=["EM","I"],o.default=f},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=function(){function v(m,_){for(var y=0;y<_.length;y++){var g=_[y];g.enumerable=g.enumerable||!1,g.configurable=!0,"value"in g&&(g.writable=!0),Object.defineProperty(m,g.key,g)}}return function(m,_,y){return _&&v(m.prototype,_),y&&v(m,y),m}}(),s=function v(m,_,y){m===null&&(m=Function.prototype);var g=Object.getOwnPropertyDescriptor(m,_);if(g===void 0){var w=Object.getPrototypeOf(m);return w===null?void 0:v(w,_,y)}else{if("value"in g)return g.value;var b=g.get;return b===void 0?void 0:b.call(y)}},l=a(6),u=d(l);function d(v){return v&&v.__esModule?v:{default:v}}function p(v,m){if(!(v instanceof m))throw new TypeError("Cannot call a class as a function")}function f(v,m){if(!v)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return m&&(typeof m=="object"||typeof m=="function")?m:v}function c(v,m){if(typeof m!="function"&&m!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof m);v.prototype=Object.create(m&&m.prototype,{constructor:{value:v,enumerable:!1,writable:!0,configurable:!0}}),m&&(Object.setPrototypeOf?Object.setPrototypeOf(v,m):v.__proto__=m)}var h=function(v){c(m,v);function m(){return p(this,m),f(this,(m.__proto__||Object.getPrototypeOf(m)).apply(this,arguments))}return r(m,null,[{key:"create",value:function(y){return y==="super"?document.createElement("sup"):y==="sub"?document.createElement("sub"):s(m.__proto__||Object.getPrototypeOf(m),"create",this).call(this,y)}},{key:"formats",value:function(y){if(y.tagName==="SUB")return"sub";if(y.tagName==="SUP")return"super"}}]),m}(u.default);h.blotName="script",h.tagName=["SUB","SUP"],o.default=h},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=a(6),s=l(r);function l(c){return c&&c.__esModule?c:{default:c}}function u(c,h){if(!(c instanceof h))throw new TypeError("Cannot call a class as a function")}function d(c,h){if(!c)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return h&&(typeof h=="object"||typeof h=="function")?h:c}function p(c,h){if(typeof h!="function"&&h!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof h);c.prototype=Object.create(h&&h.prototype,{constructor:{value:c,enumerable:!1,writable:!0,configurable:!0}}),h&&(Object.setPrototypeOf?Object.setPrototypeOf(c,h):c.__proto__=h)}var f=function(c){p(h,c);function h(){return u(this,h),d(this,(h.__proto__||Object.getPrototypeOf(h)).apply(this,arguments))}return h}(s.default);f.blotName="strike",f.tagName="S",o.default=f},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=a(6),s=l(r);function l(c){return c&&c.__esModule?c:{default:c}}function u(c,h){if(!(c instanceof h))throw new TypeError("Cannot call a class as a function")}function d(c,h){if(!c)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return h&&(typeof h=="object"||typeof h=="function")?h:c}function p(c,h){if(typeof h!="function"&&h!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof h);c.prototype=Object.create(h&&h.prototype,{constructor:{value:c,enumerable:!1,writable:!0,configurable:!0}}),h&&(Object.setPrototypeOf?Object.setPrototypeOf(c,h):c.__proto__=h)}var f=function(c){p(h,c);function h(){return u(this,h),d(this,(h.__proto__||Object.getPrototypeOf(h)).apply(this,arguments))}return h}(s.default);f.blotName="underline",f.tagName="U",o.default=f},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=function(){function _(y,g){for(var w=0;w<g.length;w++){var b=g[w];b.enumerable=b.enumerable||!1,b.configurable=!0,"value"in b&&(b.writable=!0),Object.defineProperty(y,b.key,b)}}return function(y,g,w){return g&&_(y.prototype,g),w&&_(y,w),y}}(),s=function _(y,g,w){y===null&&(y=Function.prototype);var b=Object.getOwnPropertyDescriptor(y,g);if(b===void 0){var k=Object.getPrototypeOf(y);return k===null?void 0:_(k,g,w)}else{if("value"in b)return b.value;var T=b.get;return T===void 0?void 0:T.call(w)}},l=a(0),u=p(l),d=a(27);function p(_){return _&&_.__esModule?_:{default:_}}function f(_,y){if(!(_ instanceof y))throw new TypeError("Cannot call a class as a function")}function c(_,y){if(!_)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return y&&(typeof y=="object"||typeof y=="function")?y:_}function h(_,y){if(typeof y!="function"&&y!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof y);_.prototype=Object.create(y&&y.prototype,{constructor:{value:_,enumerable:!1,writable:!0,configurable:!0}}),y&&(Object.setPrototypeOf?Object.setPrototypeOf(_,y):_.__proto__=y)}var v=["alt","height","width"],m=function(_){h(y,_);function y(){return f(this,y),c(this,(y.__proto__||Object.getPrototypeOf(y)).apply(this,arguments))}return r(y,[{key:"format",value:function(w,b){v.indexOf(w)>-1?b?this.domNode.setAttribute(w,b):this.domNode.removeAttribute(w):s(y.prototype.__proto__||Object.getPrototypeOf(y.prototype),"format",this).call(this,w,b)}}],[{key:"create",value:function(w){var b=s(y.__proto__||Object.getPrototypeOf(y),"create",this).call(this,w);return typeof w=="string"&&b.setAttribute("src",this.sanitize(w)),b}},{key:"formats",value:function(w){return v.reduce(function(b,k){return w.hasAttribute(k)&&(b[k]=w.getAttribute(k)),b},{})}},{key:"match",value:function(w){return/\.(jpe?g|gif|png)$/.test(w)||/^data:image\/.+;base64/.test(w)}},{key:"sanitize",value:function(w){return(0,d.sanitize)(w,["http","https","data"])?w:"//:0"}},{key:"value",value:function(w){return w.getAttribute("src")}}]),y}(u.default.Embed);m.blotName="image",m.tagName="IMG",o.default=m},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0});var r=function(){function _(y,g){for(var w=0;w<g.length;w++){var b=g[w];b.enumerable=b.enumerable||!1,b.configurable=!0,"value"in b&&(b.writable=!0),Object.defineProperty(y,b.key,b)}}return function(y,g,w){return g&&_(y.prototype,g),w&&_(y,w),y}}(),s=function _(y,g,w){y===null&&(y=Function.prototype);var b=Object.getOwnPropertyDescriptor(y,g);if(b===void 0){var k=Object.getPrototypeOf(y);return k===null?void 0:_(k,g,w)}else{if("value"in b)return b.value;var T=b.get;return T===void 0?void 0:T.call(w)}},l=a(4),u=a(27),d=p(u);function p(_){return _&&_.__esModule?_:{default:_}}function f(_,y){if(!(_ instanceof y))throw new TypeError("Cannot call a class as a function")}function c(_,y){if(!_)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return y&&(typeof y=="object"||typeof y=="function")?y:_}function h(_,y){if(typeof y!="function"&&y!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof y);_.prototype=Object.create(y&&y.prototype,{constructor:{value:_,enumerable:!1,writable:!0,configurable:!0}}),y&&(Object.setPrototypeOf?Object.setPrototypeOf(_,y):_.__proto__=y)}var v=["height","width"],m=function(_){h(y,_);function y(){return f(this,y),c(this,(y.__proto__||Object.getPrototypeOf(y)).apply(this,arguments))}return r(y,[{key:"format",value:function(w,b){v.indexOf(w)>-1?b?this.domNode.setAttribute(w,b):this.domNode.removeAttribute(w):s(y.prototype.__proto__||Object.getPrototypeOf(y.prototype),"format",this).call(this,w,b)}}],[{key:"create",value:function(w){var b=s(y.__proto__||Object.getPrototypeOf(y),"create",this).call(this,w);return b.setAttribute("frameborder","0"),b.setAttribute("allowfullscreen",!0),b.setAttribute("src",this.sanitize(w)),b}},{key:"formats",value:function(w){return v.reduce(function(b,k){return w.hasAttribute(k)&&(b[k]=w.getAttribute(k)),b},{})}},{key:"sanitize",value:function(w){return d.default.sanitize(w)}},{key:"value",value:function(w){return w.getAttribute("src")}}]),y}(l.BlockEmbed);m.blotName="video",m.className="ql-video",m.tagName="IFRAME",o.default=m},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.default=o.FormulaBlot=void 0;var r=function(){function w(b,k){for(var T=0;T<k.length;T++){var S=k[T];S.enumerable=S.enumerable||!1,S.configurable=!0,"value"in S&&(S.writable=!0),Object.defineProperty(b,S.key,S)}}return function(b,k,T){return k&&w(b.prototype,k),T&&w(b,T),b}}(),s=function w(b,k,T){b===null&&(b=Function.prototype);var S=Object.getOwnPropertyDescriptor(b,k);if(S===void 0){var x=Object.getPrototypeOf(b);return x===null?void 0:w(x,k,T)}else{if("value"in S)return S.value;var B=S.get;return B===void 0?void 0:B.call(T)}},l=a(35),u=h(l),d=a(5),p=h(d),f=a(9),c=h(f);function h(w){return w&&w.__esModule?w:{default:w}}function v(w,b){if(!(w instanceof b))throw new TypeError("Cannot call a class as a function")}function m(w,b){if(!w)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return b&&(typeof b=="object"||typeof b=="function")?b:w}function _(w,b){if(typeof b!="function"&&b!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof b);w.prototype=Object.create(b&&b.prototype,{constructor:{value:w,enumerable:!1,writable:!0,configurable:!0}}),b&&(Object.setPrototypeOf?Object.setPrototypeOf(w,b):w.__proto__=b)}var y=function(w){_(b,w);function b(){return v(this,b),m(this,(b.__proto__||Object.getPrototypeOf(b)).apply(this,arguments))}return r(b,null,[{key:"create",value:function(T){var S=s(b.__proto__||Object.getPrototypeOf(b),"create",this).call(this,T);return typeof T=="string"&&(window.katex.render(T,S,{throwOnError:!1,errorColor:"#f00"}),S.setAttribute("data-value",T)),S}},{key:"value",value:function(T){return T.getAttribute("data-value")}}]),b}(u.default);y.blotName="formula",y.className="ql-formula",y.tagName="SPAN";var g=function(w){_(b,w),r(b,null,[{key:"register",value:function(){p.default.register(y,!0)}}]);function b(){v(this,b);var k=m(this,(b.__proto__||Object.getPrototypeOf(b)).call(this));if(window.katex==null)throw new Error("Formula module requires KaTeX.");return k}return b}(c.default);o.FormulaBlot=y,o.default=g},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.default=o.CodeToken=o.CodeBlock=void 0;var r=function(){function T(S,x){for(var B=0;B<x.length;B++){var E=x[B];E.enumerable=E.enumerable||!1,E.configurable=!0,"value"in E&&(E.writable=!0),Object.defineProperty(S,E.key,E)}}return function(S,x,B){return x&&T(S.prototype,x),B&&T(S,B),S}}(),s=function T(S,x,B){S===null&&(S=Function.prototype);var E=Object.getOwnPropertyDescriptor(S,x);if(E===void 0){var C=Object.getPrototypeOf(S);return C===null?void 0:T(C,x,B)}else{if("value"in E)return E.value;var O=E.get;return O===void 0?void 0:O.call(B)}},l=a(0),u=m(l),d=a(5),p=m(d),f=a(9),c=m(f),h=a(13),v=m(h);function m(T){return T&&T.__esModule?T:{default:T}}function _(T,S){if(!(T instanceof S))throw new TypeError("Cannot call a class as a function")}function y(T,S){if(!T)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return S&&(typeof S=="object"||typeof S=="function")?S:T}function g(T,S){if(typeof S!="function"&&S!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof S);T.prototype=Object.create(S&&S.prototype,{constructor:{value:T,enumerable:!1,writable:!0,configurable:!0}}),S&&(Object.setPrototypeOf?Object.setPrototypeOf(T,S):T.__proto__=S)}var w=function(T){g(S,T);function S(){return _(this,S),y(this,(S.__proto__||Object.getPrototypeOf(S)).apply(this,arguments))}return r(S,[{key:"replaceWith",value:function(B){this.domNode.textContent=this.domNode.textContent,this.attach(),s(S.prototype.__proto__||Object.getPrototypeOf(S.prototype),"replaceWith",this).call(this,B)}},{key:"highlight",value:function(B){var E=this.domNode.textContent;this.cachedText!==E&&((E.trim().length>0||this.cachedText==null)&&(this.domNode.innerHTML=B(E),this.domNode.normalize(),this.attach()),this.cachedText=E)}}]),S}(v.default);w.className="ql-syntax";var b=new u.default.Attributor.Class("token","hljs",{scope:u.default.Scope.INLINE}),k=function(T){g(S,T),r(S,null,[{key:"register",value:function(){p.default.register(b,!0),p.default.register(w,!0)}}]);function S(x,B){_(this,S);var E=y(this,(S.__proto__||Object.getPrototypeOf(S)).call(this,x,B));if(typeof E.options.highlight!="function")throw new Error("Syntax module requires highlight.js. Please include the library on the page before Quill.");var C=null;return E.quill.on(p.default.events.SCROLL_OPTIMIZE,function(){clearTimeout(C),C=setTimeout(function(){E.highlight(),C=null},E.options.interval)}),E.highlight(),E}return r(S,[{key:"highlight",value:function(){var B=this;if(!this.quill.selection.composing){this.quill.update(p.default.sources.USER);var E=this.quill.getSelection();this.quill.scroll.descendants(w).forEach(function(C){C.highlight(B.options.highlight)}),this.quill.update(p.default.sources.SILENT),E!=null&&this.quill.setSelection(E,p.default.sources.SILENT)}}}]),S}(c.default);k.DEFAULTS={highlight:function(){return window.hljs==null?null:function(T){var S=window.hljs.highlightAuto(T);return S.value}}(),interval:1e3},o.CodeBlock=w,o.CodeToken=b,o.default=k},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=3 x2=15 y1=9 y2=9></line> <line class=ql-stroke x1=3 x2=13 y1=14 y2=14></line> <line class=ql-stroke x1=3 x2=9 y1=4 y2=4></line> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=15 x2=3 y1=9 y2=9></line> <line class=ql-stroke x1=14 x2=4 y1=14 y2=14></line> <line class=ql-stroke x1=12 x2=6 y1=4 y2=4></line> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=15 x2=3 y1=9 y2=9></line> <line class=ql-stroke x1=15 x2=5 y1=14 y2=14></line> <line class=ql-stroke x1=15 x2=9 y1=4 y2=4></line> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=15 x2=3 y1=9 y2=9></line> <line class=ql-stroke x1=15 x2=3 y1=14 y2=14></line> <line class=ql-stroke x1=15 x2=3 y1=4 y2=4></line> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <g class="ql-fill ql-color-label"> <polygon points="6 6.868 6 6 5 6 5 7 5.942 7 6 6.868"></polygon> <rect height=1 width=1 x=4 y=4></rect> <polygon points="6.817 5 6 5 6 6 6.38 6 6.817 5"></polygon> <rect height=1 width=1 x=2 y=6></rect> <rect height=1 width=1 x=3 y=5></rect> <rect height=1 width=1 x=4 y=7></rect> <polygon points="4 11.439 4 11 3 11 3 12 3.755 12 4 11.439"></polygon> <rect height=1 width=1 x=2 y=12></rect> <rect height=1 width=1 x=2 y=9></rect> <rect height=1 width=1 x=2 y=15></rect> <polygon points="4.63 10 4 10 4 11 4.192 11 4.63 10"></polygon> <rect height=1 width=1 x=3 y=8></rect> <path d=M10.832,4.2L11,4.582V4H10.708A1.948,1.948,0,0,1,10.832,4.2Z></path> <path d=M7,4.582L7.168,4.2A1.929,1.929,0,0,1,7.292,4H7V4.582Z></path> <path d=M8,13H7.683l-0.351.8a1.933,1.933,0,0,1-.124.2H8V13Z></path> <rect height=1 width=1 x=12 y=2></rect> <rect height=1 width=1 x=11 y=3></rect> <path d=M9,3H8V3.282A1.985,1.985,0,0,1,9,3Z></path> <rect height=1 width=1 x=2 y=3></rect> <rect height=1 width=1 x=6 y=2></rect> <rect height=1 width=1 x=3 y=2></rect> <rect height=1 width=1 x=5 y=3></rect> <rect height=1 width=1 x=9 y=2></rect> <rect height=1 width=1 x=15 y=14></rect> <polygon points="13.447 10.174 13.469 10.225 13.472 10.232 13.808 11 14 11 14 10 13.37 10 13.447 10.174"></polygon> <rect height=1 width=1 x=13 y=7></rect> <rect height=1 width=1 x=15 y=5></rect> <rect height=1 width=1 x=14 y=6></rect> <rect height=1 width=1 x=15 y=8></rect> <rect height=1 width=1 x=14 y=9></rect> <path d=M3.775,14H3v1H4V14.314A1.97,1.97,0,0,1,3.775,14Z></path> <rect height=1 width=1 x=14 y=3></rect> <polygon points="12 6.868 12 6 11.62 6 12 6.868"></polygon> <rect height=1 width=1 x=15 y=2></rect> <rect height=1 width=1 x=12 y=5></rect> <rect height=1 width=1 x=13 y=4></rect> <polygon points="12.933 9 13 9 13 8 12.495 8 12.933 9"></polygon> <rect height=1 width=1 x=9 y=14></rect> <rect height=1 width=1 x=8 y=15></rect> <path d=M6,14.926V15H7V14.316A1.993,1.993,0,0,1,6,14.926Z></path> <rect height=1 width=1 x=5 y=15></rect> <path d=M10.668,13.8L10.317,13H10v1h0.792A1.947,1.947,0,0,1,10.668,13.8Z></path> <rect height=1 width=1 x=11 y=15></rect> <path d=M14.332,12.2a1.99,1.99,0,0,1,.166.8H15V12H14.245Z></path> <rect height=1 width=1 x=14 y=15></rect> <rect height=1 width=1 x=15 y=11></rect> </g> <polyline class=ql-stroke points="5.5 13 9 5 12.5 13"></polyline> <line class=ql-stroke x1=11.63 x2=6.38 y1=11 y2=11></line> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <rect class="ql-fill ql-stroke" height=3 width=3 x=4 y=5></rect> <rect class="ql-fill ql-stroke" height=3 width=3 x=11 y=5></rect> <path class="ql-even ql-fill ql-stroke" d=M7,8c0,4.031-3,5-3,5></path> <path class="ql-even ql-fill ql-stroke" d=M14,8c0,4.031-3,5-3,5></path> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <path class=ql-stroke d=M5,4H9.5A2.5,2.5,0,0,1,12,6.5v0A2.5,2.5,0,0,1,9.5,9H5A0,0,0,0,1,5,9V4A0,0,0,0,1,5,4Z></path> <path class=ql-stroke d=M5,9h5.5A2.5,2.5,0,0,1,13,11.5v0A2.5,2.5,0,0,1,10.5,14H5a0,0,0,0,1,0,0V9A0,0,0,0,1,5,9Z></path> </svg>'},function(e,o){e.exports='<svg class="" viewbox="0 0 18 18"> <line class=ql-stroke x1=5 x2=13 y1=3 y2=3></line> <line class=ql-stroke x1=6 x2=9.35 y1=12 y2=3></line> <line class=ql-stroke x1=11 x2=15 y1=11 y2=15></line> <line class=ql-stroke x1=15 x2=11 y1=11 y2=15></line> <rect class=ql-fill height=1 rx=0.5 ry=0.5 width=7 x=2 y=14></rect> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <line class="ql-color-label ql-stroke ql-transparent" x1=3 x2=15 y1=15 y2=15></line> <polyline class=ql-stroke points="5.5 11 9 3 12.5 11"></polyline> <line class=ql-stroke x1=11.63 x2=6.38 y1=9 y2=9></line> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <polygon class="ql-stroke ql-fill" points="3 11 5 9 3 7 3 11"></polygon> <line class="ql-stroke ql-fill" x1=15 x2=11 y1=4 y2=4></line> <path class=ql-fill d=M11,3a3,3,0,0,0,0,6h1V3H11Z></path> <rect class=ql-fill height=11 width=1 x=11 y=4></rect> <rect class=ql-fill height=11 width=1 x=13 y=4></rect> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <polygon class="ql-stroke ql-fill" points="15 12 13 10 15 8 15 12"></polygon> <line class="ql-stroke ql-fill" x1=9 x2=5 y1=4 y2=4></line> <path class=ql-fill d=M5,3A3,3,0,0,0,5,9H6V3H5Z></path> <rect class=ql-fill height=11 width=1 x=5 y=4></rect> <rect class=ql-fill height=11 width=1 x=7 y=4></rect> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <path class=ql-fill d=M14,16H4a1,1,0,0,1,0-2H14A1,1,0,0,1,14,16Z /> <path class=ql-fill d=M14,4H4A1,1,0,0,1,4,2H14A1,1,0,0,1,14,4Z /> <rect class=ql-fill x=3 y=6 width=12 height=6 rx=1 ry=1 /> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <path class=ql-fill d=M13,16H5a1,1,0,0,1,0-2h8A1,1,0,0,1,13,16Z /> <path class=ql-fill d=M13,4H5A1,1,0,0,1,5,2h8A1,1,0,0,1,13,4Z /> <rect class=ql-fill x=2 y=6 width=14 height=6 rx=1 ry=1 /> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <path class=ql-fill d=M15,8H13a1,1,0,0,1,0-2h2A1,1,0,0,1,15,8Z /> <path class=ql-fill d=M15,12H13a1,1,0,0,1,0-2h2A1,1,0,0,1,15,12Z /> <path class=ql-fill d=M15,16H5a1,1,0,0,1,0-2H15A1,1,0,0,1,15,16Z /> <path class=ql-fill d=M15,4H5A1,1,0,0,1,5,2H15A1,1,0,0,1,15,4Z /> <rect class=ql-fill x=2 y=6 width=8 height=6 rx=1 ry=1 /> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <path class=ql-fill d=M5,8H3A1,1,0,0,1,3,6H5A1,1,0,0,1,5,8Z /> <path class=ql-fill d=M5,12H3a1,1,0,0,1,0-2H5A1,1,0,0,1,5,12Z /> <path class=ql-fill d=M13,16H3a1,1,0,0,1,0-2H13A1,1,0,0,1,13,16Z /> <path class=ql-fill d=M13,4H3A1,1,0,0,1,3,2H13A1,1,0,0,1,13,4Z /> <rect class=ql-fill x=8 y=6 width=8 height=6 rx=1 ry=1 transform="translate(24 18) rotate(-180)"/> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <path class=ql-fill d=M11.759,2.482a2.561,2.561,0,0,0-3.53.607A7.656,7.656,0,0,0,6.8,6.2C6.109,9.188,5.275,14.677,4.15,14.927a1.545,1.545,0,0,0-1.3-.933A0.922,0.922,0,0,0,2,15.036S1.954,16,4.119,16s3.091-2.691,3.7-5.553c0.177-.826.36-1.726,0.554-2.6L8.775,6.2c0.381-1.421.807-2.521,1.306-2.676a1.014,1.014,0,0,0,1.02.56A0.966,0.966,0,0,0,11.759,2.482Z></path> <rect class=ql-fill height=1.6 rx=0.8 ry=0.8 width=5 x=5.15 y=6.2></rect> <path class=ql-fill d=M13.663,12.027a1.662,1.662,0,0,1,.266-0.276q0.193,0.069.456,0.138a2.1,2.1,0,0,0,.535.069,1.075,1.075,0,0,0,.767-0.3,1.044,1.044,0,0,0,.314-0.8,0.84,0.84,0,0,0-.238-0.619,0.8,0.8,0,0,0-.594-0.239,1.154,1.154,0,0,0-.781.3,4.607,4.607,0,0,0-.781,1q-0.091.15-.218,0.346l-0.246.38c-0.068-.288-0.137-0.582-0.212-0.885-0.459-1.847-2.494-.984-2.941-0.8-0.482.2-.353,0.647-0.094,0.529a0.869,0.869,0,0,1,1.281.585c0.217,0.751.377,1.436,0.527,2.038a5.688,5.688,0,0,1-.362.467,2.69,2.69,0,0,1-.264.271q-0.221-.08-0.471-0.147a2.029,2.029,0,0,0-.522-0.066,1.079,1.079,0,0,0-.768.3A1.058,1.058,0,0,0,9,15.131a0.82,0.82,0,0,0,.832.852,1.134,1.134,0,0,0,.787-0.3,5.11,5.11,0,0,0,.776-0.993q0.141-.219.215-0.34c0.046-.076.122-0.194,0.223-0.346a2.786,2.786,0,0,0,.918,1.726,2.582,2.582,0,0,0,2.376-.185c0.317-.181.212-0.565,0-0.494A0.807,0.807,0,0,1,14.176,15a5.159,5.159,0,0,1-.913-2.446l0,0Q13.487,12.24,13.663,12.027Z></path> </svg>'},function(e,o){e.exports='<svg viewBox="0 0 18 18"> <path class=ql-fill d=M10,4V14a1,1,0,0,1-2,0V10H3v4a1,1,0,0,1-2,0V4A1,1,0,0,1,3,4V8H8V4a1,1,0,0,1,2,0Zm6.06787,9.209H14.98975V7.59863a.54085.54085,0,0,0-.605-.60547h-.62744a1.01119,1.01119,0,0,0-.748.29688L11.645,8.56641a.5435.5435,0,0,0-.022.8584l.28613.30762a.53861.53861,0,0,0,.84717.0332l.09912-.08789a1.2137,1.2137,0,0,0,.2417-.35254h.02246s-.01123.30859-.01123.60547V13.209H12.041a.54085.54085,0,0,0-.605.60547v.43945a.54085.54085,0,0,0,.605.60547h4.02686a.54085.54085,0,0,0,.605-.60547v-.43945A.54085.54085,0,0,0,16.06787,13.209Z /> </svg>'},function(e,o){e.exports='<svg viewBox="0 0 18 18"> <path class=ql-fill d=M16.73975,13.81445v.43945a.54085.54085,0,0,1-.605.60547H11.855a.58392.58392,0,0,1-.64893-.60547V14.0127c0-2.90527,3.39941-3.42187,3.39941-4.55469a.77675.77675,0,0,0-.84717-.78125,1.17684,1.17684,0,0,0-.83594.38477c-.2749.26367-.561.374-.85791.13184l-.4292-.34082c-.30811-.24219-.38525-.51758-.1543-.81445a2.97155,2.97155,0,0,1,2.45361-1.17676,2.45393,2.45393,0,0,1,2.68408,2.40918c0,2.45312-3.1792,2.92676-3.27832,3.93848h2.79443A.54085.54085,0,0,1,16.73975,13.81445ZM9,3A.99974.99974,0,0,0,8,4V8H3V4A1,1,0,0,0,1,4V14a1,1,0,0,0,2,0V10H8v4a1,1,0,0,0,2,0V4A.99974.99974,0,0,0,9,3Z /> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=7 x2=13 y1=4 y2=4></line> <line class=ql-stroke x1=5 x2=11 y1=14 y2=14></line> <line class=ql-stroke x1=8 x2=10 y1=14 y2=4></line> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <rect class=ql-stroke height=10 width=12 x=3 y=4></rect> <circle class=ql-fill cx=6 cy=7 r=1></circle> <polyline class="ql-even ql-fill" points="5 12 5 11 7 9 8 10 11 7 13 9 13 12 5 12"></polyline> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=3 x2=15 y1=14 y2=14></line> <line class=ql-stroke x1=3 x2=15 y1=4 y2=4></line> <line class=ql-stroke x1=9 x2=15 y1=9 y2=9></line> <polyline class="ql-fill ql-stroke" points="3 7 3 11 5 9 3 7"></polyline> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=3 x2=15 y1=14 y2=14></line> <line class=ql-stroke x1=3 x2=15 y1=4 y2=4></line> <line class=ql-stroke x1=9 x2=15 y1=9 y2=9></line> <polyline class=ql-stroke points="5 7 5 11 3 9 5 7"></polyline> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=7 x2=11 y1=7 y2=11></line> <path class="ql-even ql-stroke" d=M8.9,4.577a3.476,3.476,0,0,1,.36,4.679A3.476,3.476,0,0,1,4.577,8.9C3.185,7.5,2.035,6.4,4.217,4.217S7.5,3.185,8.9,4.577Z></path> <path class="ql-even ql-stroke" d=M13.423,9.1a3.476,3.476,0,0,0-4.679-.36,3.476,3.476,0,0,0,.36,4.679c1.392,1.392,2.5,2.542,4.679.36S14.815,10.5,13.423,9.1Z></path> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=7 x2=15 y1=4 y2=4></line> <line class=ql-stroke x1=7 x2=15 y1=9 y2=9></line> <line class=ql-stroke x1=7 x2=15 y1=14 y2=14></line> <line class="ql-stroke ql-thin" x1=2.5 x2=4.5 y1=5.5 y2=5.5></line> <path class=ql-fill d=M3.5,6A0.5,0.5,0,0,1,3,5.5V3.085l-0.276.138A0.5,0.5,0,0,1,2.053,3c-0.124-.247-0.023-0.324.224-0.447l1-.5A0.5,0.5,0,0,1,4,2.5v3A0.5,0.5,0,0,1,3.5,6Z></path> <path class="ql-stroke ql-thin" d=M4.5,10.5h-2c0-.234,1.85-1.076,1.85-2.234A0.959,0.959,0,0,0,2.5,8.156></path> <path class="ql-stroke ql-thin" d=M2.5,14.846a0.959,0.959,0,0,0,1.85-.109A0.7,0.7,0,0,0,3.75,14a0.688,0.688,0,0,0,.6-0.736,0.959,0.959,0,0,0-1.85-.109></path> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=6 x2=15 y1=4 y2=4></line> <line class=ql-stroke x1=6 x2=15 y1=9 y2=9></line> <line class=ql-stroke x1=6 x2=15 y1=14 y2=14></line> <line class=ql-stroke x1=3 x2=3 y1=4 y2=4></line> <line class=ql-stroke x1=3 x2=3 y1=9 y2=9></line> <line class=ql-stroke x1=3 x2=3 y1=14 y2=14></line> </svg>'},function(e,o){e.exports='<svg class="" viewbox="0 0 18 18"> <line class=ql-stroke x1=9 x2=15 y1=4 y2=4></line> <polyline class=ql-stroke points="3 4 4 5 6 3"></polyline> <line class=ql-stroke x1=9 x2=15 y1=14 y2=14></line> <polyline class=ql-stroke points="3 14 4 15 6 13"></polyline> <line class=ql-stroke x1=9 x2=15 y1=9 y2=9></line> <polyline class=ql-stroke points="3 9 4 10 6 8"></polyline> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <path class=ql-fill d=M15.5,15H13.861a3.858,3.858,0,0,0,1.914-2.975,1.8,1.8,0,0,0-1.6-1.751A1.921,1.921,0,0,0,12.021,11.7a0.50013,0.50013,0,1,0,.957.291h0a0.914,0.914,0,0,1,1.053-.725,0.81,0.81,0,0,1,.744.762c0,1.076-1.16971,1.86982-1.93971,2.43082A1.45639,1.45639,0,0,0,12,15.5a0.5,0.5,0,0,0,.5.5h3A0.5,0.5,0,0,0,15.5,15Z /> <path class=ql-fill d=M9.65,5.241a1,1,0,0,0-1.409.108L6,7.964,3.759,5.349A1,1,0,0,0,2.192,6.59178Q2.21541,6.6213,2.241,6.649L4.684,9.5,2.241,12.35A1,1,0,0,0,3.71,13.70722q0.02557-.02768.049-0.05722L6,11.036,8.241,13.65a1,1,0,1,0,1.567-1.24277Q9.78459,12.3777,9.759,12.35L7.316,9.5,9.759,6.651A1,1,0,0,0,9.65,5.241Z /> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <path class=ql-fill d=M15.5,7H13.861a4.015,4.015,0,0,0,1.914-2.975,1.8,1.8,0,0,0-1.6-1.751A1.922,1.922,0,0,0,12.021,3.7a0.5,0.5,0,1,0,.957.291,0.917,0.917,0,0,1,1.053-.725,0.81,0.81,0,0,1,.744.762c0,1.077-1.164,1.925-1.934,2.486A1.423,1.423,0,0,0,12,7.5a0.5,0.5,0,0,0,.5.5h3A0.5,0.5,0,0,0,15.5,7Z /> <path class=ql-fill d=M9.651,5.241a1,1,0,0,0-1.41.108L6,7.964,3.759,5.349a1,1,0,1,0-1.519,1.3L4.683,9.5,2.241,12.35a1,1,0,1,0,1.519,1.3L6,11.036,8.241,13.65a1,1,0,0,0,1.519-1.3L7.317,9.5,9.759,6.651A1,1,0,0,0,9.651,5.241Z /> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <line class="ql-stroke ql-thin" x1=15.5 x2=2.5 y1=8.5 y2=9.5></line> <path class=ql-fill d=M9.007,8C6.542,7.791,6,7.519,6,6.5,6,5.792,7.283,5,9,5c1.571,0,2.765.679,2.969,1.309a1,1,0,0,0,1.9-.617C13.356,4.106,11.354,3,9,3,6.2,3,4,4.538,4,6.5a3.2,3.2,0,0,0,.5,1.843Z></path> <path class=ql-fill d=M8.984,10C11.457,10.208,12,10.479,12,11.5c0,0.708-1.283,1.5-3,1.5-1.571,0-2.765-.679-2.969-1.309a1,1,0,1,0-1.9.617C4.644,13.894,6.646,15,9,15c2.8,0,5-1.538,5-3.5a3.2,3.2,0,0,0-.5-1.843Z></path> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <path class=ql-stroke d=M5,3V9a4.012,4.012,0,0,0,4,4H9a4.012,4.012,0,0,0,4-4V3></path> <rect class=ql-fill height=1 rx=0.5 ry=0.5 width=12 x=3 y=15></rect> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <rect class=ql-stroke height=12 width=12 x=3 y=3></rect> <rect class=ql-fill height=12 width=1 x=5 y=3></rect> <rect class=ql-fill height=12 width=1 x=12 y=3></rect> <rect class=ql-fill height=2 width=8 x=5 y=8></rect> <rect class=ql-fill height=1 width=3 x=3 y=5></rect> <rect class=ql-fill height=1 width=3 x=3 y=7></rect> <rect class=ql-fill height=1 width=3 x=3 y=10></rect> <rect class=ql-fill height=1 width=3 x=3 y=12></rect> <rect class=ql-fill height=1 width=3 x=12 y=5></rect> <rect class=ql-fill height=1 width=3 x=12 y=7></rect> <rect class=ql-fill height=1 width=3 x=12 y=10></rect> <rect class=ql-fill height=1 width=3 x=12 y=12></rect> </svg>'},function(e,o){e.exports='<svg viewbox="0 0 18 18"> <polygon class=ql-stroke points="7 11 9 13 11 11 7 11"></polygon> <polygon class=ql-stroke points="7 7 9 5 11 7 7 7"></polygon> </svg>'},function(e,o,a){Object.defineProperty(o,"__esModule",{value:!0}),o.default=o.BubbleTooltip=void 0;var r=function S(x,B,E){x===null&&(x=Function.prototype);var C=Object.getOwnPropertyDescriptor(x,B);if(C===void 0){var O=Object.getPrototypeOf(x);return O===null?void 0:S(O,B,E)}else{if("value"in C)return C.value;var N=C.get;return N===void 0?void 0:N.call(E)}},s=function(){function S(x,B){for(var E=0;E<B.length;E++){var C=B[E];C.enumerable=C.enumerable||!1,C.configurable=!0,"value"in C&&(C.writable=!0),Object.defineProperty(x,C.key,C)}}return function(x,B,E){return B&&S(x.prototype,B),E&&S(x,E),x}}(),l=a(3),u=_(l),d=a(8),p=_(d),f=a(43),c=_(f),h=a(15),v=a(41),m=_(v);function _(S){return S&&S.__esModule?S:{default:S}}function y(S,x){if(!(S instanceof x))throw new TypeError("Cannot call a class as a function")}function g(S,x){if(!S)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return x&&(typeof x=="object"||typeof x=="function")?x:S}function w(S,x){if(typeof x!="function"&&x!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof x);S.prototype=Object.create(x&&x.prototype,{constructor:{value:S,enumerable:!1,writable:!0,configurable:!0}}),x&&(Object.setPrototypeOf?Object.setPrototypeOf(S,x):S.__proto__=x)}var b=[["bold","italic","link"],[{header:1},{header:2},"blockquote"]],k=function(S){w(x,S);function x(B,E){y(this,x),E.modules.toolbar!=null&&E.modules.toolbar.container==null&&(E.modules.toolbar.container=b);var C=g(this,(x.__proto__||Object.getPrototypeOf(x)).call(this,B,E));return C.quill.container.classList.add("ql-bubble"),C}return s(x,[{key:"extendToolbar",value:function(E){this.tooltip=new T(this.quill,this.options.bounds),this.tooltip.root.appendChild(E.container),this.buildButtons([].slice.call(E.container.querySelectorAll("button")),m.default),this.buildPickers([].slice.call(E.container.querySelectorAll("select")),m.default)}}]),x}(c.default);k.DEFAULTS=(0,u.default)(!0,{},c.default.DEFAULTS,{modules:{toolbar:{handlers:{link:function(x){x?this.quill.theme.tooltip.edit():this.quill.format("link",!1)}}}}});var T=function(S){w(x,S);function x(B,E){y(this,x);var C=g(this,(x.__proto__||Object.getPrototypeOf(x)).call(this,B,E));return C.quill.on(p.default.events.EDITOR_CHANGE,function(O,N,R,q){if(O===p.default.events.SELECTION_CHANGE)if(N!=null&&N.length>0&&q===p.default.sources.USER){C.show(),C.root.style.left="0px",C.root.style.width="",C.root.style.width=C.root.offsetWidth+"px";var W=C.quill.getLines(N.index,N.length);if(W.length===1)C.position(C.quill.getBounds(N));else{var Y=W[W.length-1],re=C.quill.getIndex(Y),K=Math.min(Y.length()-1,N.index+N.length-re),V=C.quill.getBounds(new h.Range(re,K));C.position(V)}}else document.activeElement!==C.textbox&&C.quill.hasFocus()&&C.hide()}),C}return s(x,[{key:"listen",value:function(){var E=this;r(x.prototype.__proto__||Object.getPrototypeOf(x.prototype),"listen",this).call(this),this.root.querySelector(".ql-close").addEventListener("click",function(){E.root.classList.remove("ql-editing")}),this.quill.on(p.default.events.SCROLL_OPTIMIZE,function(){setTimeout(function(){if(!E.root.classList.contains("ql-hidden")){var C=E.quill.getSelection();C!=null&&E.position(E.quill.getBounds(C))}},1)})}},{key:"cancel",value:function(){this.show()}},{key:"position",value:function(E){var C=r(x.prototype.__proto__||Object.getPrototypeOf(x.prototype),"position",this).call(this,E),O=this.root.querySelector(".ql-tooltip-arrow");if(O.style.marginLeft="",C===0)return C;O.style.marginLeft=-1*C-O.offsetWidth/2+"px"}}]),x}(f.BaseTooltip);T.TEMPLATE=['<span class="ql-tooltip-arrow"></span>','<div class="ql-tooltip-editor">','<input type="text" data-formula="e=mc^2" data-link="https://quilljs.com" data-video="Embed URL">','<a class="ql-close"></a>',"</div>"].join(""),o.BubbleTooltip=T,o.default=k},function(e,o,a){e.exports=a(63)}]).default})})($a);var N1=$a.exports;const xe=Cn(N1);var $t=-1,bt=1,lt=0;function Dn(t,n,e,o){if(t===n)return t?[[lt,t]]:[];if(e!=null){var a=M1(t,n,e);if(a)return a}var r=fi(t,n),s=t.substring(0,r);t=t.substring(r),n=n.substring(r),r=hi(t,n);var l=t.substring(t.length-r);t=t.substring(0,t.length-r),n=n.substring(0,n.length-r);var u=A1(t,n);return s&&u.unshift([lt,s]),l&&u.push([lt,l]),ka(u,o),u}function A1(t,n){var e;if(!t)return[[bt,n]];if(!n)return[[$t,t]];var o=t.length>n.length?t:n,a=t.length>n.length?n:t,r=o.indexOf(a);if(r!==-1)return e=[[bt,o.substring(0,r)],[lt,a],[bt,o.substring(r+a.length)]],t.length>n.length&&(e[0][0]=e[2][0]=$t),e;if(a.length===1)return[[$t,t],[bt,n]];var s=P1(t,n);if(s){var l=s[0],u=s[1],d=s[2],p=s[3],f=s[4],c=Dn(l,d),h=Dn(u,p);return c.concat([[lt,f]],h)}return D1(t,n)}function D1(t,n){for(var e=t.length,o=n.length,a=Math.ceil((e+o)/2),r=a,s=2*a,l=new Array(s),u=new Array(s),d=0;d<s;d++)l[d]=-1,u[d]=-1;l[r+1]=0,u[r+1]=0;for(var p=e-o,f=p%2!==0,c=0,h=0,v=0,m=0,_=0;_<a;_++){for(var y=-_+c;y<=_-h;y+=2){var g=r+y,w;y===-_||y!==_&&l[g-1]<l[g+1]?w=l[g+1]:w=l[g-1]+1;for(var b=w-y;w<e&&b<o&&t.charAt(w)===n.charAt(b);)w++,b++;if(l[g]=w,w>e)h+=2;else if(b>o)c+=2;else if(f){var k=r+p-y;if(k>=0&&k<s&&u[k]!==-1){var T=e-u[k];if(w>=T)return wa(t,n,w,b)}}}for(var S=-_+v;S<=_-m;S+=2){var k=r+S,T;S===-_||S!==_&&u[k-1]<u[k+1]?T=u[k+1]:T=u[k-1]+1;for(var x=T-S;T<e&&x<o&&t.charAt(e-T-1)===n.charAt(o-x-1);)T++,x++;if(u[k]=T,T>e)m+=2;else if(x>o)v+=2;else if(!f){var g=r+p-S;if(g>=0&&g<s&&l[g]!==-1){var w=l[g],b=r+w-g;if(T=e-T,w>=T)return wa(t,n,w,b)}}}}return[[$t,t],[bt,n]]}function wa(t,n,e,o){var a=t.substring(0,e),r=n.substring(0,o),s=t.substring(e),l=n.substring(o),u=Dn(a,r),d=Dn(s,l);return u.concat(d)}function fi(t,n){if(!t||!n||t.charAt(0)!==n.charAt(0))return 0;for(var e=0,o=Math.min(t.length,n.length),a=o,r=0;e<a;)t.substring(r,a)==n.substring(r,a)?(e=a,r=e):o=a,a=Math.floor((o-e)/2+e);return Ca(t.charCodeAt(a-1))&&a--,a}function hi(t,n){if(!t||!n||t.slice(-1)!==n.slice(-1))return 0;for(var e=0,o=Math.min(t.length,n.length),a=o,r=0;e<a;)t.substring(t.length-a,t.length-r)==n.substring(n.length-a,n.length-r)?(e=a,r=e):o=a,a=Math.floor((o-e)/2+e);return Oa(t.charCodeAt(t.length-a))&&a--,a}function P1(t,n){var e=t.length>n.length?t:n,o=t.length>n.length?n:t;if(e.length<4||o.length*2<e.length)return null;function a(h,v,m){for(var _=h.substring(m,m+Math.floor(h.length/4)),y=-1,g="",w,b,k,T;(y=v.indexOf(_,y+1))!==-1;){var S=fi(h.substring(m),v.substring(y)),x=hi(h.substring(0,m),v.substring(0,y));g.length<x+S&&(g=v.substring(y-x,y)+v.substring(y,y+S),w=h.substring(0,m-x),b=h.substring(m+S),k=v.substring(0,y-x),T=v.substring(y+S))}return g.length*2>=h.length?[w,b,k,T,g]:null}var r=a(e,o,Math.ceil(e.length/4)),s=a(e,o,Math.ceil(e.length/2)),l;if(!r&&!s)return null;s?r?l=r[4].length>s[4].length?r:s:l=s:l=r;var u,d,p,f;t.length>n.length?(u=l[0],d=l[1],p=l[2],f=l[3]):(p=l[0],f=l[1],u=l[2],d=l[3]);var c=l[4];return[u,d,p,f,c]}function ka(t,n){t.push([lt,""]);for(var e=0,o=0,a=0,r="",s="",l;e<t.length;){if(e<t.length-1&&!t[e][1]){t.splice(e,1);continue}switch(t[e][0]){case bt:a++,s+=t[e][1],e++;break;case $t:o++,r+=t[e][1],e++;break;case lt:var u=e-a-o-1;if(n){if(u>=0&&Sa(t[u][1])){var d=t[u][1].slice(-1);if(t[u][1]=t[u][1].slice(0,-1),r=d+r,s=d+s,!t[u][1]){t.splice(u,1),e--;var p=u-1;t[p]&&t[p][0]===bt&&(a++,s=t[p][1]+s,p--),t[p]&&t[p][0]===$t&&(o++,r=t[p][1]+r,p--),u=p}}if(Ea(t[e][1])){var d=t[e][1].charAt(0);t[e][1]=t[e][1].slice(1),r+=d,s+=d}}if(e<t.length-1&&!t[e][1]){t.splice(e,1);break}if(r.length>0||s.length>0){r.length>0&&s.length>0&&(l=fi(s,r),l!==0&&(u>=0?t[u][1]+=s.substring(0,l):(t.splice(0,0,[lt,s.substring(0,l)]),e++),s=s.substring(l),r=r.substring(l)),l=hi(s,r),l!==0&&(t[e][1]=s.substring(s.length-l)+t[e][1],s=s.substring(0,s.length-l),r=r.substring(0,r.length-l)));var f=a+o;r.length===0&&s.length===0?(t.splice(e-f,f),e=e-f):r.length===0?(t.splice(e-f,f,[bt,s]),e=e-f+1):s.length===0?(t.splice(e-f,f,[$t,r]),e=e-f+1):(t.splice(e-f,f,[$t,r],[bt,s]),e=e-f+2)}e!==0&&t[e-1][0]===lt?(t[e-1][1]+=t[e][1],t.splice(e,1)):e++,a=0,o=0,r="",s="";break}}t[t.length-1][1]===""&&t.pop();var c=!1;for(e=1;e<t.length-1;)t[e-1][0]===lt&&t[e+1][0]===lt&&(t[e][1].substring(t[e][1].length-t[e-1][1].length)===t[e-1][1]?(t[e][1]=t[e-1][1]+t[e][1].substring(0,t[e][1].length-t[e-1][1].length),t[e+1][1]=t[e-1][1]+t[e+1][1],t.splice(e-1,1),c=!0):t[e][1].substring(0,t[e+1][1].length)==t[e+1][1]&&(t[e-1][1]+=t[e+1][1],t[e][1]=t[e][1].substring(t[e+1][1].length)+t[e+1][1],t.splice(e+1,1),c=!0)),e++;c&&ka(t,n)}function Ca(t){return t>=55296&&t<=56319}function Oa(t){return t>=56320&&t<=57343}function Ea(t){return Oa(t.charCodeAt(0))}function Sa(t){return Ca(t.charCodeAt(t.length-1))}function I1(t){for(var n=[],e=0;e<t.length;e++)t[e][1].length>0&&n.push(t[e]);return n}function pi(t,n,e,o){return Sa(t)||Ea(o)?null:I1([[lt,t],[$t,n],[bt,e],[lt,o]])}function M1(t,n,e){var o=typeof e=="number"?{index:e,length:0}:e.oldRange,a=typeof e=="number"?null:e.newRange,r=t.length,s=n.length;if(o.length===0&&(a===null||a.length===0)){var l=o.index,u=t.slice(0,l),d=t.slice(l),p=a?a.index:null;e:{var f=l+s-r;if(p!==null&&p!==f||f<0||f>s)break e;var c=n.slice(0,f),h=n.slice(f);if(h!==d)break e;var v=Math.min(l,f),m=u.slice(0,v),_=c.slice(0,v);if(m!==_)break e;var y=u.slice(v),g=c.slice(v);return pi(m,y,g,d)}e:{if(p!==null&&p!==l)break e;var w=l,c=n.slice(0,w),h=n.slice(w);if(c!==u)break e;var b=Math.min(r-w,s-w),k=d.slice(d.length-b),T=h.slice(h.length-b);if(k!==T)break e;var y=d.slice(0,d.length-b),g=h.slice(0,h.length-b);return pi(u,y,g,k)}}if(o.length>0&&a&&a.length===0)e:{var m=t.slice(0,o.index),k=t.slice(o.index+o.length),v=m.length,b=k.length;if(s<v+b)break e;var _=n.slice(0,v),T=n.slice(s-b);if(m!==_||k!==T)break e;var y=t.slice(v,r-b),g=n.slice(v,s-b);return pi(m,y,g,k)}return null}function mr(t,n,e){return Dn(t,n,e,!0)}mr.INSERT=bt,mr.DELETE=$t,mr.EQUAL=lt;var B1=mr,gr={exports:{}};gr.exports,function(t,n){var e=200,o="__lodash_hash_undefined__",a=9007199254740991,r="[object Arguments]",s="[object Array]",l="[object Boolean]",u="[object Date]",d="[object Error]",p="[object Function]",f="[object GeneratorFunction]",c="[object Map]",h="[object Number]",v="[object Object]",m="[object Promise]",_="[object RegExp]",y="[object Set]",g="[object String]",w="[object Symbol]",b="[object WeakMap]",k="[object ArrayBuffer]",T="[object DataView]",S="[object Float32Array]",x="[object Float64Array]",B="[object Int8Array]",E="[object Int16Array]",C="[object Int32Array]",O="[object Uint8Array]",N="[object Uint8ClampedArray]",R="[object Uint16Array]",q="[object Uint32Array]",W=/[\\^$.*+?()[\]{}|]/g,Y=/\w*$/,re=/^\[object .+?Constructor\]$/,K=/^(?:0|[1-9]\d*)$/,V={};V[r]=V[s]=V[k]=V[T]=V[l]=V[u]=V[S]=V[x]=V[B]=V[E]=V[C]=V[c]=V[h]=V[v]=V[_]=V[y]=V[g]=V[w]=V[O]=V[N]=V[R]=V[q]=!0,V[d]=V[p]=V[b]=!1;var D=typeof je=="object"&&je&&je.Object===Object&&je,A=typeof self=="object"&&self&&self.Object===Object&&self,I=D||A||Function("return this")(),U=n&&!n.nodeType&&n,F=U&&!0&&t&&!t.nodeType&&t,L=F&&F.exports===U;function z($,P){return $.set(P[0],P[1]),$}function Z($,P){return $.add(P),$}function J($,P){for(var H=-1,ee=$?$.length:0;++H<ee&&P($[H],H,$)!==!1;);return $}function ne($,P){for(var H=-1,ee=P.length,we=$.length;++H<ee;)$[we+H]=P[H];return $}function ce($,P,H,ee){var we=-1,fe=$?$.length:0;for(ee&&fe&&(H=$[++we]);++we<fe;)H=P(H,$[we],we,$);return H}function he($,P){for(var H=-1,ee=Array($);++H<$;)ee[H]=P(H);return ee}function be($,P){return $==null?void 0:$[P]}function ke($){var P=!1;if($!=null&&typeof $.toString!="function")try{P=!!($+"")}catch{}return P}function Oe($){var P=-1,H=Array($.size);return $.forEach(function(ee,we){H[++P]=[we,ee]}),H}function Re($,P){return function(H){return $(P(H))}}function Be($){var P=-1,H=Array($.size);return $.forEach(function(ee){H[++P]=ee}),H}var Q=Array.prototype,te=Function.prototype,ae=Object.prototype,le=I["__core-js_shared__"],ie=function(){var $=/[^.]+$/.exec(le&&le.keys&&le.keys.IE_PROTO||"");return $?"Symbol(src)_1."+$:""}(),$e=te.toString,me=ae.hasOwnProperty,ve=ae.toString,ze=RegExp("^"+$e.call(me).replace(W,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$"),qe=L?I.Buffer:void 0,Ae=I.Symbol,wt=I.Uint8Array,Ee=Re(Object.getPrototypeOf,Object),rt=Object.create,Jt=ae.propertyIsEnumerable,Mn=Q.splice,Xt=Object.getOwnPropertySymbols,Pe=qe?qe.isBuffer:void 0,zt=Re(Object.keys,Object),kt=vt(I,"DataView"),Pt=vt(I,"Map"),Ze=vt(I,"Promise"),Ct=vt(I,"Set"),it=vt(I,"WeakMap"),It=vt(Object,"create"),Qt=ot(kt),M=ot(Pt),j=ot(Ze),G=ot(Ct),X=ot(it),oe=Ae?Ae.prototype:void 0,se=oe?oe.valueOf:void 0;function ye($){var P=-1,H=$?$.length:0;for(this.clear();++P<H;){var ee=$[P];this.set(ee[0],ee[1])}}function ue(){this.__data__=It?It(null):{}}function Ce($){return this.has($)&&delete this.__data__[$]}function de($){var P=this.__data__;if(It){var H=P[$];return H===o?void 0:H}return me.call(P,$)?P[$]:void 0}function ge($){var P=this.__data__;return It?P[$]!==void 0:me.call(P,$)}function Te($,P){var H=this.__data__;return H[$]=It&&P===void 0?o:P,this}ye.prototype.clear=ue,ye.prototype.delete=Ce,ye.prototype.get=de,ye.prototype.has=ge,ye.prototype.set=Te;function Me($){var P=-1,H=$?$.length:0;for(this.clear();++P<H;){var ee=$[P];this.set(ee[0],ee[1])}}function Ge(){this.__data__=[]}function Mt($){var P=this.__data__,H=hn(P,$);if(H<0)return!1;var ee=P.length-1;return H==ee?P.pop():Mn.call(P,H,1),!0}function Ot($){var P=this.__data__,H=hn(P,$);return H<0?void 0:P[H][1]}function Bn($){return hn(this.__data__,$)>-1}function en($,P){var H=this.__data__,ee=hn(H,$);return ee<0?H.push([$,P]):H[ee][1]=P,this}Me.prototype.clear=Ge,Me.prototype.delete=Mt,Me.prototype.get=Ot,Me.prototype.has=Bn,Me.prototype.set=en;function Ue($){var P=-1,H=$?$.length:0;for(this.clear();++P<H;){var ee=$[P];this.set(ee[0],ee[1])}}function Ln(){this.__data__={hash:new ye,map:new(Pt||Me),string:new ye}}function Rn($){return nn(this,$).delete($)}function jn($){return nn(this,$).get($)}function Vn($){return nn(this,$).has($)}function qn($,P){return nn(this,$).set($,P),this}Ue.prototype.clear=Ln,Ue.prototype.delete=Rn,Ue.prototype.get=jn,Ue.prototype.has=Vn,Ue.prototype.set=qn;function Je($){this.__data__=new Me($)}function Fn(){this.__data__=new Me}function vi($){return this.__data__.delete($)}function _i($){return this.__data__.get($)}function $i($){return this.__data__.has($)}function wi($,P){var H=this.__data__;if(H instanceof Me){var ee=H.__data__;if(!Pt||ee.length<e-1)return ee.push([$,P]),this;H=this.__data__=new Ue(ee)}return H.set($,P),this}Je.prototype.clear=Fn,Je.prototype.delete=vi,Je.prototype.get=_i,Je.prototype.has=$i,Je.prototype.set=wi;function fn($,P){var H=Kn($)||mn($)?he($.length,String):[],ee=H.length,we=!!ee;for(var fe in $)(P||me.call($,fe))&&!(we&&(fe=="length"||Bi(fe,ee)))&&H.push(fe);return H}function wr($,P,H){var ee=$[P];(!(me.call($,P)&&Sr(ee,H))||H===void 0&&!(P in $))&&($[P]=H)}function hn($,P){for(var H=$.length;H--;)if(Sr($[H][0],P))return H;return-1}function Et($,P){return $&&Un(P,Wn(P),$)}function Hn($,P,H,ee,we,fe,Se){var Ne;if(ee&&(Ne=fe?ee($,we,fe,Se):ee($)),Ne!==void 0)return Ne;if(!xt($))return $;var Fe=Kn($);if(Fe){if(Ne=Ii($),!P)return Ai($,Ne)}else{var Ie=Lt($),Xe=Ie==p||Ie==f;if(xr($))return pn($,P);if(Ie==v||Ie==r||Xe&&!fe){if(ke($))return fe?$:{};if(Ne=St(Xe?{}:$),!P)return Di($,Et(Ne,$))}else{if(!V[Ie])return fe?$:{};Ne=Mi($,Ie,Hn,P)}}Se||(Se=new Je);var ct=Se.get($);if(ct)return ct;if(Se.set($,Ne),!Fe)var He=H?Pi($):Wn($);return J(He||$,function(Qe,We){He&&(We=Qe,Qe=$[We]),wr(Ne,We,Hn(Qe,P,H,ee,We,$,Se))}),Ne}function ki($){return xt($)?rt($):{}}function Ci($,P,H){var ee=P($);return Kn($)?ee:ne(ee,H($))}function Oi($){return ve.call($)}function Ei($){if(!xt($)||Ri($))return!1;var P=Gn($)||ke($)?ze:re;return P.test(ot($))}function Si($){if(!Or($))return zt($);var P=[];for(var H in Object($))me.call($,H)&&H!="constructor"&&P.push(H);return P}function pn($,P){if(P)return $.slice();var H=new $.constructor($.length);return $.copy(H),H}function zn($){var P=new $.constructor($.byteLength);return new wt(P).set(new wt($)),P}function tn($,P){var H=P?zn($.buffer):$.buffer;return new $.constructor(H,$.byteOffset,$.byteLength)}function kr($,P,H){var ee=P?H(Oe($),!0):Oe($);return ce(ee,z,new $.constructor)}function Cr($){var P=new $.constructor($.source,Y.exec($));return P.lastIndex=$.lastIndex,P}function xi($,P,H){var ee=P?H(Be($),!0):Be($);return ce(ee,Z,new $.constructor)}function Ti($){return se?Object(se.call($)):{}}function Ni($,P){var H=P?zn($.buffer):$.buffer;return new $.constructor(H,$.byteOffset,$.length)}function Ai($,P){var H=-1,ee=$.length;for(P||(P=Array(ee));++H<ee;)P[H]=$[H];return P}function Un($,P,H,ee){H||(H={});for(var we=-1,fe=P.length;++we<fe;){var Se=P[we],Ne=ee?ee(H[Se],$[Se],Se,H,$):void 0;wr(H,Se,Ne===void 0?$[Se]:Ne)}return H}function Di($,P){return Un($,Bt($),P)}function Pi($){return Ci($,Wn,Bt)}function nn($,P){var H=$.__data__;return Li(P)?H[typeof P=="string"?"string":"hash"]:H.map}function vt($,P){var H=be($,P);return Ei(H)?H:void 0}var Bt=Xt?Re(Xt,Object):Vi,Lt=Oi;(kt&&Lt(new kt(new ArrayBuffer(1)))!=T||Pt&&Lt(new Pt)!=c||Ze&&Lt(Ze.resolve())!=m||Ct&&Lt(new Ct)!=y||it&&Lt(new it)!=b)&&(Lt=function($){var P=ve.call($),H=P==v?$.constructor:void 0,ee=H?ot(H):void 0;if(ee)switch(ee){case Qt:return T;case M:return c;case j:return m;case G:return y;case X:return b}return P});function Ii($){var P=$.length,H=$.constructor(P);return P&&typeof $[0]=="string"&&me.call($,"index")&&(H.index=$.index,H.input=$.input),H}function St($){return typeof $.constructor=="function"&&!Or($)?ki(Ee($)):{}}function Mi($,P,H,ee){var we=$.constructor;switch(P){case k:return zn($);case l:case u:return new we(+$);case T:return tn($,ee);case S:case x:case B:case E:case C:case O:case N:case R:case q:return Ni($,ee);case c:return kr($,ee,H);case h:case g:return new we($);case _:return Cr($);case y:return xi($,ee,H);case w:return Ti($)}}function Bi($,P){return P=P??a,!!P&&(typeof $=="number"||K.test($))&&$>-1&&$%1==0&&$<P}function Li($){var P=typeof $;return P=="string"||P=="number"||P=="symbol"||P=="boolean"?$!=="__proto__":$===null}function Ri($){return!!ie&&ie in $}function Or($){var P=$&&$.constructor,H=typeof P=="function"&&P.prototype||ae;return $===H}function ot($){if($!=null){try{return $e.call($)}catch{}try{return $+""}catch{}}return""}function Er($){return Hn($,!0,!0)}function Sr($,P){return $===P||$!==$&&P!==P}function mn($){return ji($)&&me.call($,"callee")&&(!Jt.call($,"callee")||ve.call($)==r)}var Kn=Array.isArray;function gn($){return $!=null&&Tr($.length)&&!Gn($)}function ji($){return Nr($)&&gn($)}var xr=Pe||qi;function Gn($){var P=xt($)?ve.call($):"";return P==p||P==f}function Tr($){return typeof $=="number"&&$>-1&&$%1==0&&$<=a}function xt($){var P=typeof $;return!!$&&(P=="object"||P=="function")}function Nr($){return!!$&&typeof $=="object"}function Wn($){return gn($)?fn($):Si($)}function Vi(){return[]}function qi(){return!1}t.exports=Er}(gr,gr.exports);var xa=gr.exports,yr={exports:{}};yr.exports,function(t,n){var e=200,o="__lodash_hash_undefined__",a=1,r=2,s=9007199254740991,l="[object Arguments]",u="[object Array]",d="[object AsyncFunction]",p="[object Boolean]",f="[object Date]",c="[object Error]",h="[object Function]",v="[object GeneratorFunction]",m="[object Map]",_="[object Number]",y="[object Null]",g="[object Object]",w="[object Promise]",b="[object Proxy]",k="[object RegExp]",T="[object Set]",S="[object String]",x="[object Symbol]",B="[object Undefined]",E="[object WeakMap]",C="[object ArrayBuffer]",O="[object DataView]",N="[object Float32Array]",R="[object Float64Array]",q="[object Int8Array]",W="[object Int16Array]",Y="[object Int32Array]",re="[object Uint8Array]",K="[object Uint8ClampedArray]",V="[object Uint16Array]",D="[object Uint32Array]",A=/[\\^$.*+?()[\]{}|]/g,I=/^\[object .+?Constructor\]$/,U=/^(?:0|[1-9]\d*)$/,F={};F[N]=F[R]=F[q]=F[W]=F[Y]=F[re]=F[K]=F[V]=F[D]=!0,F[l]=F[u]=F[C]=F[p]=F[O]=F[f]=F[c]=F[h]=F[m]=F[_]=F[g]=F[k]=F[T]=F[S]=F[E]=!1;var L=typeof je=="object"&&je&&je.Object===Object&&je,z=typeof self=="object"&&self&&self.Object===Object&&self,Z=L||z||Function("return this")(),J=n&&!n.nodeType&&n,ne=J&&!0&&t&&!t.nodeType&&t,ce=ne&&ne.exports===J,he=ce&&L.process,be=function(){try{return he&&he.binding&&he.binding("util")}catch{}}(),ke=be&&be.isTypedArray;function Oe($,P){for(var H=-1,ee=$==null?0:$.length,we=0,fe=[];++H<ee;){var Se=$[H];P(Se,H,$)&&(fe[we++]=Se)}return fe}function Re($,P){for(var H=-1,ee=P.length,we=$.length;++H<ee;)$[we+H]=P[H];return $}function Be($,P){for(var H=-1,ee=$==null?0:$.length;++H<ee;)if(P($[H],H,$))return!0;return!1}function Q($,P){for(var H=-1,ee=Array($);++H<$;)ee[H]=P(H);return ee}function te($){return function(P){return $(P)}}function ae($,P){return $.has(P)}function le($,P){return $==null?void 0:$[P]}function ie($){var P=-1,H=Array($.size);return $.forEach(function(ee,we){H[++P]=[we,ee]}),H}function $e($,P){return function(H){return $(P(H))}}function me($){var P=-1,H=Array($.size);return $.forEach(function(ee){H[++P]=ee}),H}var ve=Array.prototype,ze=Function.prototype,qe=Object.prototype,Ae=Z["__core-js_shared__"],wt=ze.toString,Ee=qe.hasOwnProperty,rt=function(){var $=/[^.]+$/.exec(Ae&&Ae.keys&&Ae.keys.IE_PROTO||"");return $?"Symbol(src)_1."+$:""}(),Jt=qe.toString,Mn=RegExp("^"+wt.call(Ee).replace(A,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$"),Xt=ce?Z.Buffer:void 0,Pe=Z.Symbol,zt=Z.Uint8Array,kt=qe.propertyIsEnumerable,Pt=ve.splice,Ze=Pe?Pe.toStringTag:void 0,Ct=Object.getOwnPropertySymbols,it=Xt?Xt.isBuffer:void 0,It=$e(Object.keys,Object),Qt=Bt(Z,"DataView"),M=Bt(Z,"Map"),j=Bt(Z,"Promise"),G=Bt(Z,"Set"),X=Bt(Z,"WeakMap"),oe=Bt(Object,"create"),se=ot(Qt),ye=ot(M),ue=ot(j),Ce=ot(G),de=ot(X),ge=Pe?Pe.prototype:void 0,Te=ge?ge.valueOf:void 0;function Me($){var P=-1,H=$==null?0:$.length;for(this.clear();++P<H;){var ee=$[P];this.set(ee[0],ee[1])}}function Ge(){this.__data__=oe?oe(null):{},this.size=0}function Mt($){var P=this.has($)&&delete this.__data__[$];return this.size-=P?1:0,P}function Ot($){var P=this.__data__;if(oe){var H=P[$];return H===o?void 0:H}return Ee.call(P,$)?P[$]:void 0}function Bn($){var P=this.__data__;return oe?P[$]!==void 0:Ee.call(P,$)}function en($,P){var H=this.__data__;return this.size+=this.has($)?0:1,H[$]=oe&&P===void 0?o:P,this}Me.prototype.clear=Ge,Me.prototype.delete=Mt,Me.prototype.get=Ot,Me.prototype.has=Bn,Me.prototype.set=en;function Ue($){var P=-1,H=$==null?0:$.length;for(this.clear();++P<H;){var ee=$[P];this.set(ee[0],ee[1])}}function Ln(){this.__data__=[],this.size=0}function Rn($){var P=this.__data__,H=pn(P,$);if(H<0)return!1;var ee=P.length-1;return H==ee?P.pop():Pt.call(P,H,1),--this.size,!0}function jn($){var P=this.__data__,H=pn(P,$);return H<0?void 0:P[H][1]}function Vn($){return pn(this.__data__,$)>-1}function qn($,P){var H=this.__data__,ee=pn(H,$);return ee<0?(++this.size,H.push([$,P])):H[ee][1]=P,this}Ue.prototype.clear=Ln,Ue.prototype.delete=Rn,Ue.prototype.get=jn,Ue.prototype.has=Vn,Ue.prototype.set=qn;function Je($){var P=-1,H=$==null?0:$.length;for(this.clear();++P<H;){var ee=$[P];this.set(ee[0],ee[1])}}function Fn(){this.size=0,this.__data__={hash:new Me,map:new(M||Ue),string:new Me}}function vi($){var P=vt(this,$).delete($);return this.size-=P?1:0,P}function _i($){return vt(this,$).get($)}function $i($){return vt(this,$).has($)}function wi($,P){var H=vt(this,$),ee=H.size;return H.set($,P),this.size+=H.size==ee?0:1,this}Je.prototype.clear=Fn,Je.prototype.delete=vi,Je.prototype.get=_i,Je.prototype.has=$i,Je.prototype.set=wi;function fn($){var P=-1,H=$==null?0:$.length;for(this.__data__=new Je;++P<H;)this.add($[P])}function wr($){return this.__data__.set($,o),this}function hn($){return this.__data__.has($)}fn.prototype.add=fn.prototype.push=wr,fn.prototype.has=hn;function Et($){var P=this.__data__=new Ue($);this.size=P.size}function Hn(){this.__data__=new Ue,this.size=0}function ki($){var P=this.__data__,H=P.delete($);return this.size=P.size,H}function Ci($){return this.__data__.get($)}function Oi($){return this.__data__.has($)}function Ei($,P){var H=this.__data__;if(H instanceof Ue){var ee=H.__data__;if(!M||ee.length<e-1)return ee.push([$,P]),this.size=++H.size,this;H=this.__data__=new Je(ee)}return H.set($,P),this.size=H.size,this}Et.prototype.clear=Hn,Et.prototype.delete=ki,Et.prototype.get=Ci,Et.prototype.has=Oi,Et.prototype.set=Ei;function Si($,P){var H=mn($),ee=!H&&Sr($),we=!H&&!ee&&gn($),fe=!H&&!ee&&!we&&Nr($),Se=H||ee||we||fe,Ne=Se?Q($.length,String):[],Fe=Ne.length;for(var Ie in $)(P||Ee.call($,Ie))&&!(Se&&(Ie=="length"||we&&(Ie=="offset"||Ie=="parent")||fe&&(Ie=="buffer"||Ie=="byteLength"||Ie=="byteOffset")||Mi(Ie,Fe)))&&Ne.push(Ie);return Ne}function pn($,P){for(var H=$.length;H--;)if(Er($[H][0],P))return H;return-1}function zn($,P,H){var ee=P($);return mn($)?ee:Re(ee,H($))}function tn($){return $==null?$===void 0?B:y:Ze&&Ze in Object($)?Lt($):Or($)}function kr($){return xt($)&&tn($)==l}function Cr($,P,H,ee,we){return $===P?!0:$==null||P==null||!xt($)&&!xt(P)?$!==$&&P!==P:xi($,P,H,ee,Cr,we)}function xi($,P,H,ee,we,fe){var Se=mn($),Ne=mn(P),Fe=Se?u:St($),Ie=Ne?u:St(P);Fe=Fe==l?g:Fe,Ie=Ie==l?g:Ie;var Xe=Fe==g,ct=Ie==g,He=Fe==Ie;if(He&&gn($)){if(!gn(P))return!1;Se=!0,Xe=!1}if(He&&!Xe)return fe||(fe=new Et),Se||Nr($)?Un($,P,H,ee,we,fe):Di($,P,Fe,H,ee,we,fe);if(!(H&a)){var Qe=Xe&&Ee.call($,"__wrapped__"),We=ct&&Ee.call(P,"__wrapped__");if(Qe||We){var Ut=Qe?$.value():$,Rt=We?P.value():P;return fe||(fe=new Et),we(Ut,Rt,H,ee,fe)}}return He?(fe||(fe=new Et),Pi($,P,H,ee,we,fe)):!1}function Ti($){if(!Tr($)||Li($))return!1;var P=xr($)?Mn:I;return P.test(ot($))}function Ni($){return xt($)&&Gn($.length)&&!!F[tn($)]}function Ai($){if(!Ri($))return It($);var P=[];for(var H in Object($))Ee.call($,H)&&H!="constructor"&&P.push(H);return P}function Un($,P,H,ee,we,fe){var Se=H&a,Ne=$.length,Fe=P.length;if(Ne!=Fe&&!(Se&&Fe>Ne))return!1;var Ie=fe.get($);if(Ie&&fe.get(P))return Ie==P;var Xe=-1,ct=!0,He=H&r?new fn:void 0;for(fe.set($,P),fe.set(P,$);++Xe<Ne;){var Qe=$[Xe],We=P[Xe];if(ee)var Ut=Se?ee(We,Qe,Xe,P,$,fe):ee(Qe,We,Xe,$,P,fe);if(Ut!==void 0){if(Ut)continue;ct=!1;break}if(He){if(!Be(P,function(Rt,rn){if(!ae(He,rn)&&(Qe===Rt||we(Qe,Rt,H,ee,fe)))return He.push(rn)})){ct=!1;break}}else if(!(Qe===We||we(Qe,We,H,ee,fe))){ct=!1;break}}return fe.delete($),fe.delete(P),ct}function Di($,P,H,ee,we,fe,Se){switch(H){case O:if($.byteLength!=P.byteLength||$.byteOffset!=P.byteOffset)return!1;$=$.buffer,P=P.buffer;case C:return!($.byteLength!=P.byteLength||!fe(new zt($),new zt(P)));case p:case f:case _:return Er(+$,+P);case c:return $.name==P.name&&$.message==P.message;case k:case S:return $==P+"";case m:var Ne=ie;case T:var Fe=ee&a;if(Ne||(Ne=me),$.size!=P.size&&!Fe)return!1;var Ie=Se.get($);if(Ie)return Ie==P;ee|=r,Se.set($,P);var Xe=Un(Ne($),Ne(P),ee,we,fe,Se);return Se.delete($),Xe;case x:if(Te)return Te.call($)==Te.call(P)}return!1}function Pi($,P,H,ee,we,fe){var Se=H&a,Ne=nn($),Fe=Ne.length,Ie=nn(P),Xe=Ie.length;if(Fe!=Xe&&!Se)return!1;for(var ct=Fe;ct--;){var He=Ne[ct];if(!(Se?He in P:Ee.call(P,He)))return!1}var Qe=fe.get($);if(Qe&&fe.get(P))return Qe==P;var We=!0;fe.set($,P),fe.set(P,$);for(var Ut=Se;++ct<Fe;){He=Ne[ct];var Rt=$[He],rn=P[He];if(ee)var ja=Se?ee(rn,Rt,He,P,$,fe):ee(Rt,rn,He,$,P,fe);if(!(ja===void 0?Rt===rn||we(Rt,rn,H,ee,fe):ja)){We=!1;break}Ut||(Ut=He=="constructor")}if(We&&!Ut){var Ar=$.constructor,Dr=P.constructor;Ar!=Dr&&"constructor"in $&&"constructor"in P&&!(typeof Ar=="function"&&Ar instanceof Ar&&typeof Dr=="function"&&Dr instanceof Dr)&&(We=!1)}return fe.delete($),fe.delete(P),We}function nn($){return zn($,Wn,Ii)}function vt($,P){var H=$.__data__;return Bi(P)?H[typeof P=="string"?"string":"hash"]:H.map}function Bt($,P){var H=le($,P);return Ti(H)?H:void 0}function Lt($){var P=Ee.call($,Ze),H=$[Ze];try{$[Ze]=void 0;var ee=!0}catch{}var we=Jt.call($);return ee&&(P?$[Ze]=H:delete $[Ze]),we}var Ii=Ct?function($){return $==null?[]:($=Object($),Oe(Ct($),function(P){return kt.call($,P)}))}:Vi,St=tn;(Qt&&St(new Qt(new ArrayBuffer(1)))!=O||M&&St(new M)!=m||j&&St(j.resolve())!=w||G&&St(new G)!=T||X&&St(new X)!=E)&&(St=function($){var P=tn($),H=P==g?$.constructor:void 0,ee=H?ot(H):"";if(ee)switch(ee){case se:return O;case ye:return m;case ue:return w;case Ce:return T;case de:return E}return P});function Mi($,P){return P=P??s,!!P&&(typeof $=="number"||U.test($))&&$>-1&&$%1==0&&$<P}function Bi($){var P=typeof $;return P=="string"||P=="number"||P=="symbol"||P=="boolean"?$!=="__proto__":$===null}function Li($){return!!rt&&rt in $}function Ri($){var P=$&&$.constructor,H=typeof P=="function"&&P.prototype||qe;return $===H}function Or($){return Jt.call($)}function ot($){if($!=null){try{return wt.call($)}catch{}try{return $+""}catch{}}return""}function Er($,P){return $===P||$!==$&&P!==P}var Sr=kr(function(){return arguments}())?kr:function($){return xt($)&&Ee.call($,"callee")&&!kt.call($,"callee")},mn=Array.isArray;function Kn($){return $!=null&&Gn($.length)&&!xr($)}var gn=it||qi;function ji($,P){return Cr($,P)}function xr($){if(!Tr($))return!1;var P=tn($);return P==h||P==v||P==d||P==b}function Gn($){return typeof $=="number"&&$>-1&&$%1==0&&$<=s}function Tr($){var P=typeof $;return $!=null&&(P=="object"||P=="function")}function xt($){return $!=null&&typeof $=="object"}var Nr=ke?te(ke):Ni;function Wn($){return Kn($)?Si($):Ai($)}function Vi(){return[]}function qi(){return!1}t.exports=ji}(yr,yr.exports);var Ta=yr.exports,mi={},Na=je&&je.__importDefault||function(t){return t&&t.__esModule?t:{default:t}};Object.defineProperty(mi,"__esModule",{value:!0});var L1=Na(xa),R1=Na(Ta),gi;(function(t){function n(r,s,l){r===void 0&&(r={}),s===void 0&&(s={}),typeof r!="object"&&(r={}),typeof s!="object"&&(s={});var u=L1.default(s);l||(u=Object.keys(u).reduce(function(p,f){return u[f]!=null&&(p[f]=u[f]),p},{}));for(var d in r)r[d]!==void 0&&s[d]===void 0&&(u[d]=r[d]);return Object.keys(u).length>0?u:void 0}t.compose=n;function e(r,s){r===void 0&&(r={}),s===void 0&&(s={}),typeof r!="object"&&(r={}),typeof s!="object"&&(s={});var l=Object.keys(r).concat(Object.keys(s)).reduce(function(u,d){return R1.default(r[d],s[d])||(u[d]=s[d]===void 0?null:s[d]),u},{});return Object.keys(l).length>0?l:void 0}t.diff=e;function o(r,s){r===void 0&&(r={}),s===void 0&&(s={}),r=r||{};var l=Object.keys(s).reduce(function(u,d){return s[d]!==r[d]&&r[d]!==void 0&&(u[d]=s[d]),u},{});return Object.keys(r).reduce(function(u,d){return r[d]!==s[d]&&s[d]===void 0&&(u[d]=null),u},l)}t.invert=o;function a(r,s,l){if(l===void 0&&(l=!1),typeof r!="object")return s;if(typeof s=="object"){if(!l)return s;var u=Object.keys(s).reduce(function(d,p){return r[p]===void 0&&(d[p]=s[p]),d},{});return Object.keys(u).length>0?u:void 0}}t.transform=a})(gi||(gi={})),mi.default=gi;var br={},vr={},Aa;function j1(){if(Aa)return vr;Aa=1;var t=je&&je.__importDefault||function(o){return o&&o.__esModule?o:{default:o}};Object.defineProperty(vr,"__esModule",{value:!0});var n=t(Pa()),e=function(){function o(a){this.ops=a,this.index=0,this.offset=0}return o.prototype.hasNext=function(){return this.peekLength()<1/0},o.prototype.next=function(a){a||(a=1/0);var r=this.ops[this.index];if(r){var s=this.offset,l=n.default.length(r);if(a>=l-s?(a=l-s,this.index+=1,this.offset=0):this.offset+=a,typeof r.delete=="number")return{delete:a};var u={};return r.attributes&&(u.attributes=r.attributes),typeof r.retain=="number"?u.retain=a:typeof r.insert=="string"?u.insert=r.insert.substr(s,a):u.insert=r.insert,u}else return{retain:1/0}},o.prototype.peek=function(){return this.ops[this.index]},o.prototype.peekLength=function(){return this.ops[this.index]?n.default.length(this.ops[this.index])-this.offset:1/0},o.prototype.peekType=function(){return this.ops[this.index]?typeof this.ops[this.index].delete=="number"?"delete":typeof this.ops[this.index].retain=="number"?"retain":"insert":"retain"},o.prototype.rest=function(){if(this.hasNext()){if(this.offset===0)return this.ops.slice(this.index);var a=this.offset,r=this.index,s=this.next(),l=this.ops.slice(this.index);return this.offset=a,this.index=r,[s].concat(l)}else return[]},o}();return vr.default=e,vr}var Da;function Pa(){if(Da)return br;Da=1;var t=je&&je.__importDefault||function(o){return o&&o.__esModule?o:{default:o}};Object.defineProperty(br,"__esModule",{value:!0});var n=t(j1()),e;return function(o){function a(s){return new n.default(s)}o.iterator=a;function r(s){return typeof s.delete=="number"?s.delete:typeof s.retain=="number"?s.retain:typeof s.insert=="string"?s.insert.length:1}o.length=r}(e||(e={})),br.default=e,br}var Pn=je&&je.__importDefault||function(t){return t&&t.__esModule?t:{default:t}},_r=Pn(B1),V1=Pn(xa),yi=Pn(Ta),In=Pn(mi),Ke=Pn(Pa()),q1=String.fromCharCode(0),F1=function(){function t(n){Array.isArray(n)?this.ops=n:n!=null&&Array.isArray(n.ops)?this.ops=n.ops:this.ops=[]}return t.prototype.insert=function(n,e){var o={};return typeof n=="string"&&n.length===0?this:(o.insert=n,e!=null&&typeof e=="object"&&Object.keys(e).length>0&&(o.attributes=e),this.push(o))},t.prototype.delete=function(n){return n<=0?this:this.push({delete:n})},t.prototype.retain=function(n,e){if(n<=0)return this;var o={retain:n};return e!=null&&typeof e=="object"&&Object.keys(e).length>0&&(o.attributes=e),this.push(o)},t.prototype.push=function(n){var e=this.ops.length,o=this.ops[e-1];if(n=V1.default(n),typeof o=="object"){if(typeof n.delete=="number"&&typeof o.delete=="number")return this.ops[e-1]={delete:o.delete+n.delete},this;if(typeof o.delete=="number"&&n.insert!=null&&(e-=1,o=this.ops[e-1],typeof o!="object"))return this.ops.unshift(n),this;if(yi.default(n.attributes,o.attributes)){if(typeof n.insert=="string"&&typeof o.insert=="string")return this.ops[e-1]={insert:o.insert+n.insert},typeof n.attributes=="object"&&(this.ops[e-1].attributes=n.attributes),this;if(typeof n.retain=="number"&&typeof o.retain=="number")return this.ops[e-1]={retain:o.retain+n.retain},typeof n.attributes=="object"&&(this.ops[e-1].attributes=n.attributes),this}}return e===this.ops.length?this.ops.push(n):this.ops.splice(e,0,n),this},t.prototype.chop=function(){var n=this.ops[this.ops.length-1];return n&&n.retain&&!n.attributes&&this.ops.pop(),this},t.prototype.filter=function(n){return this.ops.filter(n)},t.prototype.forEach=function(n){this.ops.forEach(n)},t.prototype.map=function(n){return this.ops.map(n)},t.prototype.partition=function(n){var e=[],o=[];return this.forEach(function(a){var r=n(a)?e:o;r.push(a)}),[e,o]},t.prototype.reduce=function(n,e){return this.ops.reduce(n,e)},t.prototype.changeLength=function(){return this.reduce(function(n,e){return e.insert?n+Ke.default.length(e):e.delete?n-e.delete:n},0)},t.prototype.length=function(){return this.reduce(function(n,e){return n+Ke.default.length(e)},0)},t.prototype.slice=function(n,e){n===void 0&&(n=0),e===void 0&&(e=1/0);for(var o=[],a=Ke.default.iterator(this.ops),r=0;r<e&&a.hasNext();){var s=void 0;r<n?s=a.next(n-r):(s=a.next(e-r),o.push(s)),r+=Ke.default.length(s)}return new t(o)},t.prototype.compose=function(n){var e=Ke.default.iterator(this.ops),o=Ke.default.iterator(n.ops),a=[],r=o.peek();if(r!=null&&typeof r.retain=="number"&&r.attributes==null){for(var s=r.retain;e.peekType()==="insert"&&e.peekLength()<=s;)s-=e.peekLength(),a.push(e.next());r.retain-s>0&&o.next(r.retain-s)}for(var l=new t(a);e.hasNext()||o.hasNext();)if(o.peekType()==="insert")l.push(o.next());else if(e.peekType()==="delete")l.push(e.next());else{var u=Math.min(e.peekLength(),o.peekLength()),d=e.next(u),p=o.next(u);if(typeof p.retain=="number"){var f={};typeof d.retain=="number"?f.retain=u:f.insert=d.insert;var c=In.default.compose(d.attributes,p.attributes,typeof d.retain=="number");if(c&&(f.attributes=c),l.push(f),!o.hasNext()&&yi.default(l.ops[l.ops.length-1],f)){var h=new t(e.rest());return l.concat(h).chop()}}else typeof p.delete=="number"&&typeof d.retain=="number"&&l.push(p)}return l.chop()},t.prototype.concat=function(n){var e=new t(this.ops.slice());return n.ops.length>0&&(e.push(n.ops[0]),e.ops=e.ops.concat(n.ops.slice(1))),e},t.prototype.diff=function(n,e){if(this.ops===n.ops)return new t;var o=[this,n].map(function(u){return u.map(function(d){if(d.insert!=null)return typeof d.insert=="string"?d.insert:q1;var p=u===n?"on":"with";throw new Error("diff() called "+p+" non-document")}).join("")}),a=new t,r=_r.default(o[0],o[1],e),s=Ke.default.iterator(this.ops),l=Ke.default.iterator(n.ops);return r.forEach(function(u){for(var d=u[1].length;d>0;){var p=0;switch(u[0]){case _r.default.INSERT:p=Math.min(l.peekLength(),d),a.push(l.next(p));break;case _r.default.DELETE:p=Math.min(d,s.peekLength()),s.next(p),a.delete(p);break;case _r.default.EQUAL:p=Math.min(s.peekLength(),l.peekLength(),d);var f=s.next(p),c=l.next(p);yi.default(f.insert,c.insert)?a.retain(p,In.default.diff(f.attributes,c.attributes)):a.push(c).delete(p);break}d-=p}}),a.chop()},t.prototype.eachLine=function(n,e){e===void 0&&(e=`
|
|
132
|
+
`);for(var o=Ke.default.iterator(this.ops),a=new t,r=0;o.hasNext();){if(o.peekType()!=="insert")return;var s=o.peek(),l=Ke.default.length(s)-o.peekLength(),u=typeof s.insert=="string"?s.insert.indexOf(e,l)-l:-1;if(u<0)a.push(o.next());else if(u>0)a.push(o.next(u));else{if(n(a,o.next(1).attributes||{},r)===!1)return;r+=1,a=new t}}a.length()>0&&n(a,{},r)},t.prototype.invert=function(n){var e=new t;return this.reduce(function(o,a){if(a.insert)e.delete(Ke.default.length(a));else{if(a.retain&&a.attributes==null)return e.retain(a.retain),o+a.retain;if(a.delete||a.retain&&a.attributes){var r=a.delete||a.retain,s=n.slice(o,o+r);return s.forEach(function(l){a.delete?e.push(l):a.retain&&a.attributes&&e.retain(Ke.default.length(l),In.default.invert(a.attributes,l.attributes))}),o+r}}return o},0),e.chop()},t.prototype.transform=function(n,e){if(e===void 0&&(e=!1),e=!!e,typeof n=="number")return this.transformPosition(n,e);for(var o=n,a=Ke.default.iterator(this.ops),r=Ke.default.iterator(o.ops),s=new t;a.hasNext()||r.hasNext();)if(a.peekType()==="insert"&&(e||r.peekType()!=="insert"))s.retain(Ke.default.length(a.next()));else if(r.peekType()==="insert")s.push(r.next());else{var l=Math.min(a.peekLength(),r.peekLength()),u=a.next(l),d=r.next(l);if(u.delete)continue;d.delete?s.push(d):s.retain(l,In.default.transform(u.attributes,d.attributes,e))}return s.chop()},t.prototype.transformPosition=function(n,e){e===void 0&&(e=!1),e=!!e;for(var o=Ke.default.iterator(this.ops),a=0;o.hasNext()&&a<=n;){var r=o.peekLength(),s=o.peekType();if(o.next(),s==="delete"){n-=Math.min(r,n-a);continue}else s==="insert"&&(a<n||!e)&&(n+=r);a+=r}return n},t.Op=Ke.default,t.AttributeMap=In.default,t}(),H1=F1;const z1=Cn(H1);/*!
|
|
130
133
|
* VueQuill @vueup/vue-quill v1.2.0
|
|
131
134
|
* https://vueup.github.io/vue-quill/
|
|
132
135
|
*
|
|
@@ -136,38 +139,38 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
|
|
|
136
139
|
* Copyright (c) 2023 Ahmad Luthfi Masruri
|
|
137
140
|
* Released under the MIT license
|
|
138
141
|
* Date: 2023-05-12T08:44:03.742Z
|
|
139
|
-
*/const
|
|
142
|
+
*/const Ia={essential:[[{header:[1,2,3,4,5,6,!1]}],["bold","italic","underline"],[{list:"ordered"},{list:"bullet"},{align:[]}],["blockquote","code-block","link"],[{color:[]},"clean"]],minimal:[[{header:1},{header:2}],["bold","italic","underline"],[{list:"ordered"},{list:"bullet"},{align:[]}]],full:[["bold","italic","underline","strike"],["blockquote","code-block"],[{header:1},{header:2}],[{list:"ordered"},{list:"bullet"}],[{script:"sub"},{script:"super"}],[{indent:"-1"},{indent:"+1"}],[{direction:"rtl"}],[{size:["small",!1,"large","huge"]}],[{header:[1,2,3,4,5,6,!1]}],[{color:[]},{background:[]}],[{font:[]}],[{align:[]}],["link","video","image"],["clean"]]},U1=i.defineComponent({name:"QuillEditor",inheritAttrs:!1,props:{content:{type:[String,Object]},contentType:{type:String,default:"delta",validator:t=>["delta","html","text"].includes(t)},enable:{type:Boolean,default:!0},readOnly:{type:Boolean,default:!1},placeholder:{type:String,required:!1},theme:{type:String,default:"snow",validator:t=>["snow","bubble",""].includes(t)},toolbar:{type:[String,Array,Object],required:!1,validator:t=>typeof t=="string"&&t!==""?t.charAt(0)==="#"?!0:Object.keys(Ia).indexOf(t)!==-1:!0},modules:{type:Object,required:!1},options:{type:Object,required:!1},globalOptions:{type:Object,required:!1}},emits:["textChange","selectionChange","editorChange","update:content","focus","blur","ready"],setup:(t,n)=>{i.onMounted(()=>{r()}),i.onBeforeUnmount(()=>{e=null});let e,o;const a=i.ref(),r=()=>{var C;if(a.value){if(o=s(),t.modules)if(Array.isArray(t.modules))for(const O of t.modules)xe.register(`modules/${O.name}`,O.module);else xe.register(`modules/${t.modules.name}`,t.modules.module);e=new xe(a.value,o),w(t.content),e.on("text-change",f),e.on("selection-change",h),e.on("editor-change",v),t.theme!=="bubble"&&a.value.classList.remove("ql-bubble"),t.theme!=="snow"&&a.value.classList.remove("ql-snow"),(C=e.getModule("toolbar"))===null||C===void 0||C.container.addEventListener("mousedown",O=>{O.preventDefault()}),n.emit("ready",e)}},s=()=>{const C={};if(t.theme!==""&&(C.theme=t.theme),t.readOnly&&(C.readOnly=t.readOnly),t.placeholder&&(C.placeholder=t.placeholder),t.toolbar&&t.toolbar!==""&&(C.modules={toolbar:(()=>{if(typeof t.toolbar=="object")return t.toolbar;if(typeof t.toolbar=="string")return t.toolbar.charAt(0)==="#"?t.toolbar:Ia[t.toolbar]})()}),t.modules){const O=(()=>{var N,R;const q={};if(Array.isArray(t.modules))for(const W of t.modules)q[W.name]=(N=W.options)!==null&&N!==void 0?N:{};else q[t.modules.name]=(R=t.modules.options)!==null&&R!==void 0?R:{};return q})();C.modules=Object.assign({},C.modules,O)}return Object.assign({},t.globalOptions,t.options,C)},l=C=>typeof C=="object"&&C?C.slice():C,u=C=>Object.values(C.ops).some(O=>!O.retain||Object.keys(O).length!==1);let d;const p=C=>{if(typeof d==typeof C){if(C===d)return!0;if(typeof C=="object"&&C&&typeof d=="object"&&d)return!u(d.diff(C))}return!1},f=(C,O,N)=>{d=l(g()),p(t.content)||n.emit("update:content",d),n.emit("textChange",{delta:C,oldContents:O,source:N})},c=i.ref(),h=(C,O,N)=>{c.value=!!(e!=null&&e.hasFocus()),n.emit("selectionChange",{range:C,oldRange:O,source:N})};i.watch(c,C=>{C?n.emit("focus",a):n.emit("blur",a)});const v=(...C)=>{C[0]==="text-change"&&n.emit("editorChange",{name:C[0],delta:C[1],oldContents:C[2],source:C[3]}),C[0]==="selection-change"&&n.emit("editorChange",{name:C[0],range:C[1],oldRange:C[2],source:C[3]})},m=()=>a.value,_=()=>{var C;return(C=e==null?void 0:e.getModule("toolbar"))===null||C===void 0?void 0:C.container},y=()=>{if(e)return e;throw`The quill editor hasn't been instantiated yet,
|
|
140
143
|
make sure to call this method when the editor ready
|
|
141
|
-
or use v-on:ready="onReady(quill)" event instead.`},
|
|
144
|
+
or use v-on:ready="onReady(quill)" event instead.`},g=(C,O)=>t.contentType==="html"?T():t.contentType==="text"?b(C,O):e==null?void 0:e.getContents(C,O),w=(C,O="api")=>{const N=C||(t.contentType==="delta"?new z1:"");t.contentType==="html"?S(N):t.contentType==="text"?k(N,O):e==null||e.setContents(N,O),d=l(N)},b=(C,O)=>{var N;return(N=e==null?void 0:e.getText(C,O))!==null&&N!==void 0?N:""},k=(C,O="api")=>{e==null||e.setText(C,O)},T=()=>{var C;return(C=e==null?void 0:e.root.innerHTML)!==null&&C!==void 0?C:""},S=C=>{e&&(e.root.innerHTML=C)},x=(C,O="api")=>{const N=e==null?void 0:e.clipboard.convert(C);N&&(e==null||e.setContents(N,O))},B=()=>{e==null||e.focus()},E=()=>{i.nextTick(()=>{var C;!n.slots.toolbar&&e&&((C=e.getModule("toolbar"))===null||C===void 0||C.container.remove()),r()})};return i.watch(()=>t.content,C=>{if(!e||!C||p(C))return;const O=e.getSelection();O&&i.nextTick(()=>e==null?void 0:e.setSelection(O)),w(C)},{deep:!0}),i.watch(()=>t.enable,C=>{e&&e.enable(C)}),{editor:a,getEditor:m,getToolbar:_,getQuill:y,getContents:g,setContents:w,getHTML:T,setHTML:S,pasteHTML:x,focus:B,getText:b,setText:k,reinit:E}},render(){var t,n;return[(n=(t=this.$slots).toolbar)===null||n===void 0?void 0:n.call(t),i.h("div",{ref:"editor",...this.$attrs})]}}),K1=xe.import("formats/list"),G1=xe.import("formats/list/item"),W1=xe.import("parchment");class $r extends G1{format(n,e){n===Zt.blotName&&!e?this.replaceWith(W1.create(this.statics.scope)):super.format(n,e)}clone(){const n=super.clone();return n.domNode.classList.remove("checked"),n}}$r.blotName="alphabet-list-item",$r.tagName="LI";class Zt extends K1{static create(){const n=super.create("bullet");return n.setAttribute("type","a"),n}static formats(){return"bullet"}}Zt.blotName="alphabet-list",Zt.tagName="OL",Zt.className="alphabet-list",Zt.defaultChild="alphabet-list-item",Zt.allowedChildren=[$r];function Y1(t){return new DOMParser().parseFromString(t,"text/html").body.textContent||""}var Ma={exports:{}};(function(t,n){(function(o,a){t.exports=a()})(typeof self<"u"?self:je,function(){return function(e){var o={};function a(r){if(o[r])return o[r].exports;var s=o[r]={i:r,l:!1,exports:{}};return e[r].call(s.exports,s,s.exports,a),s.l=!0,s.exports}return a.m=e,a.c=o,a.d=function(r,s,l){a.o(r,s)||Object.defineProperty(r,s,{configurable:!1,enumerable:!0,get:l})},a.n=function(r){var s=r&&r.__esModule?function(){return r.default}:function(){return r};return a.d(s,"a",s),s},a.o=function(r,s){return Object.prototype.hasOwnProperty.call(r,s)},a.p="",a(a.s=0)}([function(e,o,a){function r(u,d){if(!(u instanceof d))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(o,"__esModule",{value:!0});var s=a(1);function l(u,d){var p=u.import("parchment"),f=s.default(u);f.className=d&&d.className||"ql-placeholder-content",u.register(f);var c=function h(v,m){var _=this;r(this,h),this.quill=v,this.onTextChange=function(y,g,w){if(w===u.sources.USER){var b=_.quill.getContents(),k=b.diff(g),T=k.ops.filter(function(S){return S.insert&&S.insert.placeholder&&S.insert.placeholder.required}).length;T&&_.quill.updateContents(k,u.sources.SILENT)}},this.onClick=function(y){var g=p.find(y.target.parentNode);if(g instanceof f){var w=_.quill.getIndex(g);_.quill.setSelection(w,g.length(),u.sources.USER)}},this.toolbarHandler=function(y){var g=_.quill.getSelection(),w=_.placeholders.filter(function(b){return b.id===y})[0];if(!w)throw new Error("Missing placeholder for "+y);_.quill.deleteText(g.index,g.length),_.quill.insertEmbed(g.index,"placeholder",w,u.sources.USER),_.quill.setSelection(g.index+1,0)},this.placeholders=m.placeholders,f.delimiters=m.delimiters||["{","}"],this.quill.getModule("toolbar").addHandler("placeholder",this.toolbarHandler),this.quill.root.addEventListener("click",this.onClick),this.quill.on("text-change",this.onTextChange)};return c}o.default=l},function(e,o,a){var r=function(){function f(c,h){for(var v=0;v<h.length;v++){var m=h[v];m.enumerable=m.enumerable||!1,m.configurable=!0,"value"in m&&(m.writable=!0),Object.defineProperty(c,m.key,m)}}return function(c,h,v){return h&&f(c.prototype,h),v&&f(c,v),c}}(),s=function f(c,h,v){c===null&&(c=Function.prototype);var m=Object.getOwnPropertyDescriptor(c,h);if(m===void 0){var _=Object.getPrototypeOf(c);return _===null?void 0:f(_,h,v)}else{if("value"in m)return m.value;var y=m.get;return y===void 0?void 0:y.call(v)}};function l(f,c){if(!(f instanceof c))throw new TypeError("Cannot call a class as a function")}function u(f,c){if(!f)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return c&&(typeof c=="object"||typeof c=="function")?c:f}function d(f,c){if(typeof c!="function"&&c!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof c);f.prototype=Object.create(c&&c.prototype,{constructor:{value:f,enumerable:!1,writable:!0,configurable:!0}}),c&&(Object.setPrototypeOf?Object.setPrototypeOf(f,c):f.__proto__=c)}Object.defineProperty(o,"__esModule",{value:!0});function p(f){var c=f.import("blots/embed"),h=function(v){d(m,v);function m(){return l(this,m),u(this,(m.__proto__||Object.getPrototypeOf(m)).apply(this,arguments))}return r(m,[{key:"length",value:function(){return 1}},{key:"deleteAt",value:function(y,g){this.domNode.dataset.required||s(m.prototype.__proto__||Object.getPrototypeOf(m.prototype),"deleteAt",this).call(this,y,g)}}],[{key:"create",value:function(y){var g=s(m.__proto__||Object.getPrototypeOf(m),"create",this).call(this,y);y.required&&g.setAttribute("data-required","true"),g.setAttribute("data-id",y.id),g.setAttribute("data-label",y.label),g.setAttribute("spellcheck","false");var w=m.delimiters,b=typeof w=="string"?""+w+y.label+w:""+w[0]+y.label+(w[1]||w[0]),k=document.createTextNode(b);if(f.version<"1.3"){var T=document.createElement("span");T.setAttribute("contenteditable","false"),T.appendChild(k),g.appendChild(T)}else g.appendChild(k);return g}},{key:"value",value:function(y){return y.dataset}}]),m}(c);return h.blotName="placeholder",h.tagName="span",h}o.default=p}])})})(Ma);var Z1=Ma.exports;const J1=Cn(Z1),Vp="",X1=`
|
|
142
145
|
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
143
146
|
<path d="M6.31836 14.9023V5.09961H9.88672C10.9805 5.09961 11.8213 5.30013 12.4092 5.70117C12.9971 6.10221 13.291 6.66732 13.291 7.39648C13.291 7.92513 13.111 8.3877 12.751 8.78418C12.3955 9.18066 11.9398 9.45638 11.3838 9.61133V9.63867C12.0811 9.72526 12.637 9.98275 13.0518 10.4111C13.471 10.8395 13.6807 11.3613 13.6807 11.9766C13.6807 12.8743 13.3594 13.5876 12.7168 14.1162C12.0742 14.6403 11.1969 14.9023 10.085 14.9023H6.31836ZM8.52637 6.72656V9.05078H9.49707C9.9528 9.05078 10.3105 8.94141 10.5703 8.72266C10.8346 8.49935 10.9668 8.19401 10.9668 7.80664C10.9668 7.08659 10.429 6.72656 9.35352 6.72656H8.52637ZM8.52637 10.6914V13.2754H9.72266C10.2331 13.2754 10.6318 13.1569 10.9189 12.9199C11.2106 12.6829 11.3564 12.3594 11.3564 11.9492C11.3564 11.5573 11.2129 11.2497 10.9258 11.0264C10.6432 10.8031 10.2467 10.6914 9.73633 10.6914H8.52637Z" class="fill" fill="#1A1A1A"/>
|
|
144
147
|
</svg>
|
|
145
|
-
`,
|
|
148
|
+
`,Q1=`
|
|
146
149
|
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
147
150
|
<path d="M9.54492 14.9023H8.36914L10.4404 5.09961H11.6299L9.54492 14.9023Z" class="fill" fill="#1A1A1A"/>
|
|
148
151
|
</svg>
|
|
149
|
-
`,
|
|
152
|
+
`,e0=`
|
|
150
153
|
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
151
154
|
<path d="M13.6475 10.7197C13.6475 13.4723 12.4056 14.8486 9.92188 14.8486C7.54297 14.8486 6.35352 13.5247 6.35352 10.877V4.88184H7.50195V10.8018C7.50195 12.8115 8.34961 13.8164 10.0449 13.8164C11.681 13.8164 12.499 12.8457 12.499 10.9043V4.88184H13.6475V10.7197Z" class="fill" fill="#1A1A1A"/>
|
|
152
155
|
<path d="M5.19141 16.3047H14.8096V17.1182H5.19141V16.3047Z" class="fill" fill="#1A1A1A"/>
|
|
153
156
|
</svg>
|
|
154
|
-
`,
|
|
157
|
+
`,t0=`
|
|
155
158
|
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
156
159
|
<path d="M14.6668 9.99805L5.33594 9.99805" class="stroke" stroke="#1A1A1A" stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round"/>
|
|
157
160
|
<path d="M12.9158 5.33398H8.83776C8.25237 5.33398 6.03696 5.3923 6.50351 7.9583" class="stroke" stroke="#1A1A1A" stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round"/>
|
|
158
161
|
<path d="M6.43941 14.6624H10.5174C11.1028 14.6624 14.0882 14.953 12.3364 10.2886" class="stroke" stroke="#1A1A1A" stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round"/>
|
|
159
162
|
</svg>
|
|
160
|
-
`,
|
|
163
|
+
`,n0=`
|
|
161
164
|
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
162
165
|
<path d="M6.5 11H4.5C3.70435 11 2.94129 10.6839 2.37868 10.1213C1.81607 9.55871 1.5 8.79565 1.5 8C1.5 7.20435 1.81607 6.44129 2.37868 5.87868C2.94129 5.31607 3.70435 5 4.5 5H6.5M9.5 5H11.5C12.2956 5 13.0587 5.31607 13.6213 5.87868C14.1839 6.44129 14.5 7.20435 14.5 8C14.5 8.79565 14.1839 9.55871 13.6213 10.1213C13.0587 10.6839 12.2956 11 11.5 11H9.5M5.10281 8H10.9597" class="stroke" stroke="#1A1A1A" stroke-width="1.125" stroke-linecap="round" stroke-linejoin="round"/>
|
|
163
166
|
</svg>
|
|
164
167
|
|
|
165
|
-
`,
|
|
168
|
+
`,r0=`
|
|
166
169
|
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
167
170
|
<path d="M5 11.5L1 8L5 4.5M11 11.5L15 8L11 4.5M9.5 3L6.5 13" class="stroke" stroke="#1A1A1A" stroke-linecap="round" stroke-linejoin="round"/>
|
|
168
171
|
</svg>
|
|
169
172
|
|
|
170
|
-
`,
|
|
173
|
+
`,i0=`
|
|
171
174
|
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
172
175
|
<rect x="3" y="3" width="14" height="2" rx="1" class="fill" fill="#1A1A1A"/>
|
|
173
176
|
<rect x="3" y="7" width="10" height="2" rx="1" class="fill" fill="#1A1A1A"/>
|
|
@@ -175,14 +178,14 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
|
|
|
175
178
|
<rect x="3" y="15" width="10" height="2" rx="1" class="fill" fill="#1A1A1A"/>
|
|
176
179
|
</svg>
|
|
177
180
|
|
|
178
|
-
`,
|
|
181
|
+
`,o0=`
|
|
179
182
|
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
180
183
|
<rect x="3" y="3" width="14" height="2" rx="1" class="fill" fill="#1A1A1A"/>
|
|
181
184
|
<rect x="5" y="7" width="10" height="2" rx="1" class="fill" fill="#1A1A1A"/>
|
|
182
185
|
<rect x="3" y="11" width="14" height="2" rx="1" class="fill" fill="#1A1A1A"/>
|
|
183
186
|
<rect x="5" y="15" width="10" height="2" rx="1" class="fill" fill="#1A1A1A"/>
|
|
184
187
|
</svg>
|
|
185
|
-
`,
|
|
188
|
+
`,a0=`
|
|
186
189
|
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
187
190
|
<rect width="14" height="2" rx="1" transform="matrix(-1 0 0 1 17 3)" class="fill" fill="#1A1A1A"/>
|
|
188
191
|
<rect width="10" height="2" rx="1" transform="matrix(-1 0 0 1 17 7)" class="fill" fill="#1A1A1A"/>
|
|
@@ -190,14 +193,14 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
|
|
|
190
193
|
<rect width="10" height="2" rx="1" transform="matrix(-1 0 0 1 17 15)" class="fill" fill="#1A1A1A"/>
|
|
191
194
|
</svg>
|
|
192
195
|
|
|
193
|
-
`,
|
|
196
|
+
`,l0=`
|
|
194
197
|
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
195
198
|
<rect width="14" height="2" rx="1" transform="matrix(-1 0 0 1 17 3)" class="fill" fill="#1A1A1A"/>
|
|
196
199
|
<rect width="14" height="2" rx="1" transform="matrix(-1 0 0 1 17 7)" class="fill" fill="#1A1A1A"/>
|
|
197
200
|
<rect width="14" height="2" rx="1" transform="matrix(-1 0 0 1 17 11)" class="fill" fill="#1A1A1A"/>
|
|
198
201
|
<rect width="14" height="2" rx="1" transform="matrix(-1 0 0 1 17 15)" class="fill" fill="#1A1A1A"/>
|
|
199
202
|
</svg>
|
|
200
|
-
|
|
203
|
+
`,s0=`
|
|
201
204
|
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
202
205
|
<path d="M3.625 3.63672V6.5H3.00977V4.33203C2.97591 4.36198 2.93555 4.39062 2.88867 4.41797C2.8431 4.44401 2.79427 4.4681 2.74219 4.49023C2.6901 4.51107 2.63607 4.5293 2.58008 4.54492C2.52409 4.55924 2.46875 4.56966 2.41406 4.57617V4.05664C2.57422 4.00977 2.72526 3.94987 2.86719 3.87695C3.00911 3.80404 3.13737 3.72396 3.25195 3.63672H3.625Z" class="fill" fill="#1A1A1A"/>
|
|
203
206
|
<path d="M2.83789 10.9883H4.02539V11.5H2.16211V11.2891C2.16211 11.1458 2.1862 11.0176 2.23438 10.9043C2.28255 10.7897 2.3431 10.6875 2.41602 10.5977C2.48893 10.5065 2.56836 10.4264 2.6543 10.3574C2.74154 10.2871 2.82422 10.224 2.90234 10.168C2.98438 10.1094 3.05599 10.0534 3.11719 10C3.17969 9.94661 3.23177 9.89388 3.27344 9.8418C3.31641 9.78841 3.34831 9.73503 3.36914 9.68164C3.38997 9.62695 3.40039 9.56901 3.40039 9.50781C3.40039 9.38802 3.36654 9.29753 3.29883 9.23633C3.23112 9.17513 3.1276 9.14453 2.98828 9.14453C2.7474 9.14453 2.51693 9.24023 2.29688 9.43164V8.88867C2.54036 8.73112 2.8151 8.65234 3.12109 8.65234C3.26302 8.65234 3.38997 8.67122 3.50195 8.70898C3.61523 8.74544 3.71094 8.79818 3.78906 8.86719C3.86719 8.9362 3.92643 9.02018 3.9668 9.11914C4.00846 9.2168 4.0293 9.32617 4.0293 9.44727C4.0293 9.57617 4.00911 9.69076 3.96875 9.79102C3.92969 9.89128 3.87695 9.98242 3.81055 10.0645C3.74544 10.1465 3.66992 10.222 3.58398 10.291C3.49805 10.3587 3.40885 10.4245 3.31641 10.4883C3.25391 10.5326 3.19336 10.5768 3.13477 10.6211C3.07747 10.6641 3.02669 10.707 2.98242 10.75C2.93815 10.7917 2.90299 10.8327 2.87695 10.873C2.85091 10.9134 2.83789 10.9518 2.83789 10.9883Z" class="fill" fill="#1A1A1A"/>
|
|
@@ -206,7 +209,7 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
|
|
|
206
209
|
<rect x="7" y="9.5" width="11" height="2" rx="1" class="fill" fill="#1A1A1A"/>
|
|
207
210
|
<rect x="7" y="14.5" width="11" height="2" rx="1" class="fill" fill="#1A1A1A"/>
|
|
208
211
|
</svg>
|
|
209
|
-
`,
|
|
212
|
+
`,c0=`
|
|
210
213
|
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
211
214
|
<rect x="6.5" y="4" width="11" height="2" rx="1" class="fill" fill="#1A1A1A"/>
|
|
212
215
|
<rect x="6.5" y="9" width="11" height="2" rx="1" class="fill" fill="#1A1A1A"/>
|
|
@@ -215,7 +218,7 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
|
|
|
215
218
|
<circle cx="3.5" cy="10" r="1" class="fill" fill="#1A1A1A"/>
|
|
216
219
|
<circle cx="3.5" cy="5" r="1" class="fill" fill="#1A1A1A"/>
|
|
217
220
|
</svg>
|
|
218
|
-
`,
|
|
221
|
+
`,d0=`
|
|
219
222
|
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
220
223
|
<path d="M3.92383 6.5H3.33984V6.21289H3.33203C3.19792 6.43685 2.99935 6.54883 2.73633 6.54883C2.54232 6.54883 2.38932 6.49414 2.27734 6.38477C2.16667 6.27409 2.11133 6.12695 2.11133 5.94336C2.11133 5.55534 2.34115 5.33138 2.80078 5.27148L3.34375 5.19922C3.34375 4.98047 3.22526 4.87109 2.98828 4.87109C2.75 4.87109 2.52344 4.94206 2.30859 5.08398V4.61914C2.39453 4.57487 2.51172 4.53581 2.66016 4.50195C2.8099 4.4681 2.94596 4.45117 3.06836 4.45117C3.63867 4.45117 3.92383 4.73568 3.92383 5.30469V6.5ZM3.34375 5.6875V5.55273L2.98047 5.59961C2.77995 5.62565 2.67969 5.71615 2.67969 5.87109C2.67969 5.94141 2.70378 5.99935 2.75195 6.04492C2.80143 6.08919 2.86784 6.11133 2.95117 6.11133C3.06706 6.11133 3.16146 6.07161 3.23438 5.99219C3.30729 5.91146 3.34375 5.8099 3.34375 5.6875Z" class="fill" fill="#1A1A1A"/>
|
|
221
224
|
<path d="M2.88477 11.2676H2.87695V11.5H2.25977V8.53906H2.87695V9.80078H2.88477C3.03711 9.56771 3.25391 9.45117 3.53516 9.45117C3.79297 9.45117 3.99154 9.53971 4.13086 9.7168C4.27018 9.89388 4.33984 10.1361 4.33984 10.4434C4.33984 10.7767 4.25846 11.0443 4.0957 11.2461C3.93294 11.4479 3.71549 11.5488 3.44336 11.5488C3.19727 11.5488 3.01107 11.4551 2.88477 11.2676ZM2.86719 10.4238V10.6289C2.86719 10.7578 2.9043 10.8646 2.97852 10.9492C3.05273 11.0339 3.14779 11.0762 3.26367 11.0762C3.4043 11.0762 3.51302 11.0221 3.58984 10.9141C3.66797 10.8047 3.70703 10.6504 3.70703 10.4512C3.70703 10.2858 3.67122 10.1569 3.59961 10.0645C3.5293 9.9707 3.42839 9.92383 3.29688 9.92383C3.17318 9.92383 3.07031 9.97005 2.98828 10.0625C2.90755 10.1549 2.86719 10.2754 2.86719 10.4238Z" class="fill" fill="#1A1A1A"/>
|
|
@@ -224,4 +227,4 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
|
|
|
224
227
|
<rect x="7" y="9.5" width="11" height="2" rx="1" class="fill" fill="#1A1A1A"/>
|
|
225
228
|
<rect x="7" y="14.5" width="11" height="2" rx="1" class="fill" fill="#1A1A1A"/>
|
|
226
229
|
</svg>
|
|
227
|
-
`,U1="",lt=yt.import("ui/icons");lt.bold=uh,lt.italic=fh,lt.underline=hh,lt.strike=ph,lt["code-block"]=gh,lt.link=mh,lt.align[""]=yh,lt.align.center=vh,lt.align.right=bh,lt.align.justify=_h,lt.list.ordered=$h,lt.list.bullet=wh,lt["alphabet-list"]=kh,yt.register({"formats/alphabet-list":Ft,"formats/alphabet-list/item":tr}),yt.register(lt),yt.debug("error");const Ch={name:"IbTextEditor",props:{placeholder:{type:String,default:""},modelValue:{type:String},content:{type:String,default:""},readOnly:{type:Boolean,default:!1},enable:{type:Boolean,default:!0},modules:{type:[Object,Array],default:()=>{}},options:{type:Object,default:()=>{}},characterLimit:{type:[String,Number],default:null},error:{type:Boolean,default:!1},disable:{type:Boolean,default:!1},errorMessage:{type:String,default:""},characterLimitErrorMessage:{type:String,default:""},height:{type:String}},mounted(){this.$refs.toolbar.classList.remove("ql-toolbar");const t=this.$refs.wrapper.querySelector("input[data-link]");t.dataset.link="Enter Link",this.updateCharacterLength()},data(){return{data:this.modelValue?this.modelValue:this.content,characterLength:0,isFocus:!1}},watch:{content(t){this.data=t},data(t){this.$emit("update:modelValue",t)}},methods:{onChange(){this.updateCharacterLength(),this.$emit("change",this.data)},onBlur(t){this.$emit("blur",this.data,t),this.isFocus=!1},onFocus(){this.isFocus=!0},updateCharacterLength(){this.characterLength=this.$refs.quill.getText().length-1}},computed:{config(){const t={placeholder:this.data.length?"":this.placeholder,readOnly:this.readOnly?this.readOnly:this.disable,enable:this.enable};return Object.assign(t,this.options)},characterOverLimit(){return!!this.characterLimit&&this.characterLength>this.characterLimit}},components:{QuillEditor:lh,IbIconButton:ut,IbAlert:Pt,IbCharacterCount:Vi}},Oh={id:"toolbar",class:"toolbar",ref:"toolbar"},Eh=i.createStaticVNode('<div class="toolbar-group header-toolbar-group"><select class="ql-header"><option value="1"></option><option value="2"></option><option value="3"></option><option value="4"></option><option value="5"></option><option value="6"></option><option selected></option></select></div>',1),Sh={class:"toolbar-group"},Th=i.createElementVNode("div",{class:"toolbar-group"},[i.createElementVNode("select",{class:"ql-background"}),i.createElementVNode("select",{class:"ql-color"})],-1),Nh={class:"toolbar-group"},xh={class:"toolbar-group"},Ah={class:"toolbar-group"};function Dh(t,n,e,o,a,r){const s=i.resolveComponent("ib-character-count"),d=i.resolveComponent("ib-alert"),u=i.resolveComponent("QuillEditor"),p=i.resolveComponent("ib-icon-button");return i.openBlock(),i.createElementBlock("div",{class:i.normalizeClass(["textarea-wrapper",{error:r.characterOverLimit||e.error||e.errorMessage.length,focus:a.isFocus,disable:e.disable}])},[e.characterLimit?(i.openBlock(),i.createBlock(s,{key:0,"character-limit":e.characterLimit,"character-length":a.characterLength},null,8,["character-limit","character-length"])):i.createCommentVNode("",!0),e.errorMessage.length?(i.openBlock(),i.createBlock(d,{key:1,class:"error-message"},{default:i.withCtx(()=>[i.createTextVNode(i.toDisplayString(e.errorMessage),1)]),_:1})):i.createCommentVNode("",!0),i.withDirectives(i.createVNode(d,{class:"error-message"},{default:i.withCtx(()=>[i.createTextVNode(i.toDisplayString(e.characterLimitErrorMessage),1)]),_:1},512),[[i.vShow,e.characterLimitErrorMessage.length&&r.characterOverLimit]]),i.createElementVNode("div",{class:i.normalizeClass(["ib-text-editor-wrapper",{disable:e.disable}])},[i.createElementVNode("div",{class:"ib-text-editor",style:i.normalizeStyle({height:e.height?e.height+"px":""}),ref:"wrapper"},[i.createVNode(u,{onTextChange:r.onChange,onBlur:r.onBlur,onFocus:r.onFocus,ref:"quill",toolbar:"#toolbar",content:a.data,"onUpdate:content":n[0]||(n[0]=h=>a.data=h),contentType:"html",options:r.config,modules:e.modules},null,8,["onTextChange","onBlur","onFocus","content","options","modules"])],4),i.createElementVNode("div",Oh,[Eh,i.createElementVNode("div",Sh,[i.createVNode(p,{class:"toolbar-item ql-bold",kind:"ghost"}),i.createVNode(p,{class:"toolbar-item ql-italic",kind:"ghost"}),i.createVNode(p,{class:"toolbar-item ql-underline",kind:"ghost"}),i.createVNode(p,{class:"toolbar-item ql-strike",kind:"ghost"})]),Th,i.createElementVNode("div",Nh,[i.createVNode(p,{class:"toolbar-item ql-code-block",kind:"ghost"}),i.createVNode(p,{class:"toolbar-item ql-link",kind:"ghost"})]),i.createElementVNode("div",xh,[i.createVNode(p,{class:"toolbar-item ql-align",kind:"ghost"}),i.createVNode(p,{class:"ql-align toolbar-item",value:"center",kind:"ghost"}),i.createVNode(p,{class:"ql-align toolbar-item",value:"right",kind:"ghost"}),i.createVNode(p,{class:"ql-align toolbar-item",value:"justify",kind:"ghost"})]),i.createElementVNode("div",Ah,[i.createVNode(p,{class:"ql-list toolbar-item",value:"ordered",kind:"ghost"}),i.createVNode(p,{class:"ql-list toolbar-item",value:"bullet",kind:"ghost"}),i.createVNode(p,{class:"ql-alphabet-list alphabet-list toolbar-item",kind:"ghost"})])],512)],2)],2)}const Ih=_e(Ch,[["render",Dh]]),K1="",Mh={name:"IbTable",computed:{hasThead(){return!!this.$slots.thead}}},Ph={class:"ib-table-wrapper"},Bh={class:"ib-table"};function Lh(t,n,e,o,a,r){return i.openBlock(),i.createElementBlock("div",Ph,[i.createElementVNode("table",Bh,[r.hasThead?i.renderSlot(t.$slots,"thead",{key:0},void 0,!0):i.createCommentVNode("",!0),i.createElementVNode("tbody",null,[i.renderSlot(t.$slots,"tbody",{},void 0,!0)])])])}const Rh=_e(Mh,[["render",Lh],["__scopeId","data-v-5dceb760"]]),G1="",jh={name:"IbRow"},Vh={class:"ib-tr"};function qh(t,n,e,o,a,r){return i.openBlock(),i.createElementBlock("tr",Vh,[i.renderSlot(t.$slots,"default",{ref:"row"})])}const Fh=_e(jh,[["render",qh]]),Y1="",Hh={name:"IbCell",props:{fixed:{type:Boolean,default:!1}},data(){return{attr:{}}},mounted(){this.fixed&&this.freezeCol()},methods:{freezeCol(){const t=this.$el.getBoundingClientRect(),n=this.$el.closest("tr").getBoundingClientRect();this.attr.style||(this.attr.style={}),this.attr.style.minWidth=`${t.width}px`,this.attr.style.left=`${t.left-n.left}px`,this.attr.class+=" fixed"}}},zh={class:"cell"};function Uh(t,n,e,o,a,r){return i.openBlock(),i.createElementBlock("td",i.mergeProps({onResize:n[0]||(n[0]=(...s)=>r.freezeCol&&r.freezeCol(...s)),class:"ib-cell"},this.attr),[i.createElementVNode("div",zh,[i.renderSlot(t.$slots,"default",{},void 0,!0)])],16)}const Fo=_e(Hh,[["render",Uh],["__scopeId","data-v-e74bb0f3"]]),W1="",Kh={name:"IbCheckboxCell",props:{isChecked:{type:Boolean,default:!1},fixed:{type:Boolean,default:!1}},components:{IbCell:Fo,IbCheckbox:_r}};function Gh(t,n,e,o,a,r){const s=i.resolveComponent("ib-checkbox"),d=i.resolveComponent("ib-cell");return i.openBlock(),i.createBlock(d,{fixed:e.fixed,class:"ib-checkbox-cell"},{default:i.withCtx(()=>[i.createVNode(s,{"is-checked":e.isChecked},null,8,["is-checked"])]),_:1},8,["fixed"])}const Yh=_e(Kh,[["render",Gh]]),Yr=new xi,Ho=(t,n)=>{if(Mi(t)){const e={title:n.value.title||"",text:typeof n.value=="object"?n.value.text:n.value};Yr.createTooltip(t,e)}},zo=()=>{Yr.destroyTooltip()},Wh={mounted(t,n){t.addEventListener("mouseenter",()=>Ho(t,n)),t.addEventListener("mouseleave",zo)},beforeUnmount(t,n){Yr.destroyTooltip(),t.removeEventListener("mouseenter",()=>Ho(t,n)),t.removeEventListener("mouseleave",zo)}};pe.IbAccordion=ea,pe.IbAlert=Pt,pe.IbAvatar=Oa,pe.IbBadge=Ta,pe.IbBreadcrumbs=ns,pe.IbButton=bi,pe.IbButtonGroup=Da,pe.IbCell=Fo,pe.IbCheckbox=_r,pe.IbCheckboxCell=Yh,pe.IbCheckboxGroup=Ad,pe.IbDatePicker=vc,pe.IbDropdown=Ln,pe.IbDropdownItem=gr,pe.IbDropdownList=Rn,pe.IbFormGroup=Sd,pe.IbIcon=Le,pe.IbIconButton=ut,pe.IbInput=br,pe.IbLabel=dn,pe.IbLimitSelector=Ri,pe.IbModal=kl,pe.IbPagination=td,pe.IbPanel=kd,pe.IbPhoneInput=Uf,pe.IbPopover=_i,pe.IbProgressBar=sd,pe.IbRadio=jd,pe.IbRow=Fh,pe.IbSorting=Yl,pe.IbSplitButton=ml,pe.IbSplitButtonItem=vl,pe.IbStatusIndicator=pd,pe.IbTab=Rl,pe.IbTabDropdown=Ni,pe.IbTable=Rh,pe.IbTabs=Pl,pe.IbTagPill=Pa,pe.IbTextEditor=Ih,pe.IbTextarea=Zd,pe.IbToggle=Ii,pe.IbToggleTip=ki,pe.IbTooltip=jt,pe.IbTreeSelect=Li,pe.OutsideDirective=Pn,pe.TextOverflowTooltipDirective=Wh,pe.TooltipDirective=yr,Object.defineProperty(pe,Symbol.toStringTag,{value:"Module"})});
|
|
230
|
+
`,qp="";xe.register(xe.import("attributors/attribute/direction"),!0),xe.register(xe.import("attributors/class/align"),!0),xe.register(xe.import("attributors/class/direction"),!0),xe.register(xe.import("attributors/class/font"),!0),xe.register(xe.import("attributors/class/size"),!0),xe.register(xe.import("attributors/style/align"),!0),xe.register(xe.import("attributors/style/background"),!0),xe.register(xe.import("attributors/style/color"),!0),xe.register(xe.import("attributors/style/direction"),!0),xe.register(xe.import("attributors/style/font"),!0),xe.register(xe.import("attributors/style/size"),!0);const st=xe.import("ui/icons");st.bold=X1,st.italic=Q1,st.underline=e0,st.strike=t0,st["code-block"]=r0,st.link=n0,st.align[""]=i0,st.align.center=o0,st.align.right=a0,st.align.justify=l0,st.list.ordered=s0,st.list.bullet=c0,st["alphabet-list"]=d0,xe.register({"formats/alphabet-list":Zt,"formats/alphabet-list/item":$r}),xe.register("modules/placeholder",J1(xe,{className:"ql-placeholder-content"})),xe.register(st),xe.debug("error");const u0={name:"IbTextEditor",props:{name:{type:String,required:!0},placeholder:{type:String,default:""},placeholders:{type:Array,default:()=>[]},modelValue:{type:String},content:{type:String,default:""},readOnly:{type:Boolean,default:!1},enable:{type:Boolean,default:!0},modules:{type:[Object,Array],default:()=>{}},options:{type:Object,default:()=>{}},characterLimit:{type:[String,Number],default:null},error:{type:Boolean,default:!1},disable:{type:Boolean,default:!1},errorMessage:{type:String,default:""},characterLimitErrorMessage:{type:String,default:""}},emits:["onOverLimitHandler","update:modelValue","change","blur"],mounted(){this.$refs.toolbar.classList.remove("ql-toolbar");const t=this.$refs.wrapper.querySelector("input[data-link]");t.dataset.link="Enter Link",this.updateCharacterLength()},data(){return{data:this.modelValue?this.modelValue:this.content,characterLength:0,isFocus:!1}},watch:{content(t){this.data=t},data(t){const n=this.cleanPlaceholderSpans(t);this.$emit("update:modelValue",n)},characterOverLimit(t){this.$emit("onOverLimitHandler",t)}},methods:{onChange(){let t=this.cleanPlaceholderSpans(this.data);this.data=this.patchListStylePosition(t),this.updateCharacterLength(),this.$emit("change",this.data)},onBlur(t){this.$emit("blur",this.cleanPlaceholderSpans(this.data),t),this.isFocus=!1},onFocus(){this.isFocus=!0},updateCharacterLength(){this.characterLength=Y1(this.data).length},cleanPlaceholderSpans(t){if(!t)return t;let n;do n=t,t=t.replace(/<span contenteditable="false">([\s\S]*?)<\/span>/g,(e,o)=>o.replace(/[\u200B-\u200F\uFEFF]/g,""));while(n!==t);return t},patchListStylePosition(t){const n=document.createElement("div");return n.innerHTML=t,n.querySelectorAll('ul[style*="text-align"], ol[style*="text-align"], li[style*="text-align"]').forEach(e=>{const o=e.getAttribute("style")??"";if(!/list-style-position\s*:\s*inside/i.test(o)){const a=(o.trim().endsWith(";")||o.trim()===""?o:o+";")+" list-style-position: inside;";e.setAttribute("style",a)}}),n.innerHTML}},computed:{config(){const t={placeholder:this.data.length?"":this.placeholder,readOnly:this.readOnly?this.readOnly:this.disable,enable:this.enable,modules:{toolbar:{container:"#toolbar"},placeholder:{delimiters:["{{","}}"],placeholders:this.placeholders}}};return Object.assign(t,this.options)},characterOverLimit(){return!!this.characterLimit&&this.characterLength>this.characterLimit}},components:{QuillEditor:U1,IbIconButton:ut,IbAlert:Ft,IbCharacterCount:zr}},f0=["name","disabled","value"],h0={class:"ib-text-editor",ref:"wrapper"},p0={id:"toolbar",class:"toolbar",ref:"toolbar"},m0={class:"toolbar-group header-toolbar-group"},g0=i.createElementVNode("label",{class:"toolbar-group__label",for:"placeholders"},"Placeholder Selector",-1),y0={id:"placeholders",class:"ql-placeholder"},b0=i.createElementVNode("option",{selected:"",value:"default",class:"disabled"},null,-1),v0=["value"],_0=i.createStaticVNode('<div class="toolbar-group header-toolbar-group"><label class="toolbar-group__label" for="header-selector">Header Selector</label><select id="header-selector" class="ql-header"><option value="1"></option><option value="2"></option><option value="3"></option><option value="4"></option><option value="5"></option><option value="6"></option><option selected></option></select></div>',1),$0={class:"toolbar-group"},w0=i.createStaticVNode('<div class="toolbar-group"><label class="toolbar-group__label" for="background-selector">Background Selector</label><select id="background-selector" class="ql-background"></select><label class="toolbar-group__label" for="color-selector">Background Color Selector</label><select id="color-selector" class="ql-color"></select></div>',1),k0={class:"toolbar-group"},C0={class:"toolbar-group"},O0={class:"toolbar-group"};function E0(t,n,e,o,a,r){const s=i.resolveComponent("ib-character-count"),l=i.resolveComponent("ib-alert"),u=i.resolveComponent("QuillEditor"),d=i.resolveComponent("ib-icon-button");return i.openBlock(),i.createElementBlock("div",{class:i.normalizeClass(["textarea-wrapper",{error:r.characterOverLimit||e.error||e.errorMessage.length,focus:a.isFocus,disable:e.disable}])},[e.characterLimit?(i.openBlock(),i.createBlock(s,{key:0,"character-limit":e.characterLimit,"character-length":a.characterLength},null,8,["character-limit","character-length"])):i.createCommentVNode("",!0),e.errorMessage.length?(i.openBlock(),i.createBlock(l,{key:1,class:"error-message"},{default:i.withCtx(()=>[i.createTextVNode(i.toDisplayString(e.errorMessage),1)]),_:1})):i.createCommentVNode("",!0),i.withDirectives(i.createVNode(l,{class:"error-message"},{default:i.withCtx(()=>[i.createTextVNode(i.toDisplayString(e.characterLimitErrorMessage),1)]),_:1},512),[[i.vShow,e.characterLimitErrorMessage.length&&r.characterOverLimit]]),i.createElementVNode("input",{name:e.name,type:"hidden",disabled:e.disable,value:a.data},null,8,f0),i.createElementVNode("div",{class:i.normalizeClass(["ib-text-editor-wrapper",{disable:e.disable}])},[i.createElementVNode("div",h0,[i.createVNode(u,{"aria-label":"text-editor",onTextChange:r.onChange,onBlur:r.onBlur,onFocus:r.onFocus,ref:"quill",content:a.data,"onUpdate:content":n[0]||(n[0]=p=>a.data=p),contentType:"html",options:r.config,modules:e.modules},null,8,["onTextChange","onBlur","onFocus","content","options","modules"])],512),i.createElementVNode("div",p0,[i.withDirectives(i.createElementVNode("div",m0,[g0,i.createElementVNode("select",y0,[b0,(i.openBlock(!0),i.createElementBlock(i.Fragment,null,i.renderList(e.placeholders,p=>(i.openBlock(),i.createElementBlock("option",{key:p.id,value:p.id},i.toDisplayString(p.label),9,v0))),128))])],512),[[i.vShow,e.placeholders.length]]),_0,i.createElementVNode("div",$0,[i.createVNode(d,{"aria-label":"button-bold",class:"toolbar-item ql-bold",kind:"ghost"}),i.createVNode(d,{"aria-label":"button-italic",class:"toolbar-item ql-italic",kind:"ghost"}),i.createVNode(d,{"aria-label":"button-underline",class:"toolbar-item ql-underline",kind:"ghost"}),i.createVNode(d,{"aria-label":"button-strike",class:"toolbar-item ql-strike",kind:"ghost"})]),w0,i.createElementVNode("div",k0,[i.createVNode(d,{"aria-label":"button-code-block",class:"toolbar-item ql-code-block",kind:"ghost"}),i.createVNode(d,{"aria-label":"button-link",class:"toolbar-item ql-link",kind:"ghost"})]),i.createElementVNode("div",C0,[i.createVNode(d,{"aria-label":"button-align",class:"toolbar-item ql-align",kind:"ghost"}),i.createVNode(d,{"aria-label":"button-align-center",class:"ql-align toolbar-item",value:"center",kind:"ghost"}),i.createVNode(d,{"aria-label":"button-align-right",class:"ql-align toolbar-item",value:"right",kind:"ghost"}),i.createVNode(d,{"aria-label":"button-align-justify",class:"ql-align toolbar-item",value:"justify",kind:"ghost"})]),i.createElementVNode("div",O0,[i.createVNode(d,{"aria-label":"button-ordered-list",class:"ql-list toolbar-item",value:"ordered",kind:"ghost"}),i.createVNode(d,{"aria-label":"button-bullet-list",class:"ql-list toolbar-item",value:"bullet",kind:"ghost"}),i.createVNode(d,{"aria-label":"button-alphabet-list",class:"ql-alphabet-list alphabet-list toolbar-item",kind:"ghost"})])],512)],2)],2)}const S0=_e(u0,[["render",E0]]),Fp="",x0={name:"IbTable",computed:{hasThead(){return!!this.$slots.thead}}},T0={class:"ib-table-wrapper"},N0={class:"ib-table"};function A0(t,n,e,o,a,r){return i.openBlock(),i.createElementBlock("div",T0,[i.createElementVNode("table",N0,[r.hasThead?i.renderSlot(t.$slots,"thead",{key:0},void 0,!0):i.createCommentVNode("",!0),i.createElementVNode("tbody",null,[i.renderSlot(t.$slots,"tbody",{},void 0,!0)])])])}const D0=_e(x0,[["render",A0],["__scopeId","data-v-5dceb760"]]),Hp="",P0={name:"IbRow"},I0={class:"ib-tr"};function M0(t,n,e,o,a,r){return i.openBlock(),i.createElementBlock("tr",I0,[i.renderSlot(t.$slots,"default",{ref:"row"})])}const B0=_e(P0,[["render",M0]]),zp="",L0={name:"IbCell",props:{fixed:{type:Boolean,default:!1}},data(){return{attr:{}}},mounted(){this.fixed&&this.freezeCol()},methods:{freezeCol(){const t=this.$el.getBoundingClientRect(),n=this.$el.closest("tr").getBoundingClientRect();this.attr.style||(this.attr.style={}),this.attr.style.minWidth=`${t.width}px`,this.attr.style.left=`${t.left-n.left}px`,this.attr.class+=" fixed"}}},R0={class:"cell"};function j0(t,n,e,o,a,r){return i.openBlock(),i.createElementBlock("td",i.mergeProps({onResize:n[0]||(n[0]=(...s)=>r.freezeCol&&r.freezeCol(...s)),class:"ib-cell"},this.attr),[i.createElementVNode("div",R0,[i.renderSlot(t.$slots,"default",{},void 0,!0)])],16)}const Ba=_e(L0,[["render",j0],["__scopeId","data-v-e74bb0f3"]]),Up="",V0={name:"IbCheckboxCell",props:{isChecked:{type:Boolean,default:!1},fixed:{type:Boolean,default:!1}},components:{IbCell:Ba,IbCheckbox:Fr}};function q0(t,n,e,o,a,r){const s=i.resolveComponent("ib-checkbox"),l=i.resolveComponent("ib-cell");return i.openBlock(),i.createBlock(l,{fixed:e.fixed,class:"ib-checkbox-cell"},{default:i.withCtx(()=>[i.createVNode(s,{"is-checked":e.isChecked},null,8,["is-checked"])]),_:1},8,["fixed"])}const F0=_e(V0,[["render",q0]]),bi=new ko,La=(t,n)=>{if(So(t)){const e=Object.keys(n.modifiers)[0]||n.arg,o={title:n.value.title||"",text:typeof n.value=="object"?n.value.text:n.value};bi.createTooltip(t,o,e)}},Ra=()=>{bi.destroyTooltip()},H0={mounted(t,n){t.addEventListener("mouseenter",()=>La(t,n)),t.addEventListener("mouseleave",Ra)},beforeUnmount(t,n){bi.destroyTooltip(),t.removeEventListener("mouseenter",()=>La(t,n)),t.removeEventListener("mouseleave",Ra)}};pe.IbAccordion=Wa,pe.IbAlert=Ft,pe.IbAvatar=Jl,pe.IbBadge=es,pe.IbBreadcrumbs=Nc,pe.IbButton=Hi,pe.IbButtonGroup=is,pe.IbCell=Ba,pe.IbCharactersCount=zr,pe.IbCheckbox=Fr,pe.IbCheckboxCell=F0,pe.IbCheckboxGroup=pu,pe.IbChips=lu,pe.IbDatePicker=of,pe.IbDropdown=ir,pe.IbDropdownItem=jr,pe.IbDropdownList=or,pe.IbFormGroup=uu,pe.IbIcon=Le,pe.IbIconButton=ut,pe.IbInput=qr,pe.IbLabel=kn,pe.IbLimitSelector=Ao,pe.IbModal=Js,pe.IbPagination=Id,pe.IbPanel=tu,pe.IbPhoneInput=T1,pe.IbPopover=fo,pe.IbProgressBar=qd,pe.IbRadio=wu,pe.IbRow=B0,pe.IbSorting=wc,pe.IbSplitButton=Hs,pe.IbSplitButtonItem=Ks,pe.IbStatusIndicator=Gd,pe.IbTab=fc,pe.IbTabDropdown=$o,pe.IbTable=D0,pe.IbTabs=cc,pe.IbTagPill=ls,pe.IbTextEditor=S0,pe.IbTextarea=Iu,pe.IbToggle=Eo,pe.IbToggleTip=mo,pe.IbTooltip=ln,pe.IbTreeSelect=No,pe.OutsideDirective=nr,pe.TextOverflowTooltipDirective=H0,pe.TooltipDirective=Wt,Object.defineProperty(pe,Symbol.toStringTag,{value:"Module"})});
|