sprof 0.0.97 → 0.0.98
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/dist/sprof.js +1 -1
- package/dist/sprof.umd.cjs +1 -1
- package/package.json +1 -1
package/dist/sprof.js
CHANGED
|
@@ -7906,7 +7906,7 @@ class If {
|
|
|
7906
7906
|
const e = this.GetCurSet().buttons;
|
|
7907
7907
|
return e.forEach((i) => {
|
|
7908
7908
|
i.submit = !1;
|
|
7909
|
-
}), e
|
|
7909
|
+
}), e[0].submit = !0, e;
|
|
7910
7910
|
}
|
|
7911
7911
|
GetSuccessMessage() {
|
|
7912
7912
|
return this.GetCurSet().successMessage;
|
package/dist/sprof.umd.cjs
CHANGED
|
@@ -30,7 +30,7 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
|
|
|
30
30
|
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
31
31
|
PERFORMANCE OF THIS SOFTWARE.
|
|
32
32
|
***************************************************************************** */function Vo(t,e){var n,o;return t&&e?(n=""+t+e[0].toUpperCase()+e.slice(1),o=t+"-"+e):(n=t||e,o=t||e),{name:n,classname:o}}function To(t){return/^blob:/.test(t)}function Fo(t){return To(t)||function(e){return/^data:/.test(e)}(t)}function it(t){return!!(t&&t.constructor&&t.call&&t.apply)}function ie(t){return t===void 0}function Lt(t){return typeof t=="object"&&t!==null}function $n(t,e,n){var o={};return Lt(t)?(Object.keys(e).forEach(function(r){ie(t[r])?o[r]=e[r]:Lt(e[r])?Lt(t[r])?o[r]=$n(t[r],e[r],n[r]):o[r]=t[r]?e[r]:n[r]:e[r]===!0||e[r]===!1?o[r]=!!t[r]:o[r]=t[r]}),o):t?e:n}function Ht(t){var e=Number(t);return Number.isNaN(e)?t:e}function Do(t){return typeof(t=="number"||function(e){return typeof e=="object"&&e!==null}(t)&&toString.call(t)=="[object Number]")&&!Oo(t)}function Oo(t){return t!=t}function Lo(t,e){return Math.sqrt(Math.pow(t.x-e.x,2)+Math.pow(t.y-e.y,2))}var wt=function(t,e){t===void 0&&(t={}),e===void 0&&(e={}),this.type="manipulateImage",this.move=t,this.scale=e},Wl=function(t,e){e===void 0&&(e={}),this.type="resize",this.directions=t,this.params=e},An=function(t){this.type="move",this.directions=t},jl=function(){function t(e,n,o,r,s){this.type="drag",this.nativeEvent=e,this.position=o,this.previousPosition=r,this.element=n,this.anchor=s}return t.prototype.shift=function(){var e=this,n=e.element,o=e.anchor,r=e.position;if(n){var s=n.getBoundingClientRect(),a=s.left,c=s.top;return{left:r.left-a-o.left,top:r.top-c-o.top}}return{left:0,top:0}},t}(),Nn={name:"DraggableElement",props:{classname:{type:String}},beforeMount:function(){window.addEventListener("mouseup",this.onMouseUp,{passive:!1}),window.addEventListener("mousemove",this.onMouseMove,{passive:!1}),window.addEventListener("touchmove",this.onTouchMove,{passive:!1}),window.addEventListener("touchend",this.onTouchEnd,{passive:!1})},beforeUnmount:function(){window.removeEventListener("mouseup",this.onMouseUp),window.removeEventListener("mousemove",this.onMouseMove),window.removeEventListener("touchmove",this.onTouchMove),window.removeEventListener("touchend",this.onTouchEnd)},mounted:function(){if(!this.$refs.draggable)throw new Error('You should add ref "draggable" to your root element to use draggable mixin');this.touches=[],this.hovered=!1},methods:{onMouseOver:function(){this.hovered||(this.hovered=!0,this.$emit("enter"))},onMouseLeave:function(){this.hovered&&!this.touches.length&&(this.hovered=!1,this.$emit("leave"))},onTouchStart:function(t){t.cancelable&&!this.disabled&&t.touches.length===1&&(this.touches=Ge(t.touches),this.hovered||(this.$emit("enter"),this.hovered=!0),t.touches.length&&this.initAnchor(this.touches.reduce(function(e,n){return{clientX:e.clientX+n.clientX/t.touches.length,clientY:e.clientY+n.clientY/t.touches.length}},{clientX:0,clientY:0})),t.preventDefault&&t.preventDefault(),t.stopPropagation())},onTouchEnd:function(){this.processEnd()},onTouchMove:function(t){this.touches.length&&(this.processMove(t,t.touches),t.preventDefault&&t.preventDefault(),t.stopPropagation&&t.stopPropagation())},onMouseDown:function(t){if(!this.disabled){var e={fake:!0,clientX:t.clientX,clientY:t.clientY};this.touches=[e],this.initAnchor(e),t.stopPropagation()}},onMouseMove:function(t){this.touches.length&&(this.processMove(t,[{fake:!0,clientX:t.clientX,clientY:t.clientY}]),t.preventDefault&&t.preventDefault())},onMouseUp:function(){this.processEnd()},initAnchor:function(t){var e=this.$refs.draggable.getBoundingClientRect(),n=e.left,o=e.right,r=e.bottom,s=e.top;this.anchor={left:t.clientX-n,top:t.clientY-s,bottom:r-t.clientY,right:o-t.clientX}},processMove:function(t,e){var n=Ge(e);if(this.touches.length){if(this.touches.length===1&&n.length===1){var o=this.$refs.draggable;this.$emit("drag",new jl(t,o,{left:n[0].clientX,top:n[0].clientY},{left:this.touches[0].clientX,top:this.touches[0].clientY},this.anchor))}this.touches=n}},processEnd:function(){this.touches.length&&this.$emit("drag-end"),this.hovered&&(this.$emit("leave"),this.hovered=!1),this.touches=[]}},emits:["drag","drag-end","leave","enter"]};Nn.render=function(t,e,n,o,r,s){return i.openBlock(),i.createBlock("div",{ref:"draggable",class:n.classname,onTouchstart:e[1]||(e[1]=function(){return s.onTouchStart&&s.onTouchStart.apply(s,arguments)}),onMousedown:e[2]||(e[2]=function(){return s.onMouseDown&&s.onMouseDown.apply(s,arguments)}),onMouseover:e[3]||(e[3]=function(){return s.onMouseOver&&s.onMouseOver.apply(s,arguments)}),onMouseleave:e[4]||(e[4]=function(){return s.onMouseLeave&&s.onMouseLeave.apply(s,arguments)})},[i.renderSlot(t.$slots,"default")],34)};var Pn=xe("vue-handler-wrapper"),Ho={name:"HandlerWrapper",components:{DraggableElement:Nn},props:{horizontalPosition:{type:String},verticalPosition:{type:String},disabled:{type:Boolean,default:!1}},computed:{classes:function(){var t;if(this.horizontalPosition||this.verticalPosition){var e,n=Vo(this.horizontalPosition,this.verticalPosition);t=Pn((be(e={},n.classname,!0),be(e,"disabled",this.disabled),e))}else t=Pn({disabled:this.disabled});return{root:t,draggable:Pn("draggable")}}},emits:["leave","enter","drag","drag-end"]};Ho.render=function(t,e,n,o,r,s){var a=i.resolveComponent("DraggableElement");return i.openBlock(),i.createBlock("div",{class:s.classes.root},[i.createVNode(a,{class:s.classes.draggable,onDrag:e[1]||(e[1]=function(c){return t.$emit("drag",c)}),onDragEnd:e[2]||(e[2]=function(c){return t.$emit("drag-end")}),onLeave:e[3]||(e[3]=function(c){return t.$emit("leave")}),onEnter:e[4]||(e[4]=function(c){return t.$emit("enter")})},{default:i.withCtx(function(){return[i.renderSlot(t.$slots,"default")]}),_:3},8,["class"])],2)};var Gl=xe("vue-line-wrapper"),qo={name:"LineWrapper",components:{DraggableElement:Nn},props:{position:{type:String,required:!0},disabled:{type:Boolean,default:!1}},computed:{classname:function(){var t;return Gl((be(t={},this.position,!0),be(t,"disabled",this.disabled),t))}},emits:["leave","enter","drag","drag-end"]};qo.render=function(t,e,n,o,r,s){var a=i.resolveComponent("DraggableElement");return i.openBlock(),i.createBlock(a,{class:s.classname,onDrag:e[1]||(e[1]=function(c){return t.$emit("drag",c)}),onDragEnd:e[2]||(e[2]=function(c){return t.$emit("drag-end")}),onLeave:e[3]||(e[3]=function(c){return t.$emit("leave")}),onEnter:e[4]||(e[4]=function(c){return t.$emit("enter")})},{default:i.withCtx(function(){return[i.renderSlot(t.$slots,"default")]}),_:3},8,["class"])};var Ae=["left","right","top","bottom"],Zl=["left","right"],Xl=["top","bottom"],Jl=["left","top"],Yl=["fill-area","fit-area","stencil","none"],Uo={left:0,top:0,width:0,height:0};function _o(t,e,n){return!(n=n||["width","height","left","top"]).some(function(o){return t[o]!==e[o]})}function Ne(t){return{left:t.left,top:t.top,right:t.left+t.width,bottom:t.top+t.height}}function ot(t,e){return{left:t.left-e.left,top:t.top-e.top}}function se(t){return{left:t.left+t.width/2,top:t.top+t.height/2}}function bt(t,e){var n={left:0,top:0,right:0,bottom:0};return Ae.forEach(function(o){var r=e[o],s=Ne(t)[o];n[o]=r!==void 0&&s!==void 0?o==="left"||o==="top"?Math.max(0,r-s):Math.max(0,s-r):0}),n}function Pe(t,e){return{left:t.left-e.left,top:t.top-e.top,width:t.width+e.left+e.right,height:t.height+e.top+e.bottom}}function qt(t){return{left:-t.left,top:-t.top}}function he(t,e){return N(N({},t),{left:t.left+e.left,top:t.top+e.top})}function Ce(t,e,n,o){if(e!==1){if(n){var r=se(t);return{width:t.width*e,height:t.height*e,left:t.left+t.width*(1-e)/2+(n.left-r.left)*(1-e),top:t.top+t.height*(1-e)/2+(n.top-r.top)*(1-e)}}return{width:t.width*e,height:t.height*e,left:t.left+t.width*(1-e)/2,top:t.top+t.height*(1-e)/2}}return t}function j(t){return t.width/t.height}function rt(t,e){return Math.min(e.right!==void 0&&e.left!==void 0?(e.right-e.left)/t.width:1/0,e.bottom!==void 0&&e.top!==void 0?(e.bottom-e.top)/t.height:1/0)}function st(t,e){var n={left:0,top:0},o=bt(t,e);return o.left&&o.left>0?n.left=o.left:o.right&&o.right>0&&(n.left=-o.right),o.top&&o.top>0?n.top=o.top:o.bottom&&o.bottom>0&&(n.top=-o.bottom),n}function zn(t,e){var n;return e.minimum&&t<e.minimum?n=e.minimum:e.maximum&&t>e.maximum&&(n=e.maximum),n}function Wo(t,e){var n=j(t),o=j(e);return e.width<1/0&&e.height<1/0?n>o?{width:e.width,height:e.width/n}:{width:e.height*n,height:e.height}:e.width<1/0?{width:e.width,height:e.width/n}:e.height<1/0?{width:e.height*n,height:e.height}:t}function jo(t,e){var n=e*Math.PI/180;return{width:Math.abs(t.width*Math.cos(n))+Math.abs(t.height*Math.sin(n)),height:Math.abs(t.width*Math.sin(n))+Math.abs(t.height*Math.cos(n))}}function qe(t,e){var n=e*Math.PI/180;return{left:t.left*Math.cos(n)-t.top*Math.sin(n),top:t.left*Math.sin(n)+t.top*Math.cos(n)}}function Ut(t,e){var n=bt(ae(t,e),e);return n.left+n.right+n.top+n.bottom?n.left+n.right>n.top+n.bottom?Math.min((t.width+n.left+n.right)/t.width,rt(t,e)):Math.min((t.height+n.top+n.bottom)/t.height,rt(t,e)):1}function ae(t,e,n){n===void 0&&(n=!1);var o=st(t,e);return he(t,n?qt(o):o)}function Vn(t){return{width:t.right!==void 0&&t.left!==void 0?t.right-t.left:1/0,height:t.bottom!==void 0&&t.top!==void 0?t.bottom-t.top:1/0}}function Ql(t,e){return N(N({},t),{minWidth:Math.min(e.width,t.minWidth),minHeight:Math.min(e.height,t.minHeight),maxWidth:Math.min(e.width,t.maxWidth),maxHeight:Math.min(e.height,t.maxHeight)})}function Go(t,e,n){n===void 0&&(n=!0);var o={};return Ae.forEach(function(r){var s=t[r],a=e[r];s!==void 0&&a!==void 0?o[r]=r==="left"||r==="top"?n?Math.max(s,a):Math.min(s,a):n?Math.min(s,a):Math.max(s,a):a!==void 0?o[r]=a:s!==void 0&&(o[r]=s)}),o}function _t(t,e){return Go(t,e,!0)}function Zo(t){var e=t.size,n=t.aspectRatio,o=t.ignoreMinimum,r=t.sizeRestrictions;return!!((e.correctRatio||j(e)>=n.minimum&&j(e)<=n.maximum)&&e.height<=r.maxHeight&&e.width<=r.maxWidth&&e.width&&e.height&&(o||e.height>=r.minHeight&&e.width>=r.minWidth))}function Xo(t,e){return Math.pow(t.width-e.width,2)+Math.pow(t.height-e.height,2)}function Oe(t){var e=t.width,n=t.height,o=t.sizeRestrictions,r={minimum:t.aspectRatio&&t.aspectRatio.minimum||0,maximum:t.aspectRatio&&t.aspectRatio.maximum||1/0},s={width:Math.max(o.minWidth,Math.min(o.maxWidth,e)),height:Math.max(o.minHeight,Math.min(o.maxHeight,n))};function a(u,h){return h===void 0&&(h=!1),u.reduce(function(f,m){return Zo({size:m,aspectRatio:r,sizeRestrictions:o,ignoreMinimum:h})&&(!f||Xo(m,{width:e,height:n})<Xo(f,{width:e,height:n}))?m:f},null)}var c=[];r&&[r.minimum,r.maximum].forEach(function(u){u&&c.push({width:s.width,height:s.width/u,correctRatio:!0},{width:s.height*u,height:s.height,correctRatio:!0})}),Zo({size:s,aspectRatio:r,sizeRestrictions:o})&&c.push(s);var l=a(c)||a(c,!0);return l&&{width:l.width,height:l.height}}function Tn(t){var e=t.event,n=t.coordinates,o=t.positionRestrictions,r=o===void 0?{}:o,s=he(n,e.directions);return he(s,st(s,r))}function Kl(t){var e=t.coordinates,n=t.transform,o=t.imageSize,r=t.sizeRestrictions,s=t.positionRestrictions,a=t.aspectRatio,c=t.visibleArea,l=function(h,f){return Tn({coordinates:h,positionRestrictions:s,event:new An({left:f.left-h.left,top:f.top-h.top})})},u=N({},e);return(Array.isArray(n)?n:[n]).forEach(function(h){var f={};ie((f=typeof h=="function"?h({coordinates:u,imageSize:o,visibleArea:c}):h).width)&&ie(f.height)||(u=function(m,g){var p=N(N(N({},m),Oe({width:g.width,height:g.height,sizeRestrictions:r,aspectRatio:a})),{left:0,top:0});return l(p,{left:m.left,top:m.top})}(u,N(N({},u),f))),ie(f.left)&&ie(f.top)||(u=l(u,N(N({},u),f)))}),u}function ec(t){t.event;var e=t.getAreaRestrictions,n=t.boundaries,o=t.coordinates,r=t.visibleArea;t.aspectRatio;var s=t.stencilSize,a=t.sizeRestrictions,c=t.positionRestrictions;t.stencilReference;var l,u,h,f=N({},o),m=N({},r),g=N({},s);l=j(g),u=j(f),h===void 0&&(h=.001),(l===0||u===0?Math.abs(u-l)<h:Math.abs(u/l)<1+h&&Math.abs(u/l)>1-h)||(f=N(N({},f),Oe({sizeRestrictions:a,width:f.width,height:f.height,aspectRatio:{minimum:j(g),maximum:j(g)}})));var p=Ut(m=Ce(m,f.width*n.width/(m.width*g.width)),e({visibleArea:m,type:"resize"}));return p!==1&&(m=Ce(m,p),f=Ce(f,p)),m=ae(m=he(m,ot(se(f),se(m))),e({visibleArea:m,type:"move"})),{coordinates:f=ae(f,_t(Ne(m),c)),visibleArea:m}}function tc(t){var e=t.event,n=t.getAreaRestrictions,o=t.boundaries,r=t.coordinates,s=t.visibleArea;t.aspectRatio,t.stencilSize,t.sizeRestrictions;var a=t.positionRestrictions;t.stencilReference;var c=N({},r),l=N({},s);if(r&&s&&e.type!=="manipulateImage"){var u={width:0,height:0};l.width,o.width,j(o)>j(c)?(u.height=.8*o.height,u.width=u.height*j(c)):(u.width=.8*o.width,u.height=u.width*j(c));var h=Ut(l=Ce(l,c.width*o.width/(l.width*u.width)),n({visibleArea:l,type:"resize"}));l=Ce(l,h),h!==1&&(u.height/=h,u.width/=h),l=ae(l=he(l,ot(se(c),se(l))),n({visibleArea:l,type:"move"})),c=ae(c,_t(Ne(l),a))}return{coordinates:c,visibleArea:l}}function nc(t){var e=t.event,n=t.coordinates,o=t.visibleArea,r=t.getAreaRestrictions,s=N({},o),a=N({},n);if(e.type==="setCoordinates"){var c=Math.max(0,a.width-s.width),l=Math.max(0,a.height-s.height);c>l?s=Ce(s,Math.min(a.width/s.width,rt(s,r({visibleArea:s,type:"resize"})))):l>c&&(s=Ce(s,Math.min(a.height/s.height,rt(s,r({visibleArea:s,type:"resize"}))))),s=ae(s=he(s,qt(st(a,Ne(s)))),r({visibleArea:s,type:"move"}))}return{visibleArea:s,coordinates:a}}function ic(t){var e=t.imageSize,n=t.visibleArea,o=t.coordinates,r=n||e;return{left:(n?n.left:0)+r.width/2-o.width/2,top:(n?n.top:0)+r.height/2-o.height/2}}function oc(t){var e=t.imageSize,n=t.visibleArea,o=t.aspectRatio,r=t.sizeRestrictions,s=n||e,a=Math.min(o.maximum||1/0,Math.max(o.minimum||0,j(s))),c=s.width<s.height?{width:.8*s.width,height:.8*s.width/a}:{height:.8*s.height,width:.8*s.height*a};return Oe(N(N({},c),{aspectRatio:o,sizeRestrictions:r}))}function rc(t){var e,n,o=t.imageSize,r=t.visibleArea,s=t.boundaries,a=t.aspectRatio,c=t.sizeRestrictions,l=t.stencilSize,u=r||o;return j(u)>j(s)?n=(e=l.height*u.height/s.height)*j(l):e=(n=l.width*u.width/s.width)/j(l),Oe({width:n,height:e,aspectRatio:a,sizeRestrictions:c})}function sc(t){var e=t.getAreaRestrictions,n=t.coordinates,o=t.imageSize,r=j(t.boundaries);if(n){var s={height:Math.max(n.height,o.height),width:Math.max(n.width,o.width)},a=Wo({width:j(s)>r?s.width:s.height*r,height:j(s)>r?s.width/r:s.height},Vn(e())),c={left:n.left+n.width/2-a.width/2,top:n.top+n.height/2-a.height/2,width:a.width,height:a.height},l=bt(n,Ne(N({left:0,top:0},o))),u={};return!l.left&&!l.right&&c.width<=o.width&&(u.left=0,u.right=o.width),!l.top&&!l.bottom&&c.height<=o.height&&(u.top=0,u.bottom=o.height),ae(c,u)}var h=j(o);return a={height:h>r?o.height:o.width/r,width:h>r?o.height*r:o.width},{left:o.width/2-a.width/2,top:o.height/2-a.height/2,width:a.width,height:a.height}}function Wt(t,e){return Go(t,Ne(e))}function ac(t){var e=t.event,n=t.coordinates,o=t.visibleArea,r=t.sizeRestrictions,s=t.getAreaRestrictions,a=t.positionRestrictions,c=t.adjustStencil,l=e.scale,u=e.move,h=N({},o),f=N({},n),m=1,g=1,p=l.factor&&Math.abs(l.factor-1)>.001;h=he(h,{left:u.left||0,top:u.top||0});var E={stencil:{minimum:Math.max(r.minWidth?r.minWidth/f.width:0,r.minHeight?r.minHeight/f.height:0),maximum:Math.min(r.maxWidth?r.maxWidth/f.width:1/0,r.maxHeight?r.maxHeight/f.height:1/0,rt(f,a))},area:{maximum:rt(h,s({visibleArea:h,type:"resize"}))}};l.factor&&p&&(l.factor<1?(g=Math.max(l.factor,E.stencil.minimum))>1&&(g=1):l.factor>1&&(g=Math.min(l.factor,Math.min(E.area.maximum,E.stencil.maximum)))<1&&(g=1)),g&&(h=Ce(h,g,l.center));var w=n.left-o.left,M=o.width+o.left-(n.width+n.left),O=n.top-o.top,L=o.height+o.top-(n.height+n.top);return h=ae(h=he(h,st(h,{left:a.left!==void 0?a.left-w*g:void 0,top:a.top!==void 0?a.top-O*g:void 0,bottom:a.bottom!==void 0?a.bottom+L*g:void 0,right:a.right!==void 0?a.right+M*g:void 0})),s({visibleArea:h,type:"move"})),f.width=f.width*g,f.height=f.height*g,f.left=h.left+w*g,f.top=h.top+O*g,f=ae(f,_t(Ne(h),a)),l.factor&&p&&c&&(l.factor>1?m=Math.min(E.area.maximum,l.factor)/g:l.factor<1&&(m=Math.max(f.height/h.height,f.width/h.width,l.factor/g)),m!==1&&(h=he(h=ae(h=Ce(h,m,l.factor>1?l.center:se(f)),s({visibleArea:h,type:"move"})),qt(st(f,Ne(h)))))),{coordinates:f,visibleArea:h}}function lc(t){var e=t.aspectRatio,n=t.getAreaRestrictions,o=t.coordinates,r=t.visibleArea,s=t.sizeRestrictions,a=t.positionRestrictions,c=t.imageSize,l=t.previousImageSize,u=t.angle,h=N({},o),f=N({},r),m=qe(se(N({left:0,top:0},l)),u);return(h=N(N({},Oe({sizeRestrictions:s,aspectRatio:e,width:h.width,height:h.height})),qe(se(h),u))).left-=m.left-c.width/2+h.width/2,h.top-=m.top-c.height/2+h.height/2,f=Ce(f,Ut(f,n({visibleArea:f,type:"resize"}))),{coordinates:h=ae(h,a),visibleArea:f=ae(f=he(f,ot(se(h),se(o))),n({visibleArea:f,type:"move"}))}}function cc(t){var e=t.flip,n=t.previousFlip,o=t.rotate,r=t.getAreaRestrictions,s=t.coordinates,a=t.visibleArea,c=t.imageSize,l=N({},s),u=N({},a),h=n.horizontal!==e.horizontal,f=n.vertical!==e.vertical;if(h||f){var m=qe({left:c.width/2,top:c.height/2},-o),g=qe(se(l),-o),p=qe({left:h?m.left-(g.left-m.left):g.left,top:f?m.top-(g.top-m.top):g.top},o);l=he(l,ot(p,se(l))),g=qe(se(u),-o),u=ae(u=he(u,ot(p=qe({left:h?m.left-(g.left-m.left):g.left,top:f?m.top-(g.top-m.top):g.top},o),se(u))),r({visibleArea:u,type:"move"}))}return{coordinates:l,visibleArea:u}}function Jo(t){var e=t.directions,n=t.coordinates,o=t.positionRestrictions,r=o===void 0?{}:o,s=t.sizeRestrictions,a=t.preserveRatio,c=t.compensate,l=N({},e),u=Pe(n,l).width,h=Pe(n,l).height;u<0&&(l.left<0&&l.right<0?(l.left=-(n.width-s.minWidth)/(l.left/l.right),l.right=-(n.width-s.minWidth)/(l.right/l.left)):l.left<0?l.left=-(n.width-s.minWidth):l.right<0&&(l.right=-(n.width-s.minWidth))),h<0&&(l.top<0&&l.bottom<0?(l.top=-(n.height-s.minHeight)/(l.top/l.bottom),l.bottom=-(n.height-s.minHeight)/(l.bottom/l.top)):l.top<0?l.top=-(n.height-s.minHeight):l.bottom<0&&(l.bottom=-(n.height-s.minHeight)));var f=bt(Pe(n,l),r);c&&(f.left&&f.left>0&&f.right===0?(l.right+=f.left,l.left-=f.left):f.right&&f.right>0&&f.left===0&&(l.left+=f.right,l.right-=f.right),f.top&&f.top>0&&f.bottom===0?(l.bottom+=f.top,l.top-=f.top):f.bottom&&f.bottom>0&&f.top===0&&(l.top+=f.bottom,l.bottom-=f.bottom),f=bt(Pe(n,l),r));var m={width:1/0,height:1/0,left:1/0,right:1/0,top:1/0,bottom:1/0};if(Ae.forEach(function(E){var w=f[E];w&&l[E]&&(m[E]=Math.max(0,1-w/l[E]))}),a){var g=Math.min.apply(null,Ae.map(function(E){return m[E]}));g!==1/0&&Ae.forEach(function(E){l[E]*=g})}else Ae.forEach(function(E){m[E]!==1/0&&(l[E]*=m[E])});if(u=Pe(n,l).width,h=Pe(n,l).height,l.right+l.left&&(u>s.maxWidth?m.width=(s.maxWidth-n.width)/(l.right+l.left):u<s.minWidth&&(m.width=(s.minWidth-n.width)/(l.right+l.left))),l.bottom+l.top&&(h>s.maxHeight?m.height=(s.maxHeight-n.height)/(l.bottom+l.top):h<s.minHeight&&(m.height=(s.minHeight-n.height)/(l.bottom+l.top))),a){var p=Math.min(m.width,m.height);p!==1/0&&Ae.forEach(function(E){l[E]*=p})}else m.width!==1/0&&Zl.forEach(function(E){l[E]*=m.width}),m.height!==1/0&&Xl.forEach(function(E){l[E]*=m.height});return l}function jt(t,e,n){return e==0&&n==0?t/2:e==0?0:n==0?t:t*Math.abs(e/(e+n))}var dc=xe("vue-simple-handler"),uc=xe("vue-simple-handler-wrapper"),Fn={name:"SimpleHandler",components:{HandlerWrapper:Ho},props:{defaultClass:{type:String},hoverClass:{type:String},wrapperClass:{type:String},horizontalPosition:{type:String},verticalPosition:{type:String},disabled:{type:Boolean,default:!1}},data:function(){return{hover:!1}},computed:{classes:function(){var t,e=(be(t={},this.horizontalPosition,!!this.horizontalPosition),be(t,this.verticalPosition,!!this.verticalPosition),be(t,"".concat(this.horizontalPosition,"-").concat(this.verticalPosition),!!(this.verticalPosition&&this.horizontalPosition)),be(t,"hover",this.hover),t);return{default:K(dc(e),this.defaultClass,this.hover&&this.hoverClass),wrapper:K(uc(e),this.wrapperClass)}}},methods:{onDrag:function(t){this.$emit("drag",t)},onEnter:function(){this.hover=!0},onLeave:function(){this.hover=!1},onDragEnd:function(){this.$emit("drag-end")}},emits:["drag","drag-end"]};Fn.render=function(t,e,n,o,r,s){var a=i.resolveComponent("HandlerWrapper");return i.openBlock(),i.createBlock(a,{class:s.classes.wrapper,"vertical-position":n.verticalPosition,"horizontal-position":n.horizontalPosition,disabled:n.disabled,onDrag:s.onDrag,onDragEnd:s.onDragEnd,onEnter:s.onEnter,onLeave:s.onLeave},{default:i.withCtx(function(){return[i.createVNode("div",{class:s.classes.default},null,2)]}),_:1},8,["class","vertical-position","horizontal-position","disabled","onDrag","onDragEnd","onEnter","onLeave"])};var hc=xe("vue-simple-line"),fc=xe("vue-simple-line-wrapper"),Dn={name:"SimpleLine",components:{LineWrapper:qo},props:{defaultClass:{type:String},hoverClass:{type:String},wrapperClass:{type:String},position:{type:String},disabled:{type:Boolean,default:!1}},data:function(){return{hover:!1}},computed:{classes:function(){return{root:K(hc(be({},this.position,!0)),this.defaultClass,this.hover&&this.hoverClass),wrapper:K(fc(be({},this.position,!0)),this.wrapperClass)}}},methods:{onDrag:function(t){this.$emit("drag",t)},onEnter:function(){this.hover=!0},onLeave:function(){this.hover=!1},onDragEnd:function(){this.$emit("drag-end")}},emits:["drag","drag-end"]};Dn.render=function(t,e,n,o,r,s){var a=i.resolveComponent("LineWrapper");return i.openBlock(),i.createBlock(a,{class:s.classes.wrapper,position:n.position,disabled:n.disabled,onDrag:s.onDrag,onDragEnd:s.onDragEnd,onEnter:s.onEnter,onLeave:s.onLeave},{default:i.withCtx(function(){return[i.createVNode("div",{class:s.classes.root},null,2)]}),_:1},8,["class","position","disabled","onDrag","onDragEnd","onEnter","onLeave"])};var On=xe("vue-bounding-box"),mc=["east","west",null],pc=["south","north",null],Yo={name:"BoundingBox",props:{width:{type:Number},height:{type:Number},transitions:{type:Object},handlers:{type:Object,default:function(){return{eastNorth:!0,north:!0,westNorth:!0,west:!0,westSouth:!0,south:!0,eastSouth:!0,east:!0}}},handlersComponent:{type:[Object,String],default:function(){return Fn}},handlersClasses:{type:Object,default:function(){return{}}},handlersWrappersClasses:{type:Object,default:function(){return{}}},lines:{type:Object,default:function(){return{west:!0,north:!0,east:!0,south:!0}}},linesComponent:{type:[Object,String],default:function(){return Dn}},linesClasses:{type:Object,default:function(){return{}}},linesWrappersClasses:{type:Object,default:function(){return{}}},resizable:{type:Boolean,default:!0}},data:function(){var t=[];return mc.forEach(function(e){pc.forEach(function(n){if(e!==n){var o=Vo(e,n),r=o.name,s=o.classname;t.push({name:r,classname:s,verticalDirection:n,horizontalDirection:e})}})}),{points:t}},computed:{style:function(){var t={};return this.width&&this.height&&(t.width="".concat(this.width,"px"),t.height="".concat(this.height,"px"),this.transitions&&this.transitions.enabled&&(t.transition="".concat(this.transitions.time,"ms ").concat(this.transitions.timingFunction))),t},classes:function(){var t=this.handlersClasses,e=this.handlersWrappersClasses,n=this.linesClasses,o=this.linesWrappersClasses;return{root:On(),handlers:t,handlersWrappers:e,lines:n,linesWrappers:o}},lineNodes:function(){var t=this,e=[];return this.points.forEach(function(n){n.horizontalDirection&&n.verticalDirection||!t.lines[n.name]||e.push({name:n.name,component:t.linesComponent,class:K(t.classes.lines.default,t.classes.lines[n.name],!t.resizable&&t.classes.lines.disabled),wrapperClass:K(t.classes.linesWrappers.default,t.classes.linesWrappers[n.name],!t.resizable&&t.classes.linesWrappers.disabled),hoverClass:t.classes.lines.hover,verticalDirection:n.verticalDirection,horizontalDirection:n.horizontalDirection,disabled:!t.resizable})}),e},handlerNodes:function(){var t=this,e=[],n=this.width,o=this.height;return this.points.forEach(function(r){if(t.handlers[r.name]){var s={name:r.name,component:t.handlersComponent,class:K(t.classes.handlers.default,t.classes.handlers[r.name]),wrapperClass:K(t.classes.handlersWrappers.default,t.classes.handlersWrappers[r.name]),hoverClass:t.classes.handlers.hover,verticalDirection:r.verticalDirection,horizontalDirection:r.horizontalDirection,disabled:!t.resizable};if(n&&o){var a=r.horizontalDirection,c=r.verticalDirection,l=a==="east"?n:a==="west"?0:n/2,u=c==="south"?o:c==="north"?0:o/2;s.wrapperClass=On("handler"),s.wrapperStyle={transform:"translate(".concat(l,"px, ").concat(u,"px)")},t.transitions&&t.transitions.enabled&&(s.wrapperStyle.transition="".concat(t.transitions.time,"ms ").concat(t.transitions.timingFunction))}else s.wrapperClass=On("handler",be({},r.classname,!0));e.push(s)}}),e}},beforeMount:function(){window.addEventListener("mouseup",this.onMouseUp,{passive:!1}),window.addEventListener("mousemove",this.onMouseMove,{passive:!1}),window.addEventListener("touchmove",this.onTouchMove,{passive:!1}),window.addEventListener("touchend",this.onTouchEnd,{passive:!1})},beforeUnmount:function(){window.removeEventListener("mouseup",this.onMouseUp),window.removeEventListener("mousemove",this.onMouseMove),window.removeEventListener("touchmove",this.onTouchMove),window.removeEventListener("touchend",this.onTouchEnd)},mounted:function(){this.touches=[]},methods:{onEnd:function(){this.$emit("resize-end")},onHandlerDrag:function(t,e,n){var o,r=t.shift(),s=r.left,a=r.top,c={left:0,right:0,top:0,bottom:0};e==="west"?c.left-=s:e==="east"&&(c.right+=s),n==="north"?c.top-=a:n==="south"&&(c.bottom+=a),!n&&e?o="width":n&&!e&&(o="height"),this.resizable&&this.$emit("resize",new Wl(c,{allowedDirections:{left:e==="west"||!e,right:e==="east"||!e,bottom:n==="south"||!n,top:n==="north"||!n},preserveAspectRatio:t.nativeEvent&&t.nativeEvent.shiftKey,respectDirection:o}))}},emits:["resize","resize-end"]};Yo.render=function(t,e,n,o,r,s){return i.openBlock(),i.createBlock("div",{ref:"box",class:s.classes.root,style:s.style},[i.renderSlot(t.$slots,"default"),i.createVNode("div",null,[(i.openBlock(!0),i.createBlock(i.Fragment,null,i.renderList(s.lineNodes,function(a){return i.openBlock(),i.createBlock(i.resolveDynamicComponent(a.component),{key:a.name,"default-class":a.class,"hover-class":a.hoverClass,"wrapper-class":a.wrapperClass,position:a.name,disabled:a.disabled,onDrag:function(c){return s.onHandlerDrag(c,a.horizontalDirection,a.verticalDirection)},onDragEnd:e[1]||(e[1]=function(c){return s.onEnd()})},null,8,["default-class","hover-class","wrapper-class","position","disabled","onDrag"])}),128))]),(i.openBlock(!0),i.createBlock(i.Fragment,null,i.renderList(s.handlerNodes,function(a){return i.openBlock(),i.createBlock("div",{key:a.name,style:a.wrapperStyle,class:a.wrapperClass},[(i.openBlock(),i.createBlock(i.resolveDynamicComponent(a.component),{"default-class":a.class,"hover-class":a.hoverClass,"wrapper-class":a.wrapperClass,"horizontal-position":a.horizontalDirection,"vertical-position":a.verticalDirection,disabled:a.disabled,onDrag:function(c){return s.onHandlerDrag(c,a.horizontalDirection,a.verticalDirection)},onDragEnd:e[2]||(e[2]=function(c){return s.onEnd()})},null,8,["default-class","hover-class","wrapper-class","horizontal-position","vertical-position","disabled","onDrag"]))],6)}),128))],6)};var gc=xe("vue-draggable-area"),Qo={name:"DraggableArea",props:{movable:{type:Boolean,default:!0},activationDistance:{type:Number,default:20}},computed:{classnames:function(){return{default:gc()}}},beforeMount:function(){window.addEventListener("mouseup",this.onMouseUp,{passive:!1}),window.addEventListener("mousemove",this.onMouseMove,{passive:!1}),window.addEventListener("touchmove",this.onTouchMove,{passive:!1}),window.addEventListener("touchend",this.onTouchEnd,{passive:!1})},beforeUnmount:function(){window.removeEventListener("mouseup",this.onMouseUp),window.removeEventListener("mousemove",this.onMouseMove),window.removeEventListener("touchmove",this.onTouchMove),window.removeEventListener("touchend",this.onTouchEnd)},mounted:function(){this.touches=[],this.touchStarted=!1},methods:{onTouchStart:function(t){if(t.cancelable){var e=this.movable&&t.touches.length===1;e&&(this.touches=Ge(t.touches)),(this.touchStarted||e)&&(t.preventDefault(),t.stopPropagation())}},onTouchEnd:function(){this.touchStarted=!1,this.processEnd()},onTouchMove:function(t){this.touches.length>=1&&(this.touchStarted?(this.processMove(t,t.touches),t.preventDefault(),t.stopPropagation()):Lo({x:this.touches[0].clientX,y:this.touches[0].clientY},{x:t.touches[0].clientX,y:t.touches[0].clientY})>this.activationDistance&&(this.initAnchor({clientX:t.touches[0].clientX,clientY:t.touches[0].clientY}),this.touchStarted=!0))},onMouseDown:function(t){if(this.movable&&t.button===0){var e={fake:!0,clientX:t.clientX,clientY:t.clientY};this.touches=[e],this.initAnchor(e),t.stopPropagation()}},onMouseMove:function(t){this.touches.length&&(this.processMove(t,[{fake:!0,clientX:t.clientX,clientY:t.clientY}]),t.preventDefault&&t.cancelable&&t.preventDefault(),t.stopPropagation())},onMouseUp:function(){this.processEnd()},initAnchor:function(t){var e=this.$refs.container.getBoundingClientRect(),n=e.left,o=e.top;this.anchor={x:t.clientX-n,y:t.clientY-o}},processMove:function(t,e){var n=Ge(e);if(this.touches.length){var o=this.$refs.container.getBoundingClientRect(),r=o.left,s=o.top;this.touches.length===1&&n.length===1&&this.$emit("move",new An({left:n[0].clientX-(r+this.anchor.x),top:n[0].clientY-(s+this.anchor.y)}))}},processEnd:function(){this.touches.length&&this.$emit("move-end"),this.touches=[]}},emits:["move","move-end"]};Qo.render=function(t,e,n,o,r,s){return i.openBlock(),i.createBlock("div",{ref:"container",onTouchstart:e[1]||(e[1]=function(){return s.onTouchStart&&s.onTouchStart.apply(s,arguments)}),onMousedown:e[2]||(e[2]=function(){return s.onMouseDown&&s.onMouseDown.apply(s,arguments)})},[i.renderSlot(t.$slots,"default")],544)};function Ln(t){var e,n;return{rotate:t.rotate||0,flip:{horizontal:((e=t==null?void 0:t.flip)===null||e===void 0?void 0:e.horizontal)||!1,vertical:((n=t==null?void 0:t.flip)===null||n===void 0?void 0:n.vertical)||!1}}}function yc(t){return new Promise(function(e,n){try{if(t)if(/^data:/i.test(t))e(function(l){l=l.replace(/^data:([^;]+);base64,/gim,"");for(var u=atob(l),h=u.length,f=new ArrayBuffer(h),m=new Uint8Array(f),g=0;g<h;g++)m[g]=u.charCodeAt(g);return f}(t));else if(/^blob:/i.test(t)){var o=new FileReader;o.onload=function(l){e(l.target.result)},s=t,a=function(l){o.readAsArrayBuffer(l)},(c=new XMLHttpRequest).open("GET",s,!0),c.responseType="blob",c.onload=function(){this.status!=200&&this.status!==0||a(this.response)},c.send()}else{var r=new XMLHttpRequest;r.onreadystatechange=function(){r.readyState===4&&(r.status===200||r.status===0?e(r.response):n("Warning: could not load an image to parse its orientation"),r=null)},r.onprogress=function(){r.getResponseHeader("content-type")!=="image/jpeg"&&r.abort()},r.withCredentials=!1,r.open("GET",t,!0),r.responseType="arraybuffer",r.send(null)}else n("Error: the image is empty")}catch(l){n(l)}var s,a,c})}function Ko(t){var e=t.rotate,n=t.flip,o=t.scaleX,r=t.scaleY,s="";return s+=" rotate("+e+"deg) ",s+=" scaleX("+o*(n.horizontal?-1:1)+") ",s+=" scaleY("+r*(n.vertical?-1:1)+") "}function wc(t){try{var e,n=new DataView(t),o=void 0,r=void 0,s=void 0,a=void 0;if(n.getUint8(0)===255&&n.getUint8(1)===216)for(var c=n.byteLength,l=2;l+1<c;){if(n.getUint8(l)===255&&n.getUint8(l+1)===225){s=l;break}l++}if(s&&(o=s+10,function(g,p,E){var w,M="";for(w=p,E+=p;w<E;w++)M+=String.fromCharCode(g.getUint8(w));return M}(n,s+4,4)==="Exif")){var u=n.getUint16(o);if(((r=u===18761)||u===19789)&&n.getUint16(o+2,r)===42){var h=n.getUint32(o+4,r);h>=8&&(a=o+h)}}if(a){for(var f=n.getUint16(a,r),m=0;m<f;m++)if(l=a+12*m+2,n.getUint16(l,r)===274){l+=8,e=n.getUint16(l,r),n.setUint16(l,1,r);break}}return e}catch{return null}}function er(t,e){var n=e.getBoundingClientRect(),o=n.left,r=n.top,s={left:0,top:0},a=0;return t.forEach(function(c){s.left+=(c.clientX-o)/t.length,s.top+=(c.clientY-r)/t.length}),t.forEach(function(c){a+=Lo({x:s.left,y:s.top},{x:c.clientX-o,y:c.clientY-r})}),{centerMass:s,spread:a,count:t.length}}var tr={props:{touchMove:{type:Boolean,required:!0},mouseMove:{type:Boolean,required:!0},touchResize:{type:Boolean,required:!0},wheelResize:{type:[Boolean,Object],required:!0},eventsFilter:{type:Function,required:!1}},beforeMount:function(){window.addEventListener("mouseup",this.onMouseUp,{passive:!1}),window.addEventListener("mousemove",this.onMouseMove,{passive:!1}),window.addEventListener("touchmove",this.onTouchMove,{passive:!1}),window.addEventListener("touchend",this.onTouchEnd,{passive:!1})},beforeUnmount:function(){window.removeEventListener("mouseup",this.onMouseUp),window.removeEventListener("mousemove",this.onMouseMove),window.removeEventListener("touchmove",this.onTouchMove),window.removeEventListener("touchend",this.onTouchEnd)},created:function(){this.transforming=!1,this.debouncedProcessEnd=Rn(this.processEnd),this.touches=[]},methods:{processMove:function(t,e){if(this.touches.length){if(this.touches.length===1&&e.length===1)this.$emit("move",new wt({left:this.touches[0].clientX-e[0].clientX,top:this.touches[0].clientY-e[0].clientY}));else if(this.touches.length>1&&this.touchResize){var n=er(e,this.$refs.container),o=this.oldGeometricProperties;o.count===n.count&&o.count>1&&this.$emit("resize",new wt({left:o.centerMass.left-n.centerMass.left,top:o.centerMass.top-n.centerMass.top},{factor:o.spread/n.spread,center:n.centerMass})),this.oldGeometricProperties=n}this.touches=e}},processEnd:function(){this.transforming&&(this.transforming=!1,this.$emit("transform-end"))},processStart:function(){this.transforming=!0,this.debouncedProcessEnd.clear()},processEvent:function(t){return this.eventsFilter?this.eventsFilter(t,this.transforming)!==!1:(t.preventDefault(),t.stopPropagation(),!0)},onTouchStart:function(t){if(t.cancelable&&(this.touchMove||this.touchResize&&t.touches.length>1)&&this.processEvent(t)){var e=this.$refs.container,n=e.getBoundingClientRect(),o=n.left,r=n.top,s=n.bottom,a=n.right;this.touches=Ge(t.touches).filter(function(c){return c.clientX>o&&c.clientX<a&&c.clientY>r&&c.clientY<s}),this.oldGeometricProperties=er(this.touches,e)}},onTouchEnd:function(t){t.touches.length===0&&(this.touches=[],this.processEnd())},onTouchMove:function(t){var e=this;if(this.touches.length){var n=Ge(t.touches).filter(function(o){return!o.identifier||e.touches.find(function(r){return r.identifier===o.identifier})});this.processEvent(t)&&(this.processMove(t,n),this.processStart())}},onMouseDown:function(t){if(this.mouseMove&&"buttons"in t&&t.buttons===1&&this.processEvent(t)){var e={fake:!0,clientX:t.clientX,clientY:t.clientY};this.touches=[e],this.processStart()}},onMouseMove:function(t){this.touches.length&&this.processEvent(t)&&this.processMove(t,[{clientX:t.clientX,clientY:t.clientY}])},onMouseUp:function(){this.touches=[],this.processEnd()},onWheel:function(t){if(this.wheelResize&&this.processEvent(t)){var e=this.$refs.container.getBoundingClientRect(),n=e.left,o=e.top,r=1+this.wheelResize.ratio*(a=t.deltaY||t.detail||t.wheelDelta,(c=+a)==0||Oo(c)?c:c>0?1:-1),s={left:t.clientX-n,top:t.clientY-o};this.$emit("resize",new wt({},{factor:r,center:s})),this.touches.length||this.debouncedProcessEnd()}var a,c}},emits:["resize","move","transform-end"]};tr.render=function(t,e,n,o,r,s){return i.openBlock(),i.createBlock("div",{ref:"container",onTouchstart:e[1]||(e[1]=function(){return s.onTouchStart&&s.onTouchStart.apply(s,arguments)}),onMousedown:e[2]||(e[2]=function(){return s.onMouseDown&&s.onMouseDown.apply(s,arguments)}),onWheel:e[3]||(e[3]=function(){return s.onWheel&&s.onWheel.apply(s,arguments)})},[i.renderSlot(t.$slots,"default")],544)};var Hn={components:{TransformableImage:tr},props:{touchMove:{type:Boolean,required:!0},mouseMove:{type:Boolean,required:!0},touchResize:{type:Boolean,required:!0},wheelResize:{type:[Boolean,Object],required:!0}},emits:["resize","move"]};Hn.render=function(t,e,n,o,r,s){var a=i.resolveComponent("transformable-image");return i.openBlock(),i.createBlock(a,{"touch-move":n.touchMove,"touch-resize":n.touchResize,"mouse-move":n.mouseMove,"wheel-resize":n.wheelResize,onMove:e[1]||(e[1]=function(c){return t.$emit("move",c)}),onResize:e[2]||(e[2]=function(c){return t.$emit("resize",c)})},{default:i.withCtx(function(){return[i.renderSlot(t.$slots,"default")]}),_:3},8,["touch-move","touch-resize","mouse-move","wheel-resize"])};var Gt=xe("vue-preview"),nr={props:{coordinates:{type:Object},transitions:{type:Object},image:{type:Object,default:function(){return{}}},imageClass:{type:String},width:{type:Number},height:{type:Number},fill:{type:Boolean}},data:function(){return{calculatedImageSize:{width:0,height:0},calculatedSize:{width:0,height:0}}},computed:{classes:function(){return{root:Gt({fill:this.fill}),wrapper:Gt("wrapper"),imageWrapper:Gt("image-wrapper"),image:K(Gt("image"),this.imageClass)}},style:function(){if(this.fill)return{};var t={};return this.width&&(t.width="".concat(this.size.width,"px")),this.height&&(t.height="".concat(this.size.height,"px")),this.transitions&&this.transitions.enabled&&(t.transition="".concat(this.transitions.time,"ms ").concat(this.transitions.timingFunction)),t},wrapperStyle:function(){var t={width:"".concat(this.size.width,"px"),height:"".concat(this.size.height,"px"),left:"calc(50% - ".concat(this.size.width/2,"px)"),top:"calc(50% - ".concat(this.size.height/2,"px)")};return this.transitions&&this.transitions.enabled&&(t.transition="".concat(this.transitions.time,"ms ").concat(this.transitions.timingFunction)),t},imageStyle:function(){if(this.coordinates&&this.image){var t=this.coordinates.width/this.size.width,e=W(W({rotate:0,flip:{horizontal:!1,vertical:!1}},this.image.transforms),{},{scaleX:1/t,scaleY:1/t}),n=this.imageSize.width,o=this.imageSize.height,r=jo({width:n,height:o},e.rotate),s={width:"".concat(n,"px"),height:"".concat(o,"px"),left:"0px",top:"0px"},a={rotate:{left:(n-r.width)*e.scaleX/2,top:(o-r.height)*e.scaleY/2},scale:{left:(1-e.scaleX)*n/2,top:(1-e.scaleY)*o/2}};return s.transform=`translate(
|
|
33
|
-
`.concat(-this.coordinates.left/t-a.rotate.left-a.scale.left,"px,").concat(-this.coordinates.top/t-a.rotate.top-a.scale.top,"px) ")+Ko(e),this.transitions&&this.transitions.enabled&&(s.transition="".concat(this.transitions.time,"ms ").concat(this.transitions.timingFunction)),s}return{}},size:function(){return{width:this.width||this.calculatedSize.width,height:this.height||this.calculatedSize.height}},imageSize:function(){return{width:this.image.width||this.calculatedImageSize.width,height:this.image.height||this.calculatedImageSize.height}}},watch:{image:function(t){(t.width||t.height)&&this.onChangeImage()}},mounted:function(){var t=this;this.onChangeImage(),this.$refs.image.addEventListener("load",function(){t.refreshImage()}),window.addEventListener("resize",this.refresh),window.addEventListener("orientationchange",this.refresh)},unmounted:function(){window.removeEventListener("resize",this.refresh),window.removeEventListener("orientationchange",this.refresh)},methods:{refreshImage:function(){var t=this.$refs.image;this.calculatedImageSize.height=t.naturalHeight,this.calculatedImageSize.width=t.naturalWidth},refresh:function(){var t=this.$refs.root;this.width||(this.calculatedSize.width=t.clientWidth),this.height||(this.calculatedSize.height=t.clientHeight)},onChangeImage:function(){var t=this.$refs.image;t&&t.complete&&this.refreshImage(),this.refresh()}}};nr.render=function(t,e,n,o,r,s){return i.openBlock(),i.createBlock("div",{ref:"root",class:s.classes.root,style:s.style},[i.createVNode("div",{ref:"wrapper",class:s.classes.wrapper,style:s.wrapperStyle},[i.withDirectives(i.createVNode("img",{ref:"image",src:n.image&&n.image.src,class:s.classes.image,style:s.imageStyle},null,14,["src"]),[[i.vShow,n.image&&n.image.src]])],6)],6)};var ir={components:{Preview:nr},inheritAttrs:!1};ir.render=function(t,e,n,o,r,s){var a=i.resolveComponent("preview");return i.openBlock(),i.createBlock(a,i.mergeProps(t.$attrs,{fill:!0}),null,16)};var qn=xe("vue-rectangle-stencil"),or={name:"RectangleStencil",components:{StencilPreview:ir,BoundingBox:Yo,DraggableArea:Qo},props:{image:{type:Object},coordinates:{type:Object},stencilCoordinates:{type:Object},handlers:{type:Object},handlersComponent:{type:[Object,String],default:function(){return Fn}},lines:{type:Object},linesComponent:{type:[Object,String],default:function(){return Dn}},aspectRatio:{type:[Number,String]},minAspectRatio:{type:[Number,String]},maxAspectRatio:{type:[Number,String]},movable:{type:Boolean,default:!0},resizable:{type:Boolean,default:!0},transitions:{type:Object},movingClass:{type:String},resizingClass:{type:String},previewClass:{type:String},boundingBoxClass:{type:String},linesClasses:{type:Object,default:function(){return{}}},linesWrappersClasses:{type:Object,default:function(){return{}}},handlersClasses:{type:Object,default:function(){return{}}},handlersWrappersClasses:{type:Object,default:function(){return{}}}},data:function(){return{moving:!1,resizing:!1}},computed:{classes:function(){return{stencil:K(qn({movable:this.movable,moving:this.moving,resizing:this.resizing}),this.moving&&this.movingClass,this.resizing&&this.resizingClass),preview:K(qn("preview"),this.previewClass),boundingBox:K(qn("bounding-box"),this.boundingBoxClass)}},style:function(){var t=this.stencilCoordinates,e=t.height,n=t.width,o=t.left,r=t.top,s={width:"".concat(n,"px"),height:"".concat(e,"px"),transform:"translate(".concat(o,"px, ").concat(r,"px)")};return this.transitions&&this.transitions.enabled&&(s.transition="".concat(this.transitions.time,"ms ").concat(this.transitions.timingFunction)),s}},methods:{onMove:function(t){this.$emit("move",t),this.moving=!0},onMoveEnd:function(){this.$emit("move-end"),this.moving=!1},onResize:function(t){this.$emit("resize",t),this.resizing=!0},onResizeEnd:function(){this.$emit("resize-end"),this.resizing=!1},aspectRatios:function(){return{minimum:this.aspectRatio||this.minAspectRatio,maximum:this.aspectRatio||this.maxAspectRatio}}},emits:["resize","resize-end","move","move-end"]};or.render=function(t,e,n,o,r,s){var a=i.resolveComponent("stencil-preview"),c=i.resolveComponent("draggable-area"),l=i.resolveComponent("bounding-box");return i.openBlock(),i.createBlock("div",{class:s.classes.stencil,style:s.style},[i.createVNode(l,{width:n.stencilCoordinates.width,height:n.stencilCoordinates.height,transitions:n.transitions,class:s.classes.boundingBox,handlers:n.handlers,"handlers-component":n.handlersComponent,"handlers-classes":n.handlersClasses,"handlers-wrappers-classes":n.handlersWrappersClasses,lines:n.lines,"lines-component":n.linesComponent,"lines-classes":n.linesClasses,"lines-wrappers-classes":n.linesWrappersClasses,resizable:n.resizable,onResize:s.onResize,onResizeEnd:s.onResizeEnd},{default:i.withCtx(function(){return[i.createVNode(c,{movable:n.movable,onMove:s.onMove,onMoveEnd:s.onMoveEnd},{default:i.withCtx(function(){return[i.createVNode(a,{image:n.image,coordinates:n.coordinates,width:n.stencilCoordinates.width,height:n.stencilCoordinates.height,class:s.classes.preview,transitions:n.transitions},null,8,["image","coordinates","width","height","class","transitions"])]}),_:1},8,["movable","onMove","onMoveEnd"])]}),_:1},8,["width","height","transitions","class","handlers","handlers-component","handlers-classes","handlers-wrappers-classes","lines","lines-component","lines-classes","lines-wrappers-classes","resizable","onResize","onResizeEnd"])],6)};var bc=["transitions"],Le=xe("vue-advanced-cropper"),rr={name:"Cropper",components:{BackgroundWrapper:Hn},props:{src:{type:String,default:null},stencilComponent:{type:[Object,String],default:function(){return or}},backgroundWrapperComponent:{type:[Object,String],default:function(){return Hn}},stencilProps:{type:Object,default:function(){return{}}},autoZoom:{type:Boolean,default:!1},imageClass:{type:String},boundariesClass:{type:String},backgroundClass:{type:String},foregroundClass:{type:String},minWidth:{type:[Number,String]},minHeight:{type:[Number,String]},maxWidth:{type:[Number,String]},maxHeight:{type:[Number,String]},debounce:{type:[Boolean,Number],default:500},transitions:{type:Boolean,default:!0},checkOrientation:{type:Boolean,default:!0},canvas:{type:[Object,Boolean],default:!0},crossOrigin:{type:[Boolean,String],default:void 0},transitionTime:{type:Number,default:300},imageRestriction:{type:String,default:"fit-area",validator:function(t){return Yl.indexOf(t)!==-1}},roundResult:{type:Boolean,default:!0},defaultSize:{type:[Function,Object]},defaultPosition:{type:[Function,Object]},defaultVisibleArea:{type:[Function,Object]},defaultTransforms:{type:[Function,Object]},defaultBoundaries:{type:[Function,String],validator:function(t){return!(typeof t=="string"&&t!=="fill"&&t!=="fit")}},priority:{type:String,default:"coordinates"},stencilSize:{type:[Object,Function]},resizeImage:{type:[Boolean,Object],default:!0},moveImage:{type:[Boolean,Object],default:!0},autoZoomAlgorithm:{type:Function},resizeAlgorithm:{type:Function,default:function(t){var e=t.event,n=t.coordinates,o=t.aspectRatio,r=t.positionRestrictions,s=t.sizeRestrictions,a=N(N({},n),{right:n.left+n.width,bottom:n.top+n.height}),c=e.params||{},l=N({},e.directions),u=c.allowedDirections||{left:!0,right:!0,bottom:!0,top:!0};s.widthFrozen&&(l.left=0,l.right=0),s.heightFrozen&&(l.top=0,l.bottom=0),Ae.forEach(function(F){u[F]||(l[F]=0)});var h=Pe(a,l=Jo({coordinates:a,directions:l,sizeRestrictions:s,positionRestrictions:r})).width,f=Pe(a,l).height,m=c.preserveRatio?j(a):zn(h/f,o);if(m){var g=c.respectDirection;if(g||(g=a.width>=a.height||m===1?"width":"height"),g==="width"){var p=h/m-a.height;if(u.top&&u.bottom){var E=l.top,w=l.bottom;l.bottom=jt(p,w,E),l.top=jt(p,E,w)}else u.bottom?l.bottom=p:u.top?l.top=p:u.right?l.right=0:u.left&&(l.left=0)}else if(g==="height"){var M=a.width-f*m;if(u.left&&u.right){var O=l.left,L=l.right;l.left=-jt(M,O,L),l.right=-jt(M,L,O)}else u.left?l.left=-M:u.right?l.right=-M:u.top?l.top=0:u.bottom&&(l.bottom=0)}l=Jo({directions:l,coordinates:a,sizeRestrictions:s,positionRestrictions:r,preserveRatio:!0,compensate:c.compensate})}return h=Pe(a,l).width,f=Pe(a,l).height,(m=c.preserveRatio?j(a):zn(h/f,o))&&Math.abs(m-h/f)>.001&&Ae.forEach(function(F){u[F]||(l[F]=0)}),Tn({event:new An({left:-l.left,top:-l.top}),coordinates:{width:n.width+l.right+l.left,height:n.height+l.top+l.bottom,left:n.left,top:n.top},positionRestrictions:r})}},moveAlgorithm:{type:Function,default:Tn},initStretcher:{type:Function,default:function(t){var e=t.stretcher,n=t.imageSize,o=j(n);e.style.width=n.width+"px",e.style.height=e.clientWidth/o+"px",e.style.width=e.clientWidth+"px"}},fitCoordinates:{type:Function,default:function(t){var e=t.visibleArea,n=t.coordinates,o=t.aspectRatio,r=t.sizeRestrictions,s=t.positionRestrictions,a=N(N({},n),Oe({width:n.width,height:n.height,aspectRatio:o,sizeRestrictions:{maxWidth:e.width,maxHeight:e.height,minHeight:Math.min(e.height,r.minHeight),minWidth:Math.min(e.width,r.minWidth)}}));return a=ae(a=he(a,ot(se(n),se(a))),_t(Ne(e),s))}},fitVisibleArea:{type:Function,default:function(t){var e=t.visibleArea,n=t.boundaries,o=t.getAreaRestrictions,r=t.coordinates,s=N({},e);s.height=s.width/j(n),s.top+=(e.height-s.height)/2,(r.height-s.height>0||r.width-s.width>0)&&(s=Ce(s,Math.max(r.height/s.height,r.width/s.width)));var a=qt(st(r,Ne(s=Ce(s,Ut(s,o({visibleArea:s,type:"resize"}))))));return s.width<r.width&&(a.left=0),s.height<r.height&&(a.top=0),s=ae(s=he(s,a),o({visibleArea:s,type:"move"}))}},areaRestrictionsAlgorithm:{type:Function,default:function(t){var e=t.visibleArea,n=t.boundaries,o=t.imageSize,r=t.imageRestriction,s=t.type,a={};return r==="fill-area"?a={left:0,top:0,right:o.width,bottom:o.height}:r==="fit-area"&&(j(n)>j(o)?(a={top:0,bottom:o.height},e&&s==="move"&&(e.width>o.width?(a.left=-(e.width-o.width)/2,a.right=o.width-a.left):(a.left=0,a.right=o.width))):(a={left:0,right:o.width},e&&s==="move"&&(e.height>o.height?(a.top=-(e.height-o.height)/2,a.bottom=o.height-a.top):(a.top=0,a.bottom=o.height)))),a}},sizeRestrictionsAlgorithm:{type:Function,default:function(t){return{minWidth:t.minWidth,minHeight:t.minHeight,maxWidth:t.maxWidth,maxHeight:t.maxHeight}}},positionRestrictionsAlgorithm:{type:Function,default:function(t){var e=t.imageSize,n={};return t.imageRestriction!=="none"&&(n={left:0,top:0,right:e.width,bottom:e.height}),n}}},data:function(){return{transitionsActive:!1,imageLoaded:!1,imageAttributes:{width:null,height:null,crossOrigin:null,src:null},defaultImageTransforms:{rotate:0,flip:{horizontal:!1,vertical:!1}},appliedImageTransforms:{rotate:0,flip:{horizontal:!1,vertical:!1}},boundaries:{width:0,height:0},visibleArea:null,coordinates:W({},Uo)}},computed:{image:function(){return{src:this.imageAttributes.src,width:this.imageAttributes.width,height:this.imageAttributes.height,transforms:this.imageTransforms}},imageTransforms:function(){return{rotate:this.appliedImageTransforms.rotate,flip:{horizontal:this.appliedImageTransforms.flip.horizontal,vertical:this.appliedImageTransforms.flip.vertical},translateX:this.visibleArea?this.visibleArea.left/this.coefficient:0,translateY:this.visibleArea?this.visibleArea.top/this.coefficient:0,scaleX:1/this.coefficient,scaleY:1/this.coefficient}},imageSize:function(){var t=function(e){return e*Math.PI/180}(this.imageTransforms.rotate);return{width:Math.abs(this.imageAttributes.width*Math.cos(t))+Math.abs(this.imageAttributes.height*Math.sin(t)),height:Math.abs(this.imageAttributes.width*Math.sin(t))+Math.abs(this.imageAttributes.height*Math.cos(t))}},initialized:function(){return!!(this.visibleArea&&this.imageLoaded)},settings:function(){var t=$n(this.resizeImage,{touch:!0,wheel:{ratio:.1},adjustStencil:!0},{touch:!1,wheel:!1,adjustStencil:!1});return{moveImage:$n(this.moveImage,{touch:!0,mouse:!0},{touch:!1,mouse:!1}),resizeImage:t}},coefficient:function(){return this.visibleArea?this.visibleArea.width/this.boundaries.width:0},areaRestrictions:function(){return this.imageLoaded?this.areaRestrictionsAlgorithm({imageSize:this.imageSize,imageRestriction:this.imageRestriction,boundaries:this.boundaries}):{}},transitionsOptions:function(){return{enabled:this.transitionsActive,timingFunction:"ease-in-out",time:350}},sizeRestrictions:function(){if(this.boundaries.width&&this.boundaries.height&&this.imageSize.width&&this.imageSize.height){var t=this.sizeRestrictionsAlgorithm({imageSize:this.imageSize,minWidth:ie(this.minWidth)?0:Ht(this.minWidth),minHeight:ie(this.minHeight)?0:Ht(this.minHeight),maxWidth:ie(this.maxWidth)?1/0:Ht(this.maxWidth),maxHeight:ie(this.maxHeight)?1/0:Ht(this.maxHeight)});if(t=function(o){var r=o.areaRestrictions,s=o.sizeRestrictions,a=o.boundaries,c=o.positionRestrictions,l=N(N({},s),{minWidth:s.minWidth!==void 0?s.minWidth:0,minHeight:s.minHeight!==void 0?s.minHeight:0,maxWidth:s.maxWidth!==void 0?s.maxWidth:1/0,maxHeight:s.maxHeight!==void 0?s.maxHeight:1/0});c.left!==void 0&&c.right!==void 0&&(l.maxWidth=Math.min(l.maxWidth,c.right-c.left)),c.bottom!==void 0&&c.top!==void 0&&(l.maxHeight=Math.min(l.maxHeight,c.bottom-c.top));var u=Vn(r),h=Wo(a,u);return u.width<1/0&&(!l.maxWidth||l.maxWidth>h.width)&&(l.maxWidth=Math.min(l.maxWidth,h.width)),u.height<1/0&&(!l.maxHeight||l.maxHeight>h.height)&&(l.maxHeight=Math.min(l.maxHeight,h.height)),l.minWidth>l.maxWidth&&(l.minWidth=l.maxWidth,l.widthFrozen=!0),l.minHeight>l.maxHeight&&(l.minHeight=l.maxHeight,l.heightFrozen=!0),l}({sizeRestrictions:t,areaRestrictions:this.getAreaRestrictions({visibleArea:this.visibleArea,type:"resize"}),imageSize:this.imageSize,boundaries:this.boundaries,positionRestrictions:this.positionRestrictions,imageRestriction:this.imageRestriction,visibleArea:this.visibleArea,stencilSize:this.getStencilSize()}),this.visibleArea&&this.stencilSize){var e=this.getStencilSize(),n=Vn(this.getAreaRestrictions({visibleArea:this.visibleArea,type:"resize"}));t.maxWidth=Math.min(t.maxWidth,n.width*e.width/this.boundaries.width),t.maxHeight=Math.min(t.maxHeight,n.height*e.height/this.boundaries.height),t.maxWidth<t.minWidth&&(t.minWidth=t.maxWidth),t.maxHeight<t.minHeight&&(t.minHeight=t.maxHeight)}return t}return{minWidth:0,minHeight:0,maxWidth:0,maxHeight:0}},positionRestrictions:function(){return this.positionRestrictionsAlgorithm({imageSize:this.imageSize,imageRestriction:this.imageRestriction})},classes:function(){return{cropper:Le(),image:K(Le("image"),this.imageClass),stencil:Le("stencil"),boundaries:K(Le("boundaries"),this.boundariesClass),stretcher:K(Le("stretcher")),background:K(Le("background"),this.backgroundClass),foreground:K(Le("foreground"),this.foregroundClass),imageWrapper:K(Le("image-wrapper")),cropperWrapper:K(Le("cropper-wrapper"))}},stencilCoordinates:function(){if(this.initialized){var t=this.coordinates,e=t.width,n=t.height,o=t.left,r=t.top;return{width:e/this.coefficient,height:n/this.coefficient,left:(o-this.visibleArea.left)/this.coefficient,top:(r-this.visibleArea.top)/this.coefficient}}return this.defaultCoordinates()},boundariesStyle:function(){var t={width:this.boundaries.width?"".concat(Math.round(this.boundaries.width),"px"):"auto",height:this.boundaries.height?"".concat(Math.round(this.boundaries.height),"px"):"auto",transition:"opacity ".concat(this.transitionTime,"ms"),pointerEvents:this.imageLoaded?"all":"none"};return this.imageLoaded||(t.opacity="0"),t},imageStyle:function(){var t=this.imageAttributes.width>this.imageAttributes.height?{width:Math.min(1024,this.imageAttributes.width),height:Math.min(1024,this.imageAttributes.width)/(this.imageAttributes.width/this.imageAttributes.height)}:{height:Math.min(1024,this.imageAttributes.height),width:Math.min(1024,this.imageAttributes.height)*(this.imageAttributes.width/this.imageAttributes.height)},e={left:(t.width-this.imageSize.width)/(2*this.coefficient),top:(t.height-this.imageSize.height)/(2*this.coefficient)},n={left:(1-1/this.coefficient)*t.width/2,top:(1-1/this.coefficient)*t.height/2},o=W(W({},this.imageTransforms),{},{scaleX:this.imageTransforms.scaleX*(this.imageAttributes.width/t.width),scaleY:this.imageTransforms.scaleY*(this.imageAttributes.height/t.height)}),r={width:"".concat(t.width,"px"),height:"".concat(t.height,"px"),left:"0px",top:"0px",transform:"translate(".concat(-e.left-n.left-this.imageTransforms.translateX,"px, ").concat(-e.top-n.top-this.imageTransforms.translateY,"px)")+Ko(o)};return this.transitionsOptions.enabled&&(r.transition="".concat(this.transitionsOptions.time,"ms ").concat(this.transitionsOptions.timingFunction)),r}},watch:{src:function(){this.onChangeImage()},stencilComponent:function(){var t=this;this.$nextTick(function(){t.resetCoordinates(),t.runAutoZoom("setCoordinates"),t.onChange()})},minWidth:function(){this.onPropsChange()},maxWidth:function(){this.onPropsChange()},minHeight:function(){this.onPropsChange()},maxHeight:function(){this.onPropsChange()},imageRestriction:function(){this.reset()},stencilProps:function(t,e){["aspectRatio","minAspectRatio","maxAspectRatio"].find(function(n){return t[n]!==e[n]})&&this.$nextTick(this.onPropsChange)}},created:function(){this.debouncedUpdate=Rn(this.update,this.debounce),this.debouncedDisableTransitions=Rn(this.disableTransitions,this.transitionsOptions.time),this.awaiting=!1},mounted:function(){this.$refs.image.addEventListener("load",this.onSuccessLoadImage),this.$refs.image.addEventListener("error",this.onFailLoadImage),this.onChangeImage(),window.addEventListener("resize",this.refresh),window.addEventListener("orientationchange",this.refresh)},unmounted:function(){window.removeEventListener("resize",this.refresh),window.removeEventListener("orientationchange",this.refresh),this.imageAttributes.revoke&&this.imageAttributes.src&&URL.revokeObjectURL(this.imageAttributes.src),this.debouncedUpdate.clear(),this.debouncedDisableTransitions.clear()},methods:{getResult:function(){var t=this.initialized?this.prepareResult(W({},this.coordinates)):this.defaultCoordinates(),e={rotate:this.imageTransforms.rotate%360,flip:W({},this.imageTransforms.flip)};if(this.src&&this.imageLoaded){var n=this;return{image:this.image,coordinates:t,visibleArea:this.visibleArea?W({},this.visibleArea):null,imageTransforms:e,get canvas(){return n.canvas?n.getCanvas():void 0}}}return{image:this.image,coordinates:t,visibleArea:this.visibleArea?W({},this.visibleArea):null,canvas:void 0,imageTransforms:e}},zoom:function(t,e){var n=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{},o=n.transitions,r=o===void 0||o;this.onManipulateImage(new wt({},{factor:1/t,center:e}),{normalize:!1,transitions:r})},move:function(t,e){var n=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{},o=n.transitions,r=o===void 0||o;this.onManipulateImage(new wt({left:t||0,top:e||0}),{normalize:!1,transitions:r})},setCoordinates:function(t){var e=this,n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},o=n.autoZoom,r=o===void 0||o,s=n.transitions,a=s===void 0||s;this.$nextTick(function(){e.imageLoaded?(e.transitionsActive||(a&&e.enableTransitions(),e.coordinates=e.applyTransform(t),r&&e.runAutoZoom("setCoordinates"),a&&e.debouncedDisableTransitions()),e.onChange()):e.delayedTransforms=t})},refresh:function(){var t=this,e=this.$refs.image;if(this.src&&e)return this.initialized?this.updateVisibleArea().then(function(){t.onChange()}):this.resetVisibleArea().then(function(){t.onChange()})},reset:function(){var t=this;return this.resetVisibleArea().then(function(){t.onChange(!1)})},awaitRender:function(t){var e=this;this.awaiting||(this.awaiting=!0,this.$nextTick(function(){t(),e.awaiting=!1}))},prepareResult:function(t){return this.roundResult?function(e){var n=e.coordinates,o=e.sizeRestrictions,r=e.positionRestrictions,s={width:Math.round(n.width),height:Math.round(n.height),left:Math.round(n.left),top:Math.round(n.top)};return s.width>o.maxWidth?s.width=Math.floor(n.width):s.width<o.minWidth&&(s.width=Math.ceil(n.width)),s.height>o.maxHeight?s.height=Math.floor(n.height):s.height<o.minHeight&&(s.height=Math.ceil(n.height)),ae(s,r)}(W(W({},this.getPublicProperties()),{},{positionRestrictions:Wt(this.positionRestrictions,this.visibleArea),coordinates:t})):t},processAutoZoom:function(t,e,n,o){var r=this.autoZoomAlgorithm;r||(r=this.stencilSize?ec:this.autoZoom?tc:nc);var s=r({event:{type:t,params:o},visibleArea:e,coordinates:n,boundaries:this.boundaries,aspectRatio:this.getAspectRatio(),positionRestrictions:this.positionRestrictions,getAreaRestrictions:this.getAreaRestrictions,sizeRestrictions:this.sizeRestrictions,stencilSize:this.getStencilSize()});return W(W({},s),{},{changed:!_o(s.visibleArea,e)||!_o(s.coordinates,n)})},runAutoZoom:function(t){var e=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},n=e.transitions,o=n!==void 0&&n,r=Ul(e,bc),s=this.processAutoZoom(t,this.visibleArea,this.coordinates,r),a=s.visibleArea,c=s.coordinates,l=s.changed;o&&l&&this.enableTransitions(),this.visibleArea=a,this.coordinates=c,o&&l&&this.debouncedDisableTransitions()},normalizeEvent:function(t){return function(e){var n=e.event,o=e.visibleArea,r=e.coefficient;if(n.type==="manipulateImage")return N(N({},n),{move:{left:n.move&&n.move.left?r*n.move.left:0,top:n.move&&n.move.top?r*n.move.top:0},scale:{factor:n.scale&&n.scale.factor?n.scale.factor:1,center:n.scale&&n.scale.center?{left:n.scale.center.left*r+o.left,top:n.scale.center.top*r+o.top}:null}});if(n.type==="resize"){var s=N(N({},n),{directions:N({},n.directions)});return Ae.forEach(function(c){s.directions[c]*=r}),s}if(n.type==="move"){var a=N(N({},n),{directions:N({},n.directions)});return Jl.forEach(function(c){a.directions[c]*=r}),a}return n}(W(W({},this.getPublicProperties()),{},{event:t}))},getCanvas:function(){if(this.$refs.canvas){var t=this.$refs.canvas,e=this.$refs.image,n=this.imageTransforms.rotate!==0||this.imageTransforms.flip.horizontal||this.imageTransforms.flip.vertical?function(c,l,u){var h=u.rotate,f=u.flip,m={width:l.naturalWidth,height:l.naturalHeight},g=jo(m,h),p=c.getContext("2d");c.height=g.height,c.width=g.width,p.save();var E=qe(se(N({left:0,top:0},m)),h);return p.translate(-(E.left-g.width/2),-(E.top-g.height/2)),p.rotate(h*Math.PI/180),p.translate(f.horizontal?m.width:0,f.vertical?m.height:0),p.scale(f.horizontal?-1:1,f.vertical?-1:1),p.drawImage(l,0,0,m.width,m.height),p.restore(),c}(this.$refs.sourceCanvas,e,this.imageTransforms):e,o=W({minWidth:0,minHeight:0,maxWidth:1/0,maxHeight:1/0,maxArea:this.maxCanvasSize,imageSmoothingEnabled:!0,imageSmoothingQuality:"high",fillColor:"transparent"},this.canvas),r=function(c){return c.find(function(l){return u=l,!Number.isNaN(parseFloat(u))&&isFinite(u);var u})},s=Oe({sizeRestrictions:{minWidth:r([o.width,o.minWidth])||0,minHeight:r([o.height,o.minHeight])||0,maxWidth:r([o.width,o.maxWidth])||1/0,maxHeight:r([o.height,o.maxHeight])||1/0},width:this.coordinates.width,height:this.coordinates.height,aspectRatio:{minimum:this.coordinates.width/this.coordinates.height,maximum:this.coordinates.width/this.coordinates.height}});if(o.maxArea&&s.width*s.height>o.maxArea){var a=Math.sqrt(o.maxArea/(s.width*s.height));s={width:Math.round(a*s.width),height:Math.round(a*s.height)}}return function(c,l,u,h,f){c.width=h?h.width:u.width,c.height=h?h.height:u.height;var m=c.getContext("2d");m.clearRect(0,0,c.width,c.height),f&&(f.imageSmoothingEnabled&&(m.imageSmoothingEnabled=f.imageSmoothingEnabled),f.imageSmoothingQuality&&(m.imageSmoothingQuality=f.imageSmoothingQuality),f.fillColor&&(m.fillStyle=f.fillColor,m.fillRect(0,0,c.width,c.height),m.save()));var g=u.left<0?-u.left:0,p=u.top<0?-u.top:0;m.drawImage(l,u.left+g,u.top+p,u.width,u.height,g*(c.width/u.width),p*(c.height/u.height),c.width,c.height)}(t,n,this.coordinates,s,o),t}},update:function(){this.$emit("change",this.getResult())},applyTransform:function(t){var e=arguments.length>1&&arguments[1]!==void 0&&arguments[1],n=this.visibleArea&&e?Ql(this.sizeRestrictions,this.visibleArea):this.sizeRestrictions,o=this.visibleArea&&e?Wt(this.positionRestrictions,this.visibleArea):this.positionRestrictions;return Kl({transform:t,coordinates:this.coordinates,imageSize:this.imageSize,sizeRestrictions:n,positionRestrictions:o,aspectRatio:this.getAspectRatio(),visibleArea:this.visibleArea})},resetCoordinates:function(){var t=this;if(this.$refs.image){this.$refs.cropper,this.$refs.image;var e=this.defaultSize;e||(e=this.stencilSize?rc:oc);var n=this.sizeRestrictions;n.minWidth,n.minHeight,n.maxWidth,n.maxHeight;var o=it(e)?e({boundaries:this.boundaries,imageSize:this.imageSize,aspectRatio:this.getAspectRatio(),sizeRestrictions:this.sizeRestrictions,stencilSize:this.getStencilSize(),visibleArea:this.visibleArea}):e,r=this.defaultPosition||ic,s=[o,function(a){var c=a.coordinates;return W({},it(r)?r({coordinates:c,imageSize:t.imageSize,visibleArea:t.visibleArea}):t.defaultPosition)}];this.delayedTransforms&&s.push.apply(s,Ge(Array.isArray(this.delayedTransforms)?this.delayedTransforms:[this.delayedTransforms])),this.coordinates=this.applyTransform(s,!0),this.delayedTransforms=null}},clearImage:function(){var t=this;this.imageLoaded=!1,setTimeout(function(){var e=t.$refs.stretcher;e&&(e.style.height="auto",e.style.width="auto"),t.coordinates=t.defaultCoordinates(),t.boundaries={width:0,height:0}},this.transitionTime)},enableTransitions:function(){this.transitions&&(this.transitionsActive=!0)},disableTransitions:function(){this.transitionsActive=!1},updateBoundaries:function(){var t=this,e=this.$refs.stretcher,n=this.$refs.cropper;return this.initStretcher({cropper:n,stretcher:e,imageSize:this.imageSize}),this.$nextTick().then(function(){var o={cropper:n,imageSize:t.imageSize};if(it(t.defaultBoundaries)?t.boundaries=t.defaultBoundaries(o):t.defaultBoundaries==="fit"?t.boundaries=function(r){var s=r.cropper,a=r.imageSize,c=s.clientHeight,l=s.clientWidth,u=c,h=a.width*c/a.height;return h>l&&(h=l,u=a.height*l/a.width),{width:h,height:u}}(o):t.boundaries=function(r){var s=r.cropper;return{width:s.clientWidth,height:s.clientHeight}}(o),!t.boundaries.width||!t.boundaries.height)throw new Error("It's impossible to fit the cropper in the current container")})},resetVisibleArea:function(){var t=this;return this.appliedImageTransforms=W(W({},this.defaultImageTransforms),{},{flip:W({},this.defaultImageTransforms.flip)}),this.updateBoundaries().then(function(){t.priority!=="visible-area"&&(t.visibleArea=null,t.resetCoordinates());var e,n,o,r,s,a,c=t.defaultVisibleArea||sc;t.visibleArea=it(c)?c({imageSize:t.imageSize,boundaries:t.boundaries,coordinates:t.priority!=="visible-area"?t.coordinates:null,getAreaRestrictions:t.getAreaRestrictions,stencilSize:t.getStencilSize()}):t.defaultVisibleArea,t.visibleArea=(e={visibleArea:t.visibleArea,boundaries:t.boundaries,getAreaRestrictions:t.getAreaRestrictions},n=e.visibleArea,o=e.boundaries,r=e.getAreaRestrictions,s=N({},n),a=j(o),s.width/s.height!==a&&(s.height=s.width/a),ae(s,r({visibleArea:s,type:"move"}))),t.priority==="visible-area"?t.resetCoordinates():t.coordinates=t.fitCoordinates({visibleArea:t.visibleArea,coordinates:t.coordinates,aspectRatio:t.getAspectRatio(),positionRestrictions:t.positionRestrictions,sizeRestrictions:t.sizeRestrictions}),t.runAutoZoom("resetVisibleArea")}).catch(function(){t.visibleArea=null})},updateVisibleArea:function(){var t=this;return this.updateBoundaries().then(function(){t.visibleArea=t.fitVisibleArea({imageSize:t.imageSize,boundaries:t.boundaries,visibleArea:t.visibleArea,coordinates:t.coordinates,getAreaRestrictions:t.getAreaRestrictions}),t.coordinates=t.fitCoordinates({visibleArea:t.visibleArea,coordinates:t.coordinates,aspectRatio:t.getAspectRatio(),positionRestrictions:t.positionRestrictions,sizeRestrictions:t.sizeRestrictions}),t.runAutoZoom("updateVisibleArea")}).catch(function(){t.visibleArea=null})},onChange:function(){var t=!(arguments.length>0&&arguments[0]!==void 0)||arguments[0];t&&this.debounce?this.debouncedUpdate():this.update()},onChangeImage:function(){var t,e=this;if(this.imageLoaded=!1,this.delayedTransforms=null,this.src){if(function(r){if(Fo(r))return!1;var s=window.location,a=/(\w+:)?(?:\/\/)([\w.-]+)?(?::(\d+))?\/?/.exec(r)||[],c={protocol:a[1]||"",host:a[2]||"",port:a[3]||""},l=function(u){return u.port||((u.protocol||s.protocol)==="http"?80:433)};return!(!c.protocol&&!c.host&&!c.port||c.protocol&&c.protocol==s.protocol&&c.host&&c.host==s.host&&c.host&&l(c)==l(s))}(this.src)){var n=ie(this.crossOrigin)?this.canvas:this.crossOrigin;n===!0&&(n="anonymous"),this.imageAttributes.crossOrigin=n||null}if(this.checkOrientation){var o=(t=this.src,new Promise(function(r){yc(t).then(function(s){var a=wc(s);r(s?{source:t,arrayBuffer:s,orientation:a}:{source:t,arrayBuffer:null,orientation:null})}).catch(function(s){console.warn(s),r({source:t,arrayBuffer:null,orientation:null})})}));setTimeout(function(){o.then(e.onParseImage)},this.transitionTime)}else setTimeout(function(){e.onParseImage({source:e.src})},this.transitionTime)}else this.clearImage()},onFailLoadImage:function(){this.imageAttributes.src&&(this.clearImage(),this.$emit("error"))},onSuccessLoadImage:function(){var t=this,e=this.$refs.image;e&&!this.imageLoaded&&(this.imageAttributes.height=e.naturalHeight,this.imageAttributes.width=e.naturalWidth,this.imageLoaded=!0,this.resetVisibleArea().then(function(){t.$emit("ready"),t.onChange(!1)}))},onParseImage:function(t){var e=this,n=t.source,o=t.arrayBuffer,r=t.orientation;this.imageAttributes.revoke&&this.imageAttributes.src&&URL.revokeObjectURL(this.imageAttributes.src),this.imageAttributes.revoke=!1,o&&r&&r>1?To(n)||!Fo(n)?(this.imageAttributes.src=URL.createObjectURL(new Blob([o])),this.imageAttributes.revoke=!0):this.imageAttributes.src=function(s){for(var a=[],c=new Uint8Array(s);c.length>0;){var l=c.subarray(0,8192);a.push(String.fromCharCode.apply(null,Array.from?Array.from(l):l.slice())),c=c.subarray(8192)}return"data:image/jpeg;base64,"+btoa(a.join(""))}(o):this.imageAttributes.src=n,it(this.defaultTransforms)?this.appliedImageTransforms=Ln(this.defaultTransforms()):Lt(this.defaultTransforms)?this.appliedImageTransforms=Ln(this.defaultTransforms):this.appliedImageTransforms=function(s){var a=Ln({});if(s)switch(s){case 2:a.flip.horizontal=!0;break;case 3:a.rotate=-180;break;case 4:a.flip.vertical=!0;break;case 5:a.rotate=90,a.flip.vertical=!0;break;case 6:a.rotate=90;break;case 7:a.rotate=90,a.flip.horizontal=!0;break;case 8:a.rotate=-90}return a}(r),this.defaultImageTransforms=W(W({},this.appliedImageTransforms),{},{flip:W({},this.appliedImageTransforms.flip)}),this.$nextTick(function(){var s=e.$refs.image;s&&s.complete&&(function(a){return!!a.naturalWidth}(s)?e.onSuccessLoadImage():e.onFailLoadImage())})},onResizeEnd:function(){this.runAutoZoom("resize",{transitions:!0})},onMoveEnd:function(){this.runAutoZoom("move",{transitions:!0})},onMove:function(t){var e=this;this.transitionsOptions.enabled||this.awaitRender(function(){e.coordinates=e.moveAlgorithm(W(W({},e.getPublicProperties()),{},{positionRestrictions:Wt(e.positionRestrictions,e.visibleArea),coordinates:e.coordinates,event:e.normalizeEvent(t)})),e.onChange()})},onResize:function(t){var e=this;this.transitionsOptions.enabled||this.stencilSize&&!this.autoZoom||this.awaitRender(function(){var n=e.sizeRestrictions,o=Math.min(e.coordinates.width,e.coordinates.height,20*e.coefficient);e.coordinates=e.resizeAlgorithm(W(W({},e.getPublicProperties()),{},{positionRestrictions:Wt(e.positionRestrictions,e.visibleArea),sizeRestrictions:{maxWidth:Math.min(n.maxWidth,e.visibleArea.width),maxHeight:Math.min(n.maxHeight,e.visibleArea.height),minWidth:Math.max(n.minWidth,o),minHeight:Math.max(n.minHeight,o)},event:e.normalizeEvent(t)})),e.onChange(),e.ticking=!1})},onManipulateImage:function(t){var e=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};if(!this.transitionsOptions.enabled){var n=e.transitions,o=n!==void 0&&n,r=e.normalize,s=r===void 0||r;o&&this.enableTransitions();var a=ac(W(W({},this.getPublicProperties()),{},{event:s?this.normalizeEvent(t):t,getAreaRestrictions:this.getAreaRestrictions,imageRestriction:this.imageRestriction,adjustStencil:!this.stencilSize&&this.settings.resizeImage.adjustStencil})),c=a.visibleArea,l=a.coordinates;this.visibleArea=c,this.coordinates=l,this.runAutoZoom("manipulateImage"),this.onChange(),o&&this.debouncedDisableTransitions()}},onPropsChange:function(){this.coordinates=this.applyTransform(this.coordinates,!0),this.onChange(!1)},getAreaRestrictions:function(){var t=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},e=t.visibleArea,n=t.type,o=n===void 0?"move":n;return this.areaRestrictionsAlgorithm({boundaries:this.boundaries,imageSize:this.imageSize,imageRestriction:this.imageRestriction,visibleArea:e,type:o})},getAspectRatio:function(t){var e,n,o=this.stencilProps,r=o.aspectRatio,s=o.minAspectRatio,a=o.maxAspectRatio;if(this.$refs.stencil&&this.$refs.stencil.aspectRatios){var c=this.$refs.stencil.aspectRatios();e=c.minimum,n=c.maximum}if(ie(e)&&(e=ie(r)?s:r),ie(n)&&(n=ie(r)?a:r),!t&&(ie(e)||ie(n))){var l=this.getStencilSize(),u=l?j(l):null;ie(e)&&(e=Do(u)?u:void 0),ie(n)&&(n=Do(u)?u:void 0)}return{minimum:e,maximum:n}},getStencilSize:function(){if(this.stencilSize)return t={currentStencilSize:{width:this.stencilCoordinates.width,height:this.stencilCoordinates.height},stencilSize:this.stencilSize,boundaries:this.boundaries,coefficient:this.coefficient,coordinates:this.coordinates,aspectRatio:this.getAspectRatio(!0)},e=t.boundaries,n=t.stencilSize,o=t.aspectRatio,zn(j(r=it(n)?n({boundaries:e,aspectRatio:o}):n),o)&&(r=Oe({sizeRestrictions:{maxWidth:e.width,maxHeight:e.height,minWidth:0,minHeight:0},width:r.width,height:r.height,aspectRatio:{minimum:o.minimum,maximum:o.maximum}})),(r.width>e.width||r.height>e.height)&&(r=Oe({sizeRestrictions:{maxWidth:e.width,maxHeight:e.height,minWidth:0,minHeight:0},width:r.width,height:r.height,aspectRatio:{minimum:j(r),maximum:j(r)}})),r;var t,e,n,o,r},getPublicProperties:function(){return{coefficient:this.coefficient,visibleArea:this.visibleArea,coordinates:this.coordinates,boundaries:this.boundaries,sizeRestrictions:this.sizeRestrictions,positionRestrictions:this.positionRestrictions,aspectRatio:this.getAspectRatio(),imageRestriction:this.imageRestriction}},defaultCoordinates:function(){return W({},Uo)},flip:function(t,e){var n=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{},o=n.transitions,r=o===void 0||o;if(!this.transitionsActive){r&&this.enableTransitions();var s=W({},this.imageTransforms.flip),a=cc({flip:{horizontal:t?!s.horizontal:s.horizontal,vertical:e?!s.vertical:s.vertical},previousFlip:s,rotate:this.imageTransforms.rotate,visibleArea:this.visibleArea,coordinates:this.coordinates,imageSize:this.imageSize,positionRestrictions:this.positionRestrictions,sizeRestrictions:this.sizeRestrictions,getAreaRestrictions:this.getAreaRestrictions,aspectRatio:this.getAspectRatio()}),c=a.visibleArea,l=a.coordinates;t&&(this.appliedImageTransforms.flip.horizontal=!this.appliedImageTransforms.flip.horizontal),e&&(this.appliedImageTransforms.flip.vertical=!this.appliedImageTransforms.flip.vertical),this.visibleArea=c,this.coordinates=l,this.onChange(),r&&this.debouncedDisableTransitions()}},rotate:function(t){var e=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},n=e.transitions,o=n===void 0||n;if(!this.transitionsActive){o&&this.enableTransitions();var r=W({},this.imageSize);this.appliedImageTransforms.rotate+=t;var s=lc({visibleArea:this.visibleArea,coordinates:this.coordinates,previousImageSize:r,imageSize:this.imageSize,angle:t,positionRestrictions:this.positionRestrictions,sizeRestrictions:this.sizeRestrictions,getAreaRestrictions:this.getAreaRestrictions,aspectRatio:this.getAspectRatio()}),a=s.visibleArea,c=s.coordinates,l=this.processAutoZoom("rotateImage",a,c);a=l.visibleArea,c=l.coordinates,this.visibleArea=a,this.coordinates=c,this.onChange(),o&&this.debouncedDisableTransitions()}}},emits:["change","error","ready"]},Cc={key:0,ref:"canvas",style:{display:"none"}},Sc={key:1,ref:"sourceCanvas",style:{display:"none"}};rr.render=function(t,e,n,o,r,s){return i.openBlock(),i.createBlock("div",{ref:"cropper",class:s.classes.cropper},[i.createVNode("div",{ref:"stretcher",class:s.classes.stretcher},null,2),i.createVNode("div",{class:s.classes.boundaries,style:s.boundariesStyle},[(i.openBlock(),i.createBlock(i.resolveDynamicComponent(n.backgroundWrapperComponent),{class:s.classes.cropperWrapper,"wheel-resize":s.settings.resizeImage.wheel,"touch-resize":s.settings.resizeImage.touch,"touch-move":s.settings.moveImage.touch,"mouse-move":s.settings.moveImage.mouse,onMove:s.onManipulateImage,onResize:s.onManipulateImage},{default:i.withCtx(function(){return[i.createVNode("div",{class:s.classes.background,style:s.boundariesStyle},null,6),i.createVNode("div",{class:s.classes.imageWrapper},[i.createVNode("img",{ref:"image",crossorigin:r.imageAttributes.crossOrigin,src:r.imageAttributes.src,class:s.classes.image,style:s.imageStyle,onMousedown:e[1]||(e[1]=i.withModifiers(function(){},["prevent"]))},null,46,["crossorigin","src"])],2),i.createVNode("div",{class:s.classes.foreground,style:s.boundariesStyle},null,6),i.withDirectives((i.openBlock(),i.createBlock(i.resolveDynamicComponent(n.stencilComponent),i.mergeProps({ref:"stencil",image:s.image,coordinates:r.coordinates,"stencil-coordinates":s.stencilCoordinates,transitions:s.transitionsOptions},n.stencilProps,{onResize:s.onResize,onResizeEnd:s.onResizeEnd,onMove:s.onMove,onMoveEnd:s.onMoveEnd}),null,16,["image","coordinates","stencil-coordinates","transitions","onResize","onResizeEnd","onMove","onMoveEnd"])),[[i.vShow,r.imageLoaded]]),n.canvas?(i.openBlock(),i.createBlock("canvas",Cc,null,512)):i.createCommentVNode("",!0),n.canvas?(i.openBlock(),i.createBlock("canvas",Sc,null,512)):i.createCommentVNode("",!0)]}),_:1},8,["class","wheel-resize","touch-resize","touch-move","mouse-move","onMove","onResize"]))],6)],2)};const kc={class:"background-container"},Ec={class:"tools-line"},vc={class:"line-block"},xc={class:"dialog-footer"},sr=x(i.defineComponent({__name:"ImageCropper",props:{open:{type:Boolean,required:!0},defaultRatio:{type:Number,required:!1,default:1}},emits:["crop","close"],setup(t,{emit:e}){const n=t,o=e,r=S.S.Cropper.Cropper(),s=i.ref(n.defaultRatio);r.ratio=s.value;const a=async()=>{s.value===0?r.ratio=0:r.ratio=s.value},c=i.ref({width:0,height:0,left:0,top:0}),l=i.ref(!1),u=i.ref(""),h=i.ref(),f=async()=>{l.value=!0;const g=h.value.getResult();r.ratio===0&&(s.value=c.value.width/c.value.height),g&&g.canvas.toBlob(p=>{var E;o("crop",{blob:p,src:(E=g.canvas)==null?void 0:E.toDataURL()})}),l.value=!1},m=g=>{var p;c.value=g.coordinates,u.value=(p=g.canvas)==null?void 0:p.toDataURL()};return(g,p)=>{const E=i.resolveComponent("PSelect"),w=i.resolveComponent("el-form-item"),M=i.resolveComponent("el-form"),O=i.resolveComponent("el-button"),L=i.resolveComponent("PModal");return i.openBlock(),i.createBlock(L,{show:t.open,title:"Настройка изображения","close-on-click-modal":!1,"close-on-press-escape":!1,"show-close":!1},{default:i.withCtx(()=>[i.createElementVNode("div",kc,[i.createElementVNode("div",Ec,[i.createElementVNode("div",vc,[i.createVNode(M,null,{default:i.withCtx(()=>[i.createVNode(w,{label:"Задайте пропорции фото:"},{default:i.withCtx(()=>[i.createVNode(E,{modelValue:i.unref(s),"onUpdate:modelValue":p[0]||(p[0]=F=>i.isRef(s)?s.value=F:null),label:"Пропорции изображения",onChange:a},{default:i.withCtx(()=>p[1]||(p[1]=[i.createElementVNode("option",{label:"2:3 (формат A4)",value:2/3},null,-1),i.createElementVNode("option",{label:"4:3 (для карточек новостей)",value:4/3},null,-1),i.createElementVNode("option",{label:"1:1 (для фото сотрудников)",value:1},null,-1),i.createElementVNode("option",{label:"3:2",value:3/2},null,-1),i.createElementVNode("option",{label:"16:9",value:16/9},null,-1),i.createElementVNode("option",{label:"3:4 (вертикальное изображение)",value:3/4},null,-1),i.createElementVNode("option",{label:"Задать пропорции вручную",value:0},null,-1)])),_:1},8,["modelValue"])]),_:1})]),_:1})])]),i.createVNode(i.unref(rr),{ref_key:"cropperRef",ref:h,src:i.unref(r).src,"stencil-props":{aspectRatio:i.unref(r).ratio},style:{"max-height":"50vh","min-height":"50vh"},onChange:m},null,8,["src","stencil-props"]),i.createElementVNode("div",xc,[i.createVNode(O,{loading:i.unref(l),type:"success",onClick:f},{default:i.withCtx(()=>p[2]||(p[2]=[i.createTextVNode(" Сохранить ")])),_:1},8,["loading"])])])]),_:1},8,["show"])}}}),[["__scopeId","data-v-b2600930"]]),Bc={key:0,class:"blur"},Mc={style:{display:"flex","justify-content":"center"}},Zt=x(i.defineComponent({__name:"InfoItem",props:{background:{type:String,required:!1,default:""},padding:{type:String,required:!1,default:""},width:{type:String,required:!1,default:""},openWidth:{type:String,required:!1,default:"auto"},openHeight:{type:String,required:!1,default:"auto"},maxWidth:{type:String,required:!1,default:""},minWidth:{type:String,required:!1,default:""},margin:{type:String,required:!1,default:""},height:{type:String,required:!1,default:""},withOpenWindow:{type:Boolean,required:!1,default:!0},colorSelected:{type:String,required:!1,default:"#1979CF"},borderColor:{type:String,required:!1,default:"#E3E3E3"},withHover:{type:Boolean,required:!1,default:!0},title:{type:String,required:!1,default:""},customClass:{type:String,required:!1,default:""},close:{type:Boolean,required:!1,default:!0},baseBoxMargin:{type:String,required:!1,default:""},closeWindowOverflow:{type:String,required:!1,default:""},showSaveDialog:{type:Boolean,required:!1,default:!1}},emits:["click","keyup-enter","after-close"],setup(t,{emit:e}){const n=t,o=e,r=n.customClass!==""?n.customClass:"inside-class",s=i.ref(!1),a=i.ref(!1),c=i.ref(!1),l=i.ref(n.close);i.watch(()=>n.close,()=>{a.value=!1});const u=F=>{F.stopPropagation(),F.key==="Escape"&&(n.showSaveDialog?c.value=!0:a.value=!1)};i.watch(a,async()=>{var F,z;await i.nextTick(),a.value?((z=(F=document.getElementById("info-item-opened-content"))==null?void 0:F.querySelector("input"))==null||z.focus(),document.body.addEventListener("keydown",u)):document.body.removeEventListener("keydown",u,!1),a.value===!1&&o("after-close")});const h=()=>{o("click"),a.value=!!n.withOpenWindow,l.value!==n.close&&(a.value=!1,l.value=!l.value)},f=i.computed(()=>n.customClass===""?{width:n.width,minHeight:"40px",height:"auto",maxWidth:n.maxWidth,minWidth:n.minWidth,margin:n.baseBoxMargin}:void 0),m=i.computed(()=>a.value&&n.withOpenWindow),g=i.computed(()=>({background:n.background?n.background:void 0,zIndex:m.value?"2":"0",padding:m.value?"0":n.padding,margin:n.margin,width:m.value?n.openWidth:n.width,height:m.value?n.openHeight:n.height,minHeight:"40px",maxWidth:n.maxWidth,minWidth:n.minWidth,borderColor:s.value||a.value?n.colorSelected:n.borderColor,color:s.value?n.colorSelected:"#343E5C",boxShadow:s.value||a.value?`0px 0px 1px 1px ${n.colorSelected}`:"none",alignItems:m.value?"end":"center",cursor:(n.withHover,"pointer")})),p=i.computed(()=>({height:m.value?"0":"",overflow:n.closeWindowOverflow,width:n.width})),E=i.computed(()=>({height:m.value?"auto":"0"})),w=i.computed(()=>({color:s.value?n.colorSelected:"#343E5C",fill:s.value?n.colorSelected:"#343E5C",background:n.background})),M=()=>{n.showSaveDialog?c.value=!0:a.value=!1},O=async()=>{await o("keyup-enter"),n.close&&(a.value=!1),c.value=!1},L=()=>{a.value=!1,c.value=!1};return(F,z)=>{const we=i.resolveComponent("PString"),ke=i.resolveComponent("PButton"),je=i.resolveComponent("PModal"),pt=i.resolveDirective("click-outside");return i.openBlock(),i.createElementBlock(i.Fragment,null,[i.unref(a)?(i.openBlock(),i.createElementBlock("div",Bc)):i.createCommentVNode("",!0),i.createElementVNode("div",{class:"base-box",style:i.normalizeStyle(i.unref(f)),onClick:z[2]||(z[2]=i.withModifiers(Sn=>h(),["prevent","stop"]))},[i.createElementVNode("div",{class:i.normalizeClass(["body",i.unref(r)]),style:i.normalizeStyle(i.unref(g)),onMouseenter:z[0]||(z[0]=Sn=>t.withHover?s.value=!0:s.value=!1),onMouseleave:z[1]||(z[1]=Sn=>s.value=!1)},[i.unref(a)?i.createCommentVNode("",!0):(i.openBlock(),i.createElementBlock("div",{key:0,class:i.normalizeClass(["close-window",t.customClass]),style:i.normalizeStyle(i.unref(p))},[i.renderSlot(F.$slots,"default",{},void 0,!0)],6)),i.unref(a)?i.withDirectives((i.openBlock(),i.createElementBlock("div",{key:1,id:"info-item-opened-content",class:"open-window",style:i.normalizeStyle(i.unref(E))},[i.renderSlot(F.$slots,"open-inside-content",{},void 0,!0)],4)),[[pt,M,void 0,{prevent:!0}]]):i.createCommentVNode("",!0),i.createElementVNode("div",{class:"top-title",style:i.normalizeStyle(i.unref(w))},[i.renderSlot(F.$slots,"title",{},()=>[i.createVNode(we,{string:t.title,"font-size":"10px",padding:"0 0 0 3px",style:i.normalizeStyle({color:i.unref(s)?"#006BB4":"#c4c4c4",transition:"0.2s"})},null,8,["string","style"])],!0)],4)],38)],4),i.createVNode(je,{show:i.unref(c),title:"У вас остались несохраненные изменения, вы уверены что хотите закрыть окно?"},{default:i.withCtx(()=>[i.createElementVNode("div",Mc,[i.createVNode(ke,{text:"Не сохранять",onClick:L}),i.createVNode(ke,{text:"Сохранять",onClick:O})])]),_:1},8,["show"])],64)}}}),[["__scopeId","data-v-e8e8f1a1"]]),ar=x(i.defineComponent({__name:"InfoItemSelectButtons",props:{selected:{type:String,required:!0},title:{type:String,required:!0},list:{type:Array,required:!0}},emits:["select","reset"],setup(t,{emit:e}){const n=i.ref(!1),o=e,r=s=>{n.value=!n.value,o("select",s)};return(s,a)=>{const c=i.resolveComponent("PString"),l=i.resolveComponent("PButton"),u=i.resolveComponent("InfoItem");return i.openBlock(),i.createBlock(u,{close:i.unref(n),title:t.title,"close-window-overflow":"hidden","with-hover":!0,"with-open-window":!0},{"open-inside-content":i.withCtx(()=>[(i.openBlock(!0),i.createElementBlock(i.Fragment,null,i.renderList(t.list,h=>(i.openBlock(),i.createBlock(l,{key:h,type:"admin",color:"blue",text:h,onClick:f=>r(h)},null,8,["text","onClick"]))),128)),i.createVNode(l,{type:"admin",color:"blue",text:"Сбросить",onClick:a[0]||(a[0]=h=>r(void 0))})]),default:i.withCtx(()=>[i.createVNode(c,{string:t.selected,"font-size":"14px",width:"100%"},null,8,["string"])]),_:1},8,["close","title"])}}}),[["__scopeId","data-v-973addd1"]]),Ic={class:"mainblock"},Rc={class:"mainline"},lr=x(i.defineComponent({__name:"LeftRightContainer",props:{leftWidth:{type:String,required:!1,default:"0px"},background:{type:String,required:!1,default:"inherit"}},setup(t){return(e,n)=>(i.openBlock(),i.createElementBlock("div",Ic,[i.createElementVNode("div",Rc,[i.createElementVNode("div",{class:"mainblock-left",style:i.normalizeStyle({minWidth:t.leftWidth,maxWidth:t.leftWidth,background:t.background,display:t.leftWidth!=="0px"?"block":"none"})},[i.renderSlot(e.$slots,"left",{},void 0,!0)],4),i.createElementVNode("div",{class:"mainblock-right",style:i.normalizeStyle({background:t.background})},[i.renderSlot(e.$slots,"right",{},void 0,!0)],4)])]))}}),[["__scopeId","data-v-42fa7104"]]),$c={class:"message-title"},Ac={class:"message-text"},cr=x(i.defineComponent({__name:"MessageBody",props:{title:{type:String,default:"",required:!1},text:{type:String,default:"",required:!1}},setup(t){return(e,n)=>(i.openBlock(),i.createElementBlock("div",null,[i.createElementVNode("div",$c,i.toDisplayString(t.title),1),i.createElementVNode("div",Ac,i.toDisplayString(t.text),1)]))}}),[["__scopeId","data-v-182d0640"]]),Nc=i.defineComponent({name:"CollapseContainer",props:{initActiveIdx:{type:Number,default:0}},setup(t){const e=i.ref(t.initActiveIdx),n=o=>{e.value=o};return i.watch(()=>t.initActiveIdx,()=>{n(t.initActiveIdx)}),{changeActiveId:n,activeIdx:e}}});function Pc(t,e,n,o,r,s){return i.openBlock(),i.createElementBlock("div",null,[i.renderSlot(t.$slots,"default",{activeIdx:t.activeIdx,changeActiveId:t.changeActiveId})])}const dr=x(Nc,[["render",Pc]]),zc=i.defineComponent({name:"CollapseItem",props:{tabId:{type:String,required:!1,default:""},activeId:{type:String,default:""},isCollaps:{type:Boolean,default:!0},title:{type:String,default:""},showToolsOnHover:{type:Boolean,default:!0},background:{type:String,required:!1,default:"#ffffff"},backgroundAttention:{type:String,required:!1,default:"#ffffff"},changeColor:{type:Boolean,default:!1},margin:{type:String,default:"10px 8px 2px 2px"},padding:{type:String,default:"0 10px"},selectable:{type:Boolean,default:!1}},emits:["changeActiveId"],setup(t,{emit:e}){const n=i.ref(t.activeId==="0"),o=()=>{n.value=!n.value,e("changeActiveId",t.tabId)};return i.onUpdated(()=>{t.activeId&&t.activeId!==t.tabId&&(n.value=!0)}),i.onBeforeMount(()=>{t.activeId&&t.activeId!==t.tabId&&(n.value=!1)}),{collapsed:n,handleItemClick:o}}}),Vc=["for"],Tc={class:"inside-icon"};function Fc(t,e,n,o,r,s){return i.openBlock(),i.createElementBlock(i.Fragment,null,[i.createElementVNode("div",{class:"tab",style:i.normalizeStyle({margin:t.margin,height:t.isCollaps&&t.collapsed?"60px":"","box-shadow":t.selectable&&t.activeId===t.tabId?"0px 0px 1px 2px #1979cf":""})},[t.isCollaps&&t.collapsed?(i.openBlock(),i.createElementBlock("svg",{key:0,class:"icon-arrow",onClick:e[0]||(e[0]=(...a)=>t.handleItemClick&&t.handleItemClick(...a))},e[3]||(e[3]=[i.createElementVNode("use",{"xlink:href":"#arrow-down"},null,-1)]))):t.isCollaps&&!t.collapsed?(i.openBlock(),i.createElementBlock("svg",{key:1,class:"icon-arrow",onClick:e[1]||(e[1]=(...a)=>t.handleItemClick&&t.handleItemClick(...a))},e[4]||(e[4]=[i.createElementVNode("use",{"xlink:href":"#arrow-up"},null,-1)]))):i.createCommentVNode("",!0),i.createElementVNode("label",{for:t.tabId,onClick:e[2]||(e[2]=(...a)=>t.handleItemClick&&t.handleItemClick(...a))},[i.createElementVNode("div",{style:i.normalizeStyle({cursor:t.isCollaps?"pointer":"default",background:t.changeColor?t.background:t.backgroundAttention,padding:t.padding,borderRadius:"5px"}),class:"tab-name"},[i.createElementVNode("div",Tc,[i.renderSlot(t.$slots,"icon",{},void 0,!0)]),t.title?(i.openBlock(),i.createElementBlock("div",{key:0,class:"title-in",style:i.normalizeStyle({marginRight:t.isCollaps?"50px":"0",width:t.isCollaps?"calc(100% - 50px)":"100%"})},i.toDisplayString(t.title),5)):(i.openBlock(),i.createElementBlock("div",{key:1,class:"title-in",style:i.normalizeStyle({marginRight:t.isCollaps?"50px":"0",width:t.isCollaps?"calc(100% - 50px)":"100%"})},[i.renderSlot(t.$slots,"inside-title",{},void 0,!0)],4)),i.createElementVNode("div",{class:i.normalizeClass(["tools-bar",{"hidden-part":t.showToolsOnHover}])},[i.renderSlot(t.$slots,"tools",{},void 0,!0)],2)],4)],8,Vc),i.createElementVNode("div",{style:i.normalizeStyle({maxHeight:t.isCollaps?"":"1000000vh",background:t.changeColor?t.background:t.backgroundAttention}),class:i.normalizeClass(t.collapsed?"tab-content-down":"tab-content-up")},[i.renderSlot(t.$slots,"inside-content",{},void 0,!0)],6)],4),e[5]||(e[5]=i.createStaticVNode('<svg width="0" height="0" class="hidden" data-v-0ea9a95f><symbol id="arrow-down" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" data-v-0ea9a95f><path d="M5 6L10 11L15 6L17 7L10 14L3 7L5 6Z" fill="currentColor" data-v-0ea9a95f></path></symbol><symbol id="arrow-up" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" data-v-0ea9a95f><path d="M15 14L10 9L5 14L3 13L10 6L17 13L15 14Z" fill="currentColor" data-v-0ea9a95f></path></symbol></svg>',1))],64)}const ur=x(zc,[["render",Fc],["__scopeId","data-v-0ea9a95f"]]),Dc={class:"tab"},Oc={class:"rotate"},hr=x(i.defineComponent({__name:"VerticalCollapseContainer",setup(t){const e=i.ref(!1),n=async()=>{e.value=!e.value};return(o,r)=>{const s=i.resolveComponent("ArrowRight"),a=i.resolveComponent("ArrowLeft");return i.openBlock(),i.createElementBlock(i.Fragment,null,[i.createElementVNode("div",Dc,[i.renderSlot(o.$slots,"main",{},void 0,!0),i.createElementVNode("div",{style:i.normalizeStyle({width:i.unref(e)?"50%":"20px",transition:"0.3s"}),class:"left"},[i.createElementVNode("div",{style:i.normalizeStyle({width:i.unref(e)?"100%":"0",transition:"0.3s"}),class:"left-content"},[i.renderSlot(o.$slots,"inside-content-left",{},void 0,!0)],4),i.createElementVNode("div",{class:"arrow-bar",onClick:n},[i.createElementVNode("div",Oc,[i.renderSlot(o.$slots,"inside-title",{},void 0,!0)]),i.unref(e)?(i.openBlock(),i.createBlock(s,{key:0,"icon-class":"icon-arrow"})):(i.openBlock(),i.createBlock(a,{key:1,"icon-class":"icon-arrow"}))])],4),i.createElementVNode("div",{style:i.normalizeStyle({width:i.unref(e)?"50%":"100%",transition:"0.3s"}),class:"right"},[i.renderSlot(o.$slots,"inside-content-right",{},void 0,!0)],4)]),i.createVNode(a),i.createVNode(s)],64)}}}),[["__scopeId","data-v-4ccaade5"]]),Lc={class:"add-block_body"},fr=x(i.defineComponent({__name:"PAdd",props:{background:{type:String,required:!1,default:"inherit"},margin:{type:String,required:!1,default:"0"},padding:{type:String,required:!1,default:"0"},top:{type:String,required:!1,default:"0"},zIndex:{type:Number,required:!1,default:0}},setup(t){return(e,n)=>{const o=i.resolveComponent("PSticky");return i.openBlock(),i.createElementBlock("div",{class:"add-block",style:i.normalizeStyle({margin:t.margin,background:t.background,padding:t.padding})},[i.createVNode(o,{top:t.top,"z-index":t.zIndex},{default:i.withCtx(()=>[i.renderSlot(e.$slots,"title",{},void 0,!0)]),_:3},8,["top","z-index"]),i.createElementVNode("div",Lc,[i.renderSlot(e.$slots,"default",{},void 0,!0)])],4)}}}),[["__scopeId","data-v-338720bc"]]),mr=x(i.defineComponent({__name:"PContainer",props:{background:{type:String,required:!1,default:"inherit"},margin:{type:String,required:!1,default:"0"},padding:{type:String,required:!1,default:"0"}},setup(t){return(e,n)=>(i.openBlock(),i.createElementBlock("div",{class:"add-block",style:i.normalizeStyle({margin:t.margin,background:t.background,padding:t.padding})},[i.renderSlot(e.$slots,"default",{},void 0,!0)],4))}}),[["__scopeId","data-v-b2b43a38"]]),Hc={class:"add-block_body"},pr=x(i.defineComponent({__name:"PContainerStickyHead",props:{background:{type:String,required:!1,default:"inherit"},margin:{type:String,required:!1,default:"0"},padding:{type:String,required:!1,default:"0"},top:{type:String,required:!1,default:"0"},zIndex:{type:Number,required:!1,default:0}},setup(t){return(e,n)=>{const o=i.resolveComponent("PSticky"),r=i.resolveComponent("PContainer");return i.openBlock(),i.createBlock(r,{background:t.background,margin:t.margin,padding:t.padding},{default:i.withCtx(()=>[i.createVNode(o,{top:t.top,"z-index":t.zIndex},{default:i.withCtx(()=>[i.renderSlot(e.$slots,"title",{},void 0,!0)]),_:3},8,["top","z-index"]),i.createElementVNode("div",Hc,[i.renderSlot(e.$slots,"default",{},void 0,!0)])]),_:3},8,["background","margin","padding"])}}}),[["__scopeId","data-v-9464e4a8"]]),qc={class:"del-block_title"},Uc={class:"del-block_body"},gr=x(i.defineComponent({__name:"PDel",props:{background:{type:String,required:!1,default:"inherit"},margin:{type:String,required:!1,default:"10px 10px 10px 50px"},padding:{type:String,required:!1,default:"10px"}},setup(t){return(e,n)=>(i.openBlock(),i.createElementBlock("div",{class:"del-block",style:i.normalizeStyle({margin:t.margin,background:t.background,padding:t.padding})},[i.createElementVNode("div",qc,[i.renderSlot(e.$slots,"title",{},void 0,!0)]),i.createElementVNode("div",Uc,[i.renderSlot(e.$slots,"default",{},void 0,!0)])],4))}}),[["__scopeId","data-v-58d048aa"]]),_c={class:"btn-group"},yr=x(i.defineComponent({__name:"AuthForm",props:{width:{type:String,default:"300px"},margin:{type:String,default:"auto"},padding:{type:String,default:"60px 100px"}},emits:["submit"],setup(t,{emit:e}){const n=S.Auth.Form,o=i.ref(!1),r=e,s=i.computed(()=>n.GetButtons()),a=async c=>{await S.Auth.Form.Block(async()=>{if(!c.submit)return n.SetStatus(c.GetStatus());const l=n.Validate();if(l.length>0){S.UI.Notify.Error(l.join(", "));return}r("submit")})};return i.onBeforeUnmount(()=>{n.Reset()}),(c,l)=>{const u=i.resolveComponent("PInput"),h=i.resolveComponent("PButton");return i.openBlock(),i.createElementBlock("div",{class:"auth-card",style:i.normalizeStyle({width:t.width,margin:t.margin,padding:t.padding})},[i.createElementVNode("div",null,i.toDisplayString(("PF"in c?c.PF:i.unref(S)).Auth.Form.GetTitle()),1),i.createElementVNode("div",null,[(i.openBlock(!0),i.createElementBlock(i.Fragment,null,i.renderList(("PF"in c?c.PF:i.unref(S)).Auth.Form.GetFields(),f=>(i.openBlock(),i.createBlock(u,{id:f.id,key:f,modelValue:f.value,"onUpdate:modelValue":m=>f.value=m,placeholder:f.label,margin:"10px 0 0 0"},null,8,["id","modelValue","onUpdate:modelValue","placeholder"]))),128)),i.createElementVNode("div",_c,[(i.openBlock(!0),i.createElementBlock(i.Fragment,null,i.renderList(i.unref(s),f=>(i.openBlock(),i.createBlock(h,{id:f.id,key:f.GetStatus(),disabled:i.unref(o),type:"primary",skin:"base",text:f.text,color:f.submit?"blue":"grey",margin:"10px 0 0 0",width:"100%",height:"52px",onClick:m=>a(f)},null,8,["id","disabled","text","color","onClick"]))),128))])])],4)}}}),[["__scopeId","data-v-238616ff"]]),wr=x(i.defineComponent({__name:"PModal",props:{showCloseDialog:{type:Boolean,required:!1,default:!1},closable:{type:Boolean,required:!1,default:!1},show:{type:Boolean,default:!1},title:{type:String,default:""},width:{type:String,default:"760px"},maxHeight:{type:String,default:"70vh"},margin:{type:String,default:"auto"},top:{type:String,default:"20vh"},padding:{type:String,default:"var(--modal-window-padding)"},showClose:{type:Boolean,default:!1}},emits:["save","close"],setup(t,{emit:e}){const n=t,o=e,r=a=>{a.key==="Escape"&&s()};i.onMounted(()=>{document.body.addEventListener("keydown",r)}),i.onBeforeUnmount(()=>{document.body.removeEventListener("keydown",r)});const s=()=>{n.closable&&o("close")};return(a,c)=>{const l=i.resolveComponent("IconClose");return i.openBlock(),i.createElementBlock(i.Fragment,null,[t.show?(i.openBlock(),i.createElementBlock("div",{key:0,class:"blur",onClick:s})):i.createCommentVNode("",!0),t.show?(i.openBlock(),i.createElementBlock("div",{key:1,class:"modal-w",style:i.normalizeStyle({maxWidth:t.width,width:t.width,margin:t.margin,padding:t.padding,top:t.top,maxHeight:t.maxHeight})},[t.closable?(i.openBlock(),i.createElementBlock("div",{key:0,class:"icon-box",onClick:s},[i.createVNode(l,{size:"20px"})])):i.createCommentVNode("",!0),i.renderSlot(a.$slots,"default",{},void 0,!0)],4)):i.createCommentVNode("",!0)],64)}}}),[["__scopeId","data-v-3a1f6782"]]),Wc=["onClick"],br=x(i.defineComponent({__name:"PTabs",props:{menus:{type:Object,required:!0},tabHeight:{type:String,required:!1,default:"40px"},height:{type:String,required:!1,default:""},minMenuItemWidth:{type:String,required:!1,default:"150px"},outTopMargin:{type:String,required:!1,default:"40px"},background:{type:String,required:!1,default:"#ffffff"}},emits:["select"],setup(t,{emit:e}){const n=t,o=e,r=i.ref(window.innerWidth),s=i.ref(),a=i.ref(Number(n.tabHeight.replace(/[^+\d]/g,""))),c=()=>{r.value=window.innerWidth,a.value=s.value?s.value.clientHeight:Number(n.tabHeight.replace(/[^+\d]/g,""))};i.onMounted(()=>window.addEventListener("resize",c)),i.onUnmounted(()=>window.removeEventListener("resize",c));const l=i.computed(()=>`calc(100% - ${a.value}px + 1px)`);i.onBeforeMount(()=>{n.menus.Select()});const u=h=>{n.menus.Select(h),o("select")};return(h,f)=>(i.openBlock(),i.createElementBlock("div",{class:"mainblock",style:i.normalizeStyle({height:`calc(100% - ${t.outTopMargin} - ${t.tabHeight}`})},[i.createElementVNode("div",{ref_key:"menuRef",ref:s,class:"top-menu",style:i.normalizeStyle({gridTemplateColumns:`repeat(auto-fit, minmax(${t.minMenuItemWidth}, 1fr))`})},[(i.openBlock(!0),i.createElementBlock(i.Fragment,null,i.renderList(t.menus.items,(m,g)=>(i.openBlock(),i.createElementBlock("div",{key:g},[i.createElementVNode("div",{class:i.normalizeClass({"selected-tab":g===t.menus.idx,tab:g!==t.menus.idx}),style:i.normalizeStyle({minHeight:t.tabHeight,maxHeight:t.tabHeight}),onClick:p=>u(g)},i.toDisplayString(m.name),15,Wc)]))),128))],4),i.createElementVNode("div",{class:"body-container",style:i.normalizeStyle({background:t.background,height:i.unref(l)})},[i.renderSlot(h.$slots,"default",{},()=>[t.menus.idx>-1?(i.openBlock(),i.createBlock(i.resolveDynamicComponent(t.menus.GetComponent()),{key:0})):i.createCommentVNode("",!0)],!0)],4)],4))}}),[["__scopeId","data-v-f631acc5"]]);class Un{static Setup(e){this.staticUrl=e}static get StaticUrl(){return this.staticUrl}}d(Un,"staticUrl","");class Be{constructor(e){d(this,"name","");d(this,"url","");d(this,"src","");d(this,"raw");d(this,"blob");d(this,"file");d(this,"id");d(this,"originalName","");d(this,"fileSystemPath","");T.BuildClass(this,e)}getFileUrl(){const e=this.url?this.url:`${Un.StaticUrl}/${this.fileSystemPath}`;return new URL(e,typeof document>"u"&&typeof location>"u"?require("url").pathToFileURL(__filename).href:typeof document>"u"?location.href:Ee&&Ee.tagName.toUpperCase()==="SCRIPT"&&Ee.src||new URL("sprof.umd.cjs",document.baseURI).href)}getFileListObject(){return{name:this.originalName,url:this.url}}static CreatePreviewFile(e,n){const o=new Be;return o.id=n??ve.UUID(),o.originalName=e.name,o.file=e.blob,o.fileSystemPath=ve.UUID(),o}uploadNewFile(e){this.id||(this.id=ve.UUID()),this.originalName=e.name,this.file=e.blob,this.fileSystemPath=ve.UUID()}setFile(e){this.file=e,this.url=e.src}uploadAndSetFile(e){this.uploadNewFile(e),this.setFile(e),this.url=e.url}clearFile(){this.url="",this.file=void 0,this.fileSystemPath="",this.originalName=""}errorImg(e,n){if(e.target){let o="";return n&&(o=`@/assets/img/${n}`),new URL(o,typeof document>"u"&&typeof location>"u"?require("url").pathToFileURL(__filename).href:typeof document>"u"?location.href:Ee&&Ee.tagName.toUpperCase()==="SCRIPT"&&Ee.src||new URL("sprof.umd.cjs",document.baseURI).href)}}getFileInfos(){return[this]}isPdf(){return this.getExtension(this.originalName)===""}getExtension(e){const n=e.split(".");return n[n.length-1]}}const jc=["id"],Gc=["for"],Zc={class:"left-field"},Xc=["href","download"],Jc={key:1,class:"text-field__input"},Yc={class:"right-field"},Qc=i.defineComponent({__name:"UploaderFile",props:{fileInfo:{type:Object,required:!1,default:new Be},formats:{type:Array,default:()=>["pdf","jpeg","jpg"]},label:{type:String,default:"Label",required:!1},margin:{type:String,required:!1,default:"10px 0 0 0"},disabled:{type:Boolean,required:!1,default:!1},padding:{type:String,default:"",required:!1},mask:{type:String,required:!1,default:void 0},borderColor:{type:String,default:"var(--input-border-color)",required:!1},color:{type:String,default:"var(--input-font-color)",required:!1},placeholder:{type:String,required:!1,default:""}},emits:["upload","remove"],setup(t,{emit:e}){const n=t,o=e,r=S.H.Id.GUID(),s=S.H.Id.GUID(),a=()=>{const u=document.getElementById(r);if(!u.files)return;const h=u.files[0];if(h){if(!l(h.name)){S.UI.Notify.Error("Загруженный файл должен быть в формате pdf, jpg или jpeg");return}n.fileInfo.uploadAndSetFile(h),o("upload",n.fileInfo)}},c=()=>{n.fileInfo.clearFile(),o("remove",n.fileInfo)};i.onMounted(()=>{const u=document.getElementById(s);u&&(u.onclick=()=>{var h;return(h=document.getElementById(r))==null?void 0:h.click()})});const l=u=>{let h=S.H.Extension.Get(u);return!!n.formats.includes(h.toLowerCase())};return(u,h)=>{const f=i.resolveComponent("PString"),m=i.resolveComponent("PFlex"),g=i.resolveComponent("PButton");return i.openBlock(),i.createElementBlock(i.Fragment,null,[i.createElementVNode("input",{id:i.unref(r),type:"file",hidden:"",onChange:a},null,40,jc),i.createElementVNode("div",{class:"text-field",style:i.normalizeStyle({margin:t.margin,padding:t.padding})},[t.label?(i.openBlock(),i.createElementBlock("label",{key:0,class:"text-field__label",for:t.label},i.toDisplayString(t.label),9,Gc)):i.createCommentVNode("",!0),i.createElementVNode("div",{class:"field",style:i.normalizeStyle({borderColor:t.borderColor})},[i.createElementVNode("div",Zc,[i.createVNode(m,null,{default:i.withCtx(()=>[i.renderSlot(u.$slots,"default",{},void 0,!0),i.createVNode(f,{string:t.placeholder,"font-size":"var(--font-size-default:)",color:"var(--input-label-color)",margin:"0 10px 0 0"},null,8,["string"])]),_:3})]),t.fileInfo&&t.fileInfo.originalName?(i.openBlock(),i.createElementBlock("div",{key:0,class:"text-field__input",style:i.normalizeStyle({color:t.color})},[i.createElementVNode("a",{href:t.fileInfo.getFileUrl(),target:"_blank",download:t.fileInfo.originalName},[i.createElementVNode("div",null,i.toDisplayString(t.fileInfo.originalName),1)],8,Xc),i.createVNode(g,{skin:"text",type:"del",onClick:c},{default:i.withCtx(()=>[i.createVNode(Ft,{size:"20px",margin:"0 5px"})]),_:1})],4)):(i.openBlock(),i.createElementBlock("div",Jc,[i.createVNode(f,{string:"Файл не загружен","font-size":"var(--inpur-font-size-default)",color:"var(--palette-warning)",margin:"0 10px 0 0"})])),i.createElementVNode("div",Yc,[i.createVNode(g,{id:i.unref(s),skin:"text",type:"success","data-test":"upload-btn",text:t.fileInfo&&t.fileInfo.originalName?"Обновить":"Загрузить",margin:"0"},null,8,["id","text"])])],4)],4)],64)}}}),Cr=x(Qc,[["__scopeId","data-v-cacad4ae"]]),Kc={class:"bg"},_n=x(i.defineComponent({__name:"AuthPage",setup(t){const e=()=>{S.Auth.Form.IsLogin()&&S.H.Router.ToHome()};return(n,o)=>{const r=i.resolveComponent("AuthForm");return i.openBlock(),i.createElementBlock("div",Kc,[i.createVNode(r,{width:"760px",margin:"0 auto",onAction:e})])}}}),[["__scopeId","data-v-c3e2f5bc"]]),ed={},td={style:{"text-align":"center"}};function nd(t,e){return i.openBlock(),i.createElementBlock("div",td,e[0]||(e[0]=[i.createElementVNode("h1",null,"Страница не найдена",-1)]))}const Wn=x(ed,[["render",nd]]),id={class:"container"},od={key:0,class:"result"},rd={class:"list"},sd=["onClick"],Sr=x(i.defineComponent({inheritAttrs:!1,__name:"PAutocomplete",props:{modelValue:{type:String,default:""},searchFunc:{type:Function,default:()=>{}},suggestions:{type:Array,default:[]}},emits:["select","input"],setup(t,{emit:e}){const n=e,o=t,r=i.ref(o.modelValue),s=i.ref([]);async function a(){n("input",r.value),await c()}async function c(){o.searchFunc&&(s.value=await o.searchFunc(r.value))}async function l(u){n("select",u)}return(u,h)=>{const f=i.resolveComponent("IconSearch"),m=i.resolveComponent("PInput");return i.openBlock(),i.createElementBlock("div",id,[i.createVNode(m,{modelValue:i.unref(r),"onUpdate:modelValue":h[0]||(h[0]=g=>i.isRef(r)?r.value=g:null),placeholder:"Найти",onInput:a},{right:i.withCtx(()=>[i.createVNode(f)]),_:1},8,["modelValue"]),i.unref(r)?(i.openBlock(),i.createElementBlock("div",od,[i.createElementVNode("ul",rd,[(i.openBlock(!0),i.createElementBlock(i.Fragment,null,i.renderList(i.unref(s),g=>(i.openBlock(),i.createElementBlock("li",{key:g.value,onClick:p=>l(g)},i.toDisplayString(g.label),9,sd))),128))])])):i.createCommentVNode("",!0)])}}}),[["__scopeId","data-v-67b698bb"]]),ad={class:"footer"},kr=x(i.defineComponent({__name:"PDialog",setup(t){const e=i.computed(()=>{switch(S.UI.Dialog.GetType()){case"info":return"message primary";case"success":return"message success";case"warning":return"message warning";case"error":return"message danger";default:return"message neutral"}});return(n,o)=>{const r=i.resolveComponent("MessageBody"),s=i.resolveComponent("PButton");return i.openBlock(),i.createBlock(i.Transition,{name:"fade"},{default:i.withCtx(()=>[("PF"in n?n.PF:i.unref(S)).UI.Dialog.IsVisible()?(i.openBlock(),i.createElementBlock("div",{key:0,class:i.normalizeClass(i.unref(e))},[i.createVNode(r,{title:("PF"in n?n.PF:i.unref(S)).UI.Dialog.GetTitle(),text:("PF"in n?n.PF:i.unref(S)).UI.Dialog.GetText()},null,8,["title","text"]),i.createElementVNode("div",ad,[i.createVNode(s,{type:"primary",text:("PF"in n?n.PF:i.unref(S)).UI.Dialog.GetConfirmButtonText(),margin:"10px 0 0 0",onClick:o[0]||(o[0]=a=>("PF"in n?n.PF:i.unref(S)).UI.Dialog.Submit())},null,8,["text"]),i.createVNode(s,{type:"warning",text:("PF"in n?n.PF:i.unref(S)).UI.Dialog.GetCancelButtonText(),margin:"10px 0 0 0",onClick:o[1]||(o[1]=a=>("PF"in n?n.PF:i.unref(S)).UI.Dialog.Cancel())},null,8,["text"])])],2)):i.createCommentVNode("",!0)]),_:1})}}}),[["__scopeId","data-v-bf4d379c"]]),Er=x(i.defineComponent({__name:"PhoneForm",props:{modelValue:{},modelModifiers:{}},emits:["update:modelValue"],setup(t){const e=i.useModel(t,"modelValue"),n=async()=>{await S.S.Phones.Update(e.value)};return(o,r)=>{const s=i.resolveComponent("PInput");return i.openBlock(),i.createElementBlock(i.Fragment,null,[i.createVNode(s,{modelValue:e.value.number,"onUpdate:modelValue":r[0]||(r[0]=a=>e.value.number=a),onBlur:n},null,8,["modelValue"]),i.createVNode(s,{modelValue:e.value.description,"onUpdate:modelValue":r[1]||(r[1]=a=>e.value.description=a),onBlur:n},null,8,["modelValue"])],64)}}}),[["__scopeId","data-v-f801a76e"]]),ld={};function cd(t,e){return i.openBlock(),i.createElementBlock(i.Fragment,null,[e[0]||(e[0]=i.createElementVNode("div",{class:"blur"},null,-1)),e[1]||(e[1]=i.createElementVNode("div",{class:"loader-container"},[i.createElementVNode("div",{class:"loader",style:{"--b":"20px",width:"200px","--n":"10"}})],-1))],64)}const vr=x(ld,[["render",cd],["__scopeId","data-v-0f1f2f84"]]),xr=x(i.defineComponent({__name:"PNotification",setup(t){const e=i.computed(()=>{switch(S.UI.Notify.GetType()){case"info":return"message info";case"success":return"message success";case"warning":return"message warning";case"error":return"message error";default:return"message neutral"}});return(n,o)=>{const r=i.resolveComponent("MessageBody");return i.openBlock(),i.createBlock(i.Transition,{name:"fade"},{default:i.withCtx(()=>[("PF"in n?n.PF:i.unref(S)).UI.Notify.IsVisible()?(i.openBlock(),i.createElementBlock("div",{key:0,class:i.normalizeClass(i.unref(e))},[i.createVNode(r,{title:("PF"in n?n.PF:i.unref(S)).UI.Notify.GetTitle(),text:("PF"in n?n.PF:i.unref(S)).UI.Notify.GetText()},null,8,["title","text"])],2)):i.createCommentVNode("",!0)]),_:1})}}}),[["__scopeId","data-v-6d245bd5"]]),dd={style:{display:"flex","justify-content":"center",width:"100%"}},ud={class:"pag-number"},hd={class:"pag-ul"},fd={key:2},Br=x(i.defineComponent({__name:"PPagination",props:{showConfirm:{type:Boolean,default:!1},justifyContent:{type:String,default:"center"},store:{type:Object,required:!0}},emits:["cancel","save"],setup(t,{emit:e}){const n=t,o=g=>g?"active":"neutral",r=g=>g?"not-active":"neutral",s=S.Paginator,a=i.ref(!1),c=i.ref(!1),l=e;s.count=n.store.Count.value;const u=async g=>{if(g!==s.curPage){if(g<1&&(g=1),g>s.pagesCount()&&(g=s.pagesCount()),!n.showConfirm)return await h(g);S.UI.Dialog.Save().then(async()=>{l("save"),await h(g)}).catch(async()=>{S.UI.Notify.Warning("Изменения не были сохранены"),l("cancel"),await h(g)})}},h=async(g,p)=>{s.setCurPage(g),S.H.FTSP.Get().p.offset=(g-1)*s.limit,await n.store.FTSP(),m()},f=i.computed(()=>{const g=s.pagesCount();return g<8?S.H.Arrays.GenerateNumsRange(2,g-1).filter(p=>p<g&&p>1):S.H.Arrays.GenerateNumsRange(s.curPage-2,s.curPage+3).filter(p=>p<g&&p>1)}),m=()=>{const g=document.querySelector(".el-table__body-wrapper"),p=document.querySelector("#list");g?g.scrollTo({top:0}):p&&p.scrollTo({top:0})};return i.onBeforeUnmount(()=>{S.H.FTSP.Get().p.drop()}),(g,p)=>{const E=i.resolveComponent("ArrowLeft"),w=i.resolveComponent("PButton"),M=i.resolveComponent("DoubleArrowLeft"),O=i.resolveComponent("EllipsisSvg"),L=i.resolveComponent("DoubleArrowRight"),F=i.resolveComponent("ArrowRight");return i.openBlock(),i.createElementBlock("div",dd,[i.createElementVNode("div",{class:"pag-container",style:i.normalizeStyle({justifyContent:t.justifyContent})},[i.createElementVNode("div",ud,[i.createVNode(w,{skin:"pag",type:r(i.unref(s).curPage===1),onClick:p[0]||(p[0]=z=>u(i.unref(s).curPage-1))},{default:i.withCtx(()=>[i.createVNode(E)]),_:1},8,["type"]),i.createElementVNode("ul",hd,[i.createElementVNode("li",null,[i.createVNode(w,{skin:"pag",type:o(i.unref(s).curPage===1),text:"1",onClick:p[1]||(p[1]=z=>u(1))},null,8,["type"])]),i.unref(s).pagesCount()>8&&i.unref(s).curPage>4?(i.openBlock(),i.createElementBlock("li",{key:0,onMouseenter:p[3]||(p[3]=z=>a.value=!0),onMouseleave:p[4]||(p[4]=z=>a.value=!1)},[i.createVNode(w,{skin:"pag",type:"neutral",onClick:p[2]||(p[2]=z=>u(i.unref(s).curPage-5))},{default:i.withCtx(()=>[i.unref(a)?(i.openBlock(),i.createBlock(M,{key:0})):(i.openBlock(),i.createBlock(O,{key:1}))]),_:1})],32)):i.createCommentVNode("",!0),(i.openBlock(!0),i.createElementBlock(i.Fragment,null,i.renderList(i.unref(f),z=>(i.openBlock(),i.createElementBlock("li",{key:z},[i.createVNode(w,{skin:"pag",type:o(z===i.unref(s).curPage),text:z,onClick:we=>u(z)},null,8,["type","text","onClick"])]))),128)),i.unref(s).pagesCount()>=8&&i.unref(s).curPage<i.unref(s).pagesCount()-3?(i.openBlock(),i.createElementBlock("li",{key:1,onMouseenter:p[6]||(p[6]=z=>c.value=!0),onMouseleave:p[7]||(p[7]=z=>c.value=!1)},[i.createVNode(w,{skin:"pag",type:"neutral",onClick:p[5]||(p[5]=z=>u(i.unref(s).curPage+5))},{default:i.withCtx(()=>[i.unref(c)?(i.openBlock(),i.createBlock(L,{key:0})):(i.openBlock(),i.createBlock(O,{key:1}))]),_:1})],32)):i.createCommentVNode("",!0),i.unref(s).pagesCount()>1?(i.openBlock(),i.createElementBlock("li",fd,[i.createVNode(w,{skin:"pag",type:o(i.unref(s).pagesCount()===i.unref(s).curPage),text:i.unref(s).pagesCount(),onClick:p[8]||(p[8]=z=>u(i.unref(s).pagesCount()))},null,8,["type","text"])])):i.createCommentVNode("",!0)]),i.createVNode(w,{skin:"pag",type:r(i.unref(s).curPage===i.unref(s).pagesCount()),onClick:p[9]||(p[9]=z=>u(i.unref(s).curPage+1))},{default:i.withCtx(()=>[i.createVNode(F)]),_:1},8,["type"])])],4)])}}}),[["__scopeId","data-v-5c7e3a5d"]]),Mr=x(i.defineComponent({__name:"RemoteSearch",props:{keyValue:{type:String,default:""},modelValue:{type:String,default:""},storeModule:{type:String,default:""},placeholder:{type:String,default:"Начните вводить запрос"},showSuggestions:{type:Boolean,default:!0},maxWidth:{type:[Number,String],default:350},focus:{type:Boolean,default:!1}},emits:["select","load","input"],setup(t,{emit:e}){const n=t,o=e,r=i.ref(n.modelValue),s=i.ref(),a=S.S.Search.SearchModel();i.watch(()=>n.focus,()=>{n.focus&&setTimeout(()=>{s.value.focus(),r.value=""},500)});const c=async h=>{if(h.length<2)return;s.value.activated=!0,a.searchObjects=[],a.query=h,a.key=n.keyValue;const f=a.searchGroups.find(m=>m.key===n.keyValue);return f&&(a.searchGroup=f),await S.S.Search.Search(a),a.searchObjects},l=async h=>{o("select",h),r.value=""},u=h=>{o("input",h),h.length===0&&o("input","")};return(h,f)=>{const m=i.resolveComponent("PAutocomplete");return i.openBlock(),i.createBlock(m,{ref_key:"searchForm",ref:s,modelValue:i.unref(r),"onUpdate:modelValue":f[0]||(f[0]=g=>i.isRef(r)?r.value=g:null),"value-key":"label",style:{width:"100%","margin-right":"10px"},placeholder:t.placeholder,"search-func":c,"trigger-on-focus":t.showSuggestions,suggestions:i.unref(a).searchObjects,onSelect:l,onInput:u},{suffix:i.withCtx(()=>f[1]||(f[1]=[i.createElementVNode("i",{class:"el-icon-search"},null,-1)])),_:1},8,["modelValue","placeholder","trigger-on-focus","suggestions"])}}}),[["__scopeId","data-v-d3138f3a"]]),md={class:"mainblock-body"},pd={class:"mainblock-footer"},Ir=x(i.defineComponent({__name:"ResearcheContainer",props:{background:{type:String,required:!1,default:"inherit"},padding:{type:String,required:!1,default:"0px 10px"}},setup(t){return(e,n)=>(i.openBlock(),i.createElementBlock("div",{class:"mainblock",style:i.normalizeStyle({background:t.background,padding:t.padding})},[i.createElementVNode("div",{class:"mainblock-header",style:i.normalizeStyle({background:t.background})},[i.renderSlot(e.$slots,"header",{},void 0,!0)],4),i.createElementVNode("div",md,[i.renderSlot(e.$slots,"body",{},void 0,!0)]),i.createElementVNode("div",pd,[i.renderSlot(e.$slots,"footer",{},void 0,!0)])],4))}}),[["__scopeId","data-v-367c3367"]]),gd={class:"right-slider-content"},yd={class:"right-slider-content-header"},wd={class:"right-slider-content-box"},bd={class:"right-slider-button"},Rr=x(i.defineComponent({__name:"RightSliderContainer",props:{sliderOffWidth:{type:String,required:!1,default:"30px"},sliderOnWidth:{type:String,required:!1,default:"260px"},background:{type:String,required:!1,default:"inherit"},toggle:{type:Boolean,default:!1},titleOpen:{type:String,required:!1,default:"Скрыть список исследований"},titleClose:{type:String,required:!1,default:"Показать список исследований"}},emits:["toggle"],setup(t,{emit:e}){const n=t,o=e,r=i.ref(!1);i.watch(()=>n.toggle,()=>{r.value=!r.value});const s=a=>{r.value=!r.value,o("toggle",a)};return(a,c)=>{const l=i.resolveComponent("PString");return i.openBlock(),i.createElementBlock("div",{class:"right-slider",style:i.normalizeStyle({marginRight:i.unref(r)?`calc(${t.sliderOffWidth} - ${t.sliderOnWidth})`:"0",width:t.sliderOnWidth})},[i.createElementVNode("div",{class:"click-line",onClick:c[0]||(c[0]=u=>s(!i.unref(r)))},[i.unref(r)?(i.openBlock(),i.createBlock(l,{key:0,string:t.titleClose,"font-size":"16px",padding:"0",color:"#343E5C"},null,8,["string"])):i.createCommentVNode("",!0),i.unref(r)?i.createCommentVNode("",!0):(i.openBlock(),i.createBlock(l,{key:1,string:t.titleOpen,"font-size":"16px",padding:"0",color:"#343E5C"},null,8,["string"]))]),i.createElementVNode("div",gd,[i.createElementVNode("div",yd,[i.renderSlot(a.$slots,"header",{},void 0,!0)]),i.createElementVNode("div",wd,[i.renderSlot(a.$slots,"default",{},void 0,!0)])]),i.createElementVNode("div",bd,[i.renderSlot(a.$slots,"button",{},void 0,!0)])],4)}}}),[["__scopeId","data-v-262b1c53"]]),Cd={class:"mainblock"},Sd={class:"body-block"},kd={class:"tab-block"},$r=x(i.defineComponent({__name:"RightTabsContainer",props:{sliderOffWidth:{type:String,required:!1,default:"101px"},sliderOnWidth:{type:String,required:!1,default:"332px"},background:{type:String,required:!1,default:"inherit"},isToggle:{type:Boolean,required:!1,default:!1},mobileWidth:{type:String,required:!1,default:"768px"}},emits:["toggle"],setup(t,{emit:e}){const n=t,o=e,r=i.ref(!1),s=i.ref(window.matchMedia("(max-width: 768px)").matches),a=l=>{o("toggle",l)},c=i.ref(!1);return i.onBeforeMount(async()=>{window.addEventListener("resize",()=>{switch(n.mobileWidth){case"1330px":return s.value=window.matchMedia("(max-width: 1330px)").matches;case"1215px":return s.value=window.matchMedia("(max-width: 1215px)").matches;case"1024px":return s.value=window.matchMedia("(max-width: 1024px)").matches;case"768px":return s.value=window.matchMedia("(max-width: 768px)").matches}return s.value=window.matchMedia("(max-width: 1330px)").matches}),r.value=!0}),(l,u)=>(i.openBlock(),i.createElementBlock("div",Cd,[i.createElementVNode("div",{class:"slider-block",style:i.normalizeStyle({marginRight:i.unref(s)?t.isToggle?"49px":`calc(49px - ${t.sliderOnWidth})`:t.isToggle?t.sliderOffWidth:`calc(${t.sliderOffWidth} - ${t.sliderOnWidth})`,width:t.sliderOnWidth,minHeight:t.sliderOffWidth,height:t.isToggle?"auto":"100px"})},[i.createElementVNode("div",{class:"slider-icon",style:i.normalizeStyle({border:t.isToggle?"1px solid #379FFF":"1px solid #00B5A4",background:t.isToggle?"#ffffff":"#C7ECEA"}),onClick:u[0]||(u[0]=h=>a(!t.isToggle)),onMouseenter:u[1]||(u[1]=h=>c.value=!0),onMouseleave:u[2]||(u[2]=h=>c.value=!1)},[i.createElementVNode("div",{class:"icon-block",style:i.normalizeStyle({transform:i.unref(c)?t.isToggle?"rotate(-225deg) scale(1.2, 1.2)":"rotate(0deg) scale(1.2, 1.2)":t.isToggle?"rotate(-225deg)":"rotate(0deg)",fill:t.isToggle?"#379FFF":"#00B5A4"})},[i.renderSlot(l.$slots,"icon",{},void 0,!0)],4)],36),i.createElementVNode("div",{class:"slider-info",style:i.normalizeStyle({width:`calc(${t.sliderOnWidth} - ${t.sliderOffWidth})`})},[i.renderSlot(l.$slots,"slider-body",{},void 0,!0)],4)],4),i.createElementVNode("div",Sd,[i.renderSlot(l.$slots,"body",{},void 0,!0)]),i.createElementVNode("div",kd,[i.renderSlot(l.$slots,"tabs",{},void 0,!0)])]))}}),[["__scopeId","data-v-0cfd77ce"]]);var ue=(t=>(t.String="string",t.Text="text",t.Number="number",t.Date="date",t.DateTime="dateTime",t.Radio="radio",t.Set="set",t.Boolean="boolean",t.Files="files",t.File="file",t.MatrixRadio="matrixRadio",t.MatrixSet="matrixSet",t))(ue||{});const Ed=["label","value"],Ar=x(i.defineComponent({__name:"SelectValueType",props:{selectedType:{type:String,required:!0}},emits:["select"],setup(t,{emit:e}){const n={[ue.String]:"Текстовый ответ",[ue.Text]:"Развёрнутый текстовый ответ",[ue.Number]:"Числовой ответ",[ue.Date]:"Ответ в виде даты",[ue.Radio]:"Выбор одного из вариантов",[ue.Set]:"Выбор нескольких вариантов",[ue.File]:"Ответ в виде файла",[ue.MatrixRadio]:"Матрица с одним выбором",[ue.MatrixSet]:"Матрица с несколькими выборами"},o=e,r=s=>{o("select",s)};return(s,a)=>{const c=i.resolveComponent("PString"),l=i.resolveComponent("PSelect");return i.openBlock(),i.createElementBlock(i.Fragment,null,[i.createVNode(c,{string:"Выберите вид ответа:","font-size":"14px",padding:"0","justify-content":"left",margin:"10px 0"}),i.createVNode(l,{"model-value":t.selectedType,placeholder:"Вид ответа",onChange:r},{default:i.withCtx(()=>[(i.openBlock(),i.createElementBlock(i.Fragment,null,i.renderList(n,(u,h)=>i.createElementVNode("option",{key:u,label:u,value:h},null,8,Ed)),64))]),_:1},8,["model-value"])],64)}}}),[["__scopeId","data-v-36a59e2b"]]),vd={class:"field"},Nr=x(i.defineComponent({__name:"SingleNameToggleForm",props:{withName:{type:Object,required:!0}},emits:["submit"],setup(t,{emit:e}){const n=t,o=e,r=i.ref(!1),s=i.ref(),a=i.ref(n.withName.name),c=i.ref(!1),l=()=>{c.value=!1},u=async()=>{a.value.trim(),n.withName.setName&&n.withName.setName(a.value),r.value=!r.value,o("submit")};return(h,f)=>{const m=i.resolveComponent("PString"),g=i.resolveComponent("el-input"),p=i.resolveComponent("el-form-item"),E=i.resolveComponent("el-form"),w=i.resolveComponent("PButton");return i.openBlock(),i.createBlock(E,{ref_key:"form",ref:s,style:{width:"100%"}},{default:i.withCtx(()=>[i.createVNode(Zt,{title:"Название","show-save-dialog":c.value,icon:"edit-title","with-hover":!0,close:r.value,width:"100%",onKeyupEnter:u,onAfterClose:l},{"open-inside-content":i.withCtx(()=>[i.createVNode(Zt,{title:"",icon:"edit-title","with-open-window":!1,"with-hover":!1,"border-color":"#ffffff","base-box-margin":"0 0 15px 0",padding:"0",width:"100%","custom-class":"test","open-width":"100%"},{default:i.withCtx(()=>[i.createElementVNode("div",vd,[i.createVNode(E,null,{default:i.withCtx(()=>[i.createVNode(p,{style:{width:"100%"},prop:"surname"},{default:i.withCtx(()=>[i.createVNode(g,{modelValue:a.value,"onUpdate:modelValue":f[0]||(f[0]=M=>a.value=M),style:{width:"100%"},autosize:!0,type:"textarea"},null,8,["modelValue"])]),_:1})]),_:1})])]),_:1}),i.createVNode(w,{type:"admin",color:"blue",text:"Сохранить",onClick:u})]),default:i.withCtx(()=>[a.value.length?(i.openBlock(),i.createBlock(m,{key:0,string:a.value.length>60?a.value.slice(0,60)+"...":a.value},null,8,["string"])):(i.openBlock(),i.createBlock(m,{key:1,string:"Введите данные",color:"#B0A4C0"}))]),_:1},8,["show-save-dialog","close"])]),_:1},512)}}}),[["__scopeId","data-v-cc488c49"]]);var Me=(t=>(t.Asc="asc",t.Desc="desc",t))(Me||{});function Pr(t,e){const n=[],o=e||Me.Asc,r=o===Me.Asc?Me.Desc:Me.Asc;return Object.values(t).forEach(s=>{n.push(s(o)),n.push(s(r))}),n.length>0&&!n.some(s=>s.default)&&(n[0].default=!0),e&&n.forEach(s=>{s.default&&(s.default=s.order===e)}),n}class xd{constructor(){d(this,"list",[]);d(this,"defaultSortModel");d(this,"changeFlag",!1)}Set(e){this.Reset(),e&&(Array.isArray(e)?this.list=e:this.list=Pr(e),this.SetDefault())}SetDefault(){this.defaultSortModel=this.list.find(e=>e.default)??this.list[0],this.changeFlag=!this.changeFlag}Get(){return this.list}GetDefault(){return this.defaultSortModel}Reset(){this.list=[],this.defaultSortModel=void 0}}const ze=new xd,Bd=["label","value"],zr=x(i.defineComponent({__name:"SortList",props:{maxWidth:{type:[Number,String],default:250}},emits:["load"],setup(t,{emit:e}){const n=i.ref(!1),o=e,r=i.ref();i.onBeforeMount(()=>{n.value=!0,r.value=ze.GetDefault(),S.H.FTSP.Get().setSortModel(r.value)});const s=async c=>{r.value=c??ze.GetDefault(),S.H.FTSP.Get().setSortModel(r.value),S.H.FTSP.Get().p.drop(),o("load")},a=async c=>{S.H.FTSP.Get().p.drop(),await s(c)};return(c,l)=>{var h;const u=i.resolveComponent("PSelect");return i.unref(n)?(i.openBlock(),i.createBlock(u,{key:0,modelValue:i.unref(r),"onUpdate:modelValue":l[0]||(l[0]=f=>i.isRef(r)?r.value=f:null),"popper-append-to-body":!1,clearable:!((h=i.unref(r))!=null&&h.default),"value-key":"label",onChange:a,onClear:l[1]||(l[1]=f=>a())},{default:i.withCtx(()=>[(i.openBlock(!0),i.createElementBlock(i.Fragment,null,i.renderList(i.unref(ze).Get(),(f,m)=>(i.openBlock(),i.createElementBlock("option",{key:m,label:f.label,value:f},null,8,Bd))),128))]),_:1},8,["modelValue","clearable"])):i.createCommentVNode("",!0)}}}),[["__scopeId","data-v-09845b7b"]]),Md=["label","value"],Vr=x(i.defineComponent({__name:"SortSelect",props:{maxWidth:{type:[Number,String],default:250}},emits:["load"],setup(t,{emit:e}){const n=e,o=i.ref();i.onBeforeMount(()=>{o.value=ze.GetDefault()});const r=async a=>{a||(o.value=ze.GetDefault()),S.H.FTSP.Get().setSortModel(o.value),S.H.FTSP.Get().p.drop(),n("load")},s=async a=>{await r(a)};return(a,c)=>{var u;const l=i.resolveComponent("PSelect");return i.openBlock(),i.createBlock(l,{modelValue:i.unref(o),"onUpdate:modelValue":c[0]||(c[0]=h=>i.isRef(o)?o.value=h:null),"popper-append-to-body":!1,clearable:!((u=i.unref(o))!=null&&u.default),"value-key":"label",onChange:s},{default:i.withCtx(()=>[(i.openBlock(!0),i.createElementBlock(i.Fragment,null,i.renderList(i.unref(ze).Get(),(h,f)=>(i.openBlock(),i.createElementBlock("option",{key:f,label:h.label,value:h},null,8,Md))),128))]),_:1},8,["modelValue","clearable"])}}}),[["__scopeId","data-v-a1820654"]]),Id={class:"switch-container"},Rd={class:"line"},$d={class:"line"},Tr=x(i.defineComponent({__name:"Switch3Pos",props:{firstModel:{type:Object,required:!0},secondModel:{type:Object,required:!0},defaultLabel:{type:String,default:"Все"}},emits:["load"],setup(t,{emit:e}){const n=t,o={background:"inherit",border:"1px solid #c4c4c4"},r=()=>n.firstModel.valueEq(u.value)?void 0:o,s=()=>u.value?o:void 0,a=()=>n.secondModel.valueEq(u.value)?void 0:o,c=f=>{var g;return{color:(g=u.value)!=null&&g.valueEq(f)?"#006bb4":"#B0A4C0"}},l=e,u=i.ref(void 0),h=async f=>{var m;(m=u.value)!=null&&m.valueEq(f)||(S.H.FTSP.Get().replaceF(f,u.value),u.value=f,l("load"))};return(f,m)=>{const g=i.resolveComponent("PString");return i.openBlock(),i.createElementBlock("div",Id,[i.createElementVNode("div",Rd,[i.createVNode(g,{string:t.firstModel.label,"font-size":"12px",padding:"0",style:i.normalizeStyle(c(t.firstModel)),onClick:m[0]||(m[0]=p=>h(t.firstModel))},null,8,["string","style"]),i.createVNode(g,{string:"Все","font-size":"12px",padding:"0",style:i.normalizeStyle(c()),onClick:m[1]||(m[1]=p=>h())},null,8,["style"]),i.createVNode(g,{string:t.secondModel.label,"font-size":"12px",padding:"0",style:i.normalizeStyle(c(t.secondModel)),onClick:m[2]||(m[2]=p=>h(t.secondModel))},null,8,["string","style"])]),i.createElementVNode("div",$d,[i.createElementVNode("div",{class:i.normalizeClass(["switch-knob1",{active:t.firstModel.valueEq(i.unref(u))}]),style:i.normalizeStyle(r()),onClick:m[3]||(m[3]=p=>h(t.firstModel))},null,6),i.createElementVNode("div",{class:i.normalizeClass(["switch-knob2",{active:!i.unref(u)}]),style:i.normalizeStyle(s()),onClick:m[4]||(m[4]=p=>h())},null,6),i.createElementVNode("div",{class:i.normalizeClass(["switch-knob3",{active:t.secondModel.valueEq(i.unref(u))}]),style:i.normalizeStyle(a()),onClick:m[5]||(m[5]=p=>h(t.secondModel))},null,6),m[6]||(m[6]=i.createElementVNode("div",{class:"switch-axis"},null,-1)),m[7]||(m[7]=i.createElementVNode("div",{class:"switch-axis-dash1"},null,-1)),m[8]||(m[8]=i.createElementVNode("div",{class:"switch-axis-dash2"},null,-1)),m[9]||(m[9]=i.createElementVNode("div",{class:"switch-axis-dash3"},null,-1))])])}}}),[["__scopeId","data-v-78475d54"]]),Ad={},Nd={class:"flex"};function Pd(t,e){return i.openBlock(),i.createElementBlock("div",Nd,[i.renderSlot(t.$slots,"default",{},void 0,!0)])}const Fr=x(Ad,[["render",Pd],["__scopeId","data-v-5023d414"]]),Dr=x(i.defineComponent({__name:"ToggleInfoItem",props:{title:{type:String,required:!0},content:{type:String,required:!0}},emits:["submit"],setup(t,{emit:e}){const n=i.ref(!1),o=e,r=async()=>{o("submit"),n.value=!n.value};return(s,a)=>{const c=i.resolveComponent("PString"),l=i.resolveComponent("PButton"),u=i.resolveComponent("GridContainer"),h=i.resolveComponent("InfoItem");return i.openBlock(),i.createBlock(h,{title:t.title,icon:"edit-title","with-hover":!0,close:i.unref(n),width:"100%",onKeyupEnter:r},{"open-inside-content":i.withCtx(()=>[i.createVNode(u,{"custom-class":"grid"},{default:i.withCtx(()=>[i.renderSlot(s.$slots,"default",{},void 0,!0),i.createVNode(l,{type:"admin",color:"blue",text:"Сохранить",onClick:r})]),_:3})]),default:i.withCtx(()=>[t.content.length>0?(i.openBlock(),i.createBlock(c,{key:0,string:t.content},null,8,["string"])):(i.openBlock(),i.createBlock(c,{key:1,string:"Введите данные",color:"#B0A4C0"}))]),_:3},8,["title","close"])}}}),[["__scopeId","data-v-0794596f"]]),zd={class:"top-slider-content"},Vd={class:"center"},Or=x(i.defineComponent({__name:"TopSliderContainer",props:{sliderOffHeight:{type:String,required:!1,default:"53px"},sliderOnHeight:{type:String,required:!1,default:"220px"},background:{type:String,required:!1,default:"inherit"},toggle:{type:Boolean,default:!1}},emits:["toggle"],setup(t,{emit:e}){const n=t,o=e,r=i.ref(!0);i.watch(()=>n.toggle,()=>{r.value=!r.value});const s=a=>{r.value=!r.value,o("toggle",a)};return(a,c)=>(i.openBlock(),i.createElementBlock(i.Fragment,null,[i.unref(r)?i.createCommentVNode("",!0):(i.openBlock(),i.createElementBlock("div",{key:0,class:"blur",onClick:[c[0]||(c[0]=i.withModifiers(l=>r.value=!0,["prevent"])),c[1]||(c[1]=i.withModifiers(()=>{},["stop"]))]})),i.createElementVNode("div",{class:"top-slider",style:i.normalizeStyle({marginTop:i.unref(r)?`calc(${t.sliderOffHeight} - ${t.sliderOnHeight})`:"0",height:t.sliderOnHeight}),onClick:c[3]||(c[3]=i.withModifiers(()=>{},["stop"]))},[i.createElementVNode("div",zd,[i.createElementVNode("div",Vd,[i.renderSlot(a.$slots,"default",{},void 0,!0)])]),i.createElementVNode("div",{class:"click-line",style:i.normalizeStyle({height:t.sliderOffHeight}),onClick:c[2]||(c[2]=l=>s(!i.unref(r)))},[i.renderSlot(a.$slots,"title",{},void 0,!0)],4)],4)],64))}}),[["__scopeId","data-v-683131f5"]]);class Xt{constructor(e){d(this,"id");d(this,"ratio",0);d(this,"src","");d(this,"store","");T.BuildClass(this,e)}static CreateCropper(e,n,o){const r=new Xt;return r.src=e,r.id=o,n&&(r.ratio=n),r}}const Td={id:"drop-area",class:"img-container"},Fd={key:0},Dd=["src"],Od={class:"tools-button"},Ld={class:"ins"},Hd={key:1},qd=["id"],Lr=x(i.defineComponent({__name:"UploaderImage",props:{withCrop:{type:Boolean,default:!0},fileInfo:{type:Be,required:!0},height:{type:Number,default:150},width:{type:Number,default:150},cropRatio:{type:Boolean,default:!0},emitCrop:{type:Boolean,default:!1},defaultRatio:{type:Number,required:!1,default:1}},emits:["crop","removeFile"],setup(t,{emit:e}){const n=t,o=e,r=i.ref(void 0),s=S.H.Id.GUID(),a=i.ref(!1),c=i.ref(),l=w=>{const M=n.cropRatio?n.defaultRatio:0;S.S.Cropper.Open(Xt.CreateCropper(w.url,M,n.fileInfo.id)),a.value=!0},u=()=>{S.UI.Dialog.Show({text:"Вы хотите удалить изображение",confirmButtonText:"Удалить",cancelButtonText:"Не удалять"}).then(()=>{r.value=void 0,c.value.clearFiles(),o("removeFile")})},h=w=>{n.fileInfo.setFile(w),n.fileInfo.fileSystemPath&&(r.value=n.fileInfo),a.value=!1,o("crop")};i.onBeforeMount(()=>{n.fileInfo.fileSystemPath&&(r.value=n.fileInfo,r.value.url=n.fileInfo.getFileUrl())});let f=null;i.onMounted(()=>{const w=document.getElementById("drop-area");w&&(w.addEventListener("dragover",M=>{m(M),w.classList.add("drag-over")}),w.addEventListener("dragleave",M=>{m(M),w.classList.remove("drag-over")}),w.addEventListener("dragenter",m),w.addEventListener("dragleave",m),w.addEventListener("drop",p),f=document.getElementById(s))});function m(w){w.preventDefault(),w.stopPropagation()}const g=()=>{f&&f.click()};function p(w){if(w.preventDefault(),!w.dataTransfer)return;const M=w.dataTransfer.files;M.length&&f&&(f.files=M,E())}const E=()=>{if(!f||!f.files||!f.files.length)return;const w=f.files[0];w.url=URL.createObjectURL(w),r.value=w,n.fileInfo.uploadNewFile(w),l(r.value)};return(w,M)=>{const O=i.resolveComponent("PButton"),L=i.resolveComponent("ImageCropper");return i.openBlock(),i.createElementBlock(i.Fragment,null,[i.createElementVNode("div",Td,[i.unref(r)?(i.openBlock(),i.createElementBlock("div",Fd,[i.createElementVNode("div",{class:"img-block",style:i.normalizeStyle({width:t.height*t.defaultRatio-2+"px",height:t.height+"px"})},[i.createElementVNode("img",{class:"el-upload-list__item-thumbnail",src:i.unref(r).url,alt:"upload-image"},null,8,Dd)],4),i.createElementVNode("div",Od,[i.createElementVNode("div",Ld,[i.createVNode(O,{skin:"text",text:"Изменить","font-size":"20px",width:"300px",margin:"100px 0 0 0",onClick:M[0]||(M[0]=F=>l(i.unref(r)))}),i.createVNode(O,{skin:"text",text:"Удалить","font-size":"20px",width:"300px",margin:"50px 0 0 0",onClick:M[1]||(M[1]=F=>u())})])])])):(i.openBlock(),i.createElementBlock("div",Hd,[i.createElementVNode("div",{class:"add-button",style:i.normalizeStyle({width:t.height*t.defaultRatio-2+"px",height:t.height+"px"})},[i.createVNode(O,{skin:"text",text:"Добавить","font-size":"20px",onClick:g})],4)]))]),i.createElementVNode("input",{id:i.unref(s),type:"file",hidden:"",onChange:E},null,40,qd),t.withCrop?(i.openBlock(),i.createBlock(L,{key:0,open:i.unref(a),"default-ratio":t.defaultRatio,onCrop:h,onClose:M[2]||(M[2]=F=>a.value=!1)},null,8,["open","default-ratio"])):i.createCommentVNode("",!0)],64)}}}),[["__scopeId","data-v-4119c534"]]);var pe=(t=>(t.Login="login",t.Register="register",t.Restore="restore",t.Refresh="refresh",t))(pe||{});class Ze{constructor(e,n,o,r){d(this,"text","Сохранить");d(this,"type",ce.Success);d(this,"condition",!0);d(this,"action");d(this,"id","button");d(this,"disabled",!1);this.text=e,this.type=o,this.action=n,r!==void 0&&(this.condition=r)}static Primary(e,n,o){return new Ze(e,n,ce.Primary,o)}static Success(e,n,o){return new Ze(e,n,ce.Success,o)}static Warning(e,n,o){return new Ze(e,n,ce.Warning,o)}static Error(e,n,o){return new Ze(e,n,ce.Error,o)}}class Hr extends Ze{constructor(){super(...arguments);d(this,"id","auth-button");d(this,"status",pe.Login);d(this,"submit",!1)}GetStatus(){return this.status}}let jn=class extends Hr{constructor(){super(...arguments);d(this,"id","auth-button-login");d(this,"text","Войти");d(this,"isSubmit",!1);d(this,"disabled",!1)}};class qr extends Hr{constructor(){super(...arguments);d(this,"id","auth-button-register");d(this,"text","Зарегистрироваться");d(this,"isSubmit",!1);d(this,"disabled",!1)}}class Ud{constructor(){d(this,"value","");d(this,"label","");d(this,"placeholder","");d(this,"validator")}Validate(){return this.validator?(this.validator.validate(this.value),this.validator.errors):[]}Reset(){this.value=""}}class Jt extends Ud{constructor(){super(...arguments);d(this,"method");d(this,"id","field-auth");d(this,"name","")}}var at=(t=>(t.Login="login",t.Email="email",t.Phone="phone",t.VK="vk",t.ESIA="esia",t))(at||{});const _d=/\S+@\S+\.\S+/;class Ur{constructor(){d(this,"errors",[])}validate(e){return(e===""||!e)&&this.errors.push("Введите email"),_d.test(e)||this.errors.push("Некорректный email"),this.errors}}class Yt extends Jt{constructor(){super(...arguments);d(this,"id","field-auth-email");d(this,"label","Email");d(this,"name","email");d(this,"placeholder","Введите email");d(this,"validator",new Ur);d(this,"method",at.Email)}}class Wd{constructor(){d(this,"errors",[]);d(this,"length",6)}validate(e){return e===""||!e?(this.errors.push("Введите пароль"),this.errors):(e.length<this.length&&this.errors.push("Пароль недостаточной длины"),this.errors)}}class Qt extends Jt{constructor(){super(...arguments);d(this,"label","Пароль");d(this,"validator",new Wd);d(this,"name","password");d(this,"placeholder","Введите пароль");d(this,"id","field-auth-password")}}class _r extends Jt{constructor(){super(...arguments);d(this,"label","Повторите пароль");d(this,"id","field-auth-password-repeat")}}const Wr={[pe.Login]:{methods:[at.Email],title:"Вход в систему",action:"login",buttons:[new jn],fields:[new Yt,new Qt],errorMessage:"Неверно указан email или пароль",successMessage:"Вы успешно вошли в систему"},[pe.Register]:{methods:[],title:"Регистрация",action:"register",buttons:[new qr,new jn],fields:[new Yt,new Qt,new _r],errorMessage:"Неверно указан email или пароль",successMessage:"Вы успешно зарегистрировались в системе, войдите под своим паролем"},[pe.Restore]:{title:"Восстановление пароля",methods:[],action:"restorePassword",successMessage:"Ссылка для восстановления пароля отправлена на Вашу почту",errorMessage:"Неверно указан email",buttons:[],fields:[new Yt]},[pe.Refresh]:{methods:[],title:"Создание нового пароля",action:"passwordChange",successMessage:"Воспользуйтесь новым паролем для входа",errorMessage:"Неверно указан email",buttons:[],fields:[new Qt]}};class jd{constructor(){d(this,"settings",Wr);d(this,"status",pe.Login);d(this,"selectedMethod",at.Email)}async Block(e){await e()}GetValues(){const e=this.GetFields(),n=new Map;return e.forEach(o=>{o.value&&n.set(o.name,o.value)}),n}Validate(){return[]}GetFields(){return this.GetCurSet().fields.filter(e=>!e.method||e.method===this.selectedMethod)}GetMethods(){return this.GetCurSet().methods}Status(){return this.status}GetCurSet(){return this.settings[this.status]}IsLogin(){return this.status===pe.Login}IsRegister(){return this.status===pe.Register}IsRestore(){return this.status===pe.Restore}IsRefresh(){return this.status===pe.Refresh}SetStatus(e){this.status=e}GetTitle(){return this.GetCurSet().title}GetButtons(){const e=this.GetCurSet().buttons;return e.forEach(n=>{n.submit=!1}),e.length>0&&(e[0].submit=!0),e}GetSuccessMessage(){return this.GetCurSet().successMessage}GetErrorMessage(){return this.GetCurSet().errorMessage}GetAction(){return this.GetCurSet().action}ResetFields(){this.GetCurSet().fields.forEach(e=>e.Reset())}Reset(){this.status=pe.Login}}class Gd{constructor(){d(this,"visible",!1);d(this,"closable",!1)}IsClosable(){return this.closable}IsVisible(){return this.visible}Close(){this.visible=!1}Open(e){e&&(this.closable=!0),this.visible=!0}}class jr{constructor(){d(this,"visible",!1)}hide(){this.visible=!1}show(){this.hide(),this.visible=!0}IsVisible(){return this.visible}}class Gr extends jr{constructor(){super(...arguments);d(this,"type",ce.Success);d(this,"text","");d(this,"title","")}showMessage(n,o){this.hide(),this.type=o,typeof n=="string"?this.text=n:(this.text=n.text,this.title=n.title??""),super.show()}GetText(){return this.text}GetTitle(){return this.title}GetType(){return this.type}Info(n){this.showMessage(n,ce.Info)}Success(n){this.showMessage(n,ce.Success)}Error(n){this.showMessage(n,ce.Error)}Warning(n){this.showMessage(n,ce.Warning)}FormMessage(n){let o="<strong>Проверьте правильность введенных данных:</strong><ul>";for(const r of Object.keys(n))n[r][0]&&n[r][0].message&&(o+=`<li>${n[r][0].message}</li>`);return o+="</ul>",o}}class Gn{static Get(e,n,o="-"){return!e||!n?"":`${e}${o}${n}`}static In(e,n,o){return e>=n&&e<=o}static Intersects(e,n,o,r){return e===o||n===r||e>o&&e<r||n>o&&n<r||n>r&&e<o}}const Zr=1e3,Xr=60*Zr,Zn=60*Xr;var Ct=(t=>(t.FiveMinutes="5",t.HourQuarter="15",t.HourHalf="30",t.Hour="60",t))(Ct||{});const Kt={5:["00","05","10","15","20","25","30","35","40","45","50","55"],15:["00","15","30","45"],30:["00","30"],60:["00"]};class q{static S(e){return Zr*e}static M(e){return Xr*e}static H(e){return Zn*e}static D(e){return Zn*e}static W(e){return Zn*e}static NormalizeTime(e){return String(e).padStart(2,"0")}static HMtoM(e){const n=q.SplitHM(e);return n.length>1?q.HtoM(n[0])+n[1]:q.HtoM(n[0])}static HtoM(e){return Number(e)*60}static SplitHM(e){if(!e)return[];const n=e.split(":");return[Number(n[0]),Number(n[1])]}static HmsToHm(e){const n=q.SplitHM(e);return q.ConcatHM(n[0],n[1])}static AddMtoHM(e,n){const o=new Date,r=q.SplitHM(e);o.setHours(r[0],r[1],0,0);const s=new Date(o.getTime()+n*6e4),a=s.getHours(),c=s.getMinutes();return q.ConcatHM(a,c)}static ConcatHM(e,n){return`${e}:${q.NormalizeTime(n)}`}static DiffM(e,n){return q.Gt(n,e)?q.HMtoM(n)-q.HMtoM(e):q.HMtoM(e)-q.HMtoM(n)}static GetPeriod(e,n){return Gn.Get(e,n)}static Gt(e,n){return q.HMtoM(e)>q.HMtoM(n)}static GtOrEq(e,n){return q.Gt(e,n)||q.Eq(e,n)}static Eq(e,n){return q.HMtoM(e)===q.HMtoM(n)}static PeriodInPeriod(e,n,o,r){return q.HMtoM(e)>=q.HMtoM(o)&&q.HMtoM(n)<=q.HMtoM(r)}static PeriodsIntersects(e,n,o,r){return Gn.Intersects(q.HMtoM(e),q.HMtoM(n),q.HMtoM(o),q.HMtoM(r))}}class St{static Wait(e,n){return new Promise(o=>setTimeout(()=>o(n),e))}static WaitS(e,n){return St.Wait(q.S(e),n)}static WaitM(e,n){return St.Wait(q.M(e),n)}}class Zd extends Gr{constructor(){super(...arguments);d(this,"duration",q.S(3))}showMessage(n,o){super.showMessage(n,o),typeof n!="string"&&(this.duration=n.duration??this.duration),St.Wait(this.GetDuration()).then(()=>super.hide())}GetDuration(){return this.duration}Dev(){const n="В режиме разработки",o=ce.Warning;super.showMessage(n,o)}Save(){const n="Изменения успешно сохранены",o=ce.Success;super.showMessage(n,o)}}const kt=new Zd;class Ie{static Get(e){const n=localStorage.getItem(e);if(n)return JSON.parse(n)}static Set(e,n){n&&localStorage.setItem(e,JSON.stringify(n))}static Remove(e){localStorage.removeItem(e)}}var Se=(t=>(t.User="user",t.AccessToken="accessToken",t.RefreshToken="refreshToken",t))(Se||{});class Xd{set(e){this.setAccessToken(e.accessToken),this.setRefreshToken(e.refreshToken)}getAccessToken(){return Ie.Get(Se.AccessToken)}getRefreshToken(){return Ie.Get(Se.RefreshToken)}setAccessToken(e){Ie.Set(Se.AccessToken,e)}setRefreshToken(e){Ie.Set(Se.RefreshToken,e)}reset(){Ie.Remove(Se.AccessToken),Ie.Remove(Se.RefreshToken)}actualize(){this.setAccessToken(this.getAccessToken()),this.setRefreshToken(this.getAccessToken())}}class Jd{constructor(){d(this,"user");d(this,"userConstructor")}AssignTo(e){e.user=this.get()}setUserConstructor(e){this.userConstructor=e}get(){if(this.userConstructor)return this.user=new this.userConstructor(Ie.Get(Se.User)),this.user}set(e){this.userConstructor&&(this.user=new this.userConstructor(e),Ie.Set(Se.User,this.user))}reset(){this.user=void 0,Ie.Remove(Se.User)}actualize(){const e=Ie.Get(Se.User);e&&this.set(e)}}class Yd{constructor(){d(this,"isAuth",!1);d(this,"user",new Jd);d(this,"tokens",new Xd);d(this,"preventLogout",!1)}DeprecateLogout(){this.preventLogout=!0}AllowLogout(){this.preventLogout=!1}get IsAuth(){return this.isAuth}get User(){return this.user.get()}SetUserConstructor(e){this.user.setUserConstructor(e)}SetState(e){this.user.set(e.user),this.tokens.set(e.tokens),this.isAuth=!0}Logout(){if(this.preventLogout){kt.Warning("В текущий момент Вы не можете выйти из системы");return}this.user.reset(),this.tokens.reset(),this.isAuth=!1}Actualize(){if(this.user.actualize(),this.tokens.actualize(),this.user.get()&&this.tokens.getAccessToken()&&this.tokens.getRefreshToken()){this.isAuth=!0;return}this.Logout()}}class Qd{constructor(){d(this,"form",new jd);d(this,"status",new Yd);d(this,"modal",new Gd)}get Form(){return this.form}get Status(){return this.status}get Modal(){return this.modal}}const Jr=new Qd;class Kd extends Jt{constructor(){super(...arguments);d(this,"label","Логин");d(this,"name","login");d(this,"validator",new Ur);d(this,"method",at.Login);d(this,"id","field-auth-login")}}class Xe{constructor(e){d(this,"id");d(this,"address");d(this,"description");d(this,"contactId");T.BuildClass(this,e)}static Create(){const e=new Xe;return e.id=ve.UUID(),e}}class Yr{constructor(e){d(this,"id");d(this,"name","");d(this,"surname","");d(this,"patronymic","");d(this,"isMale",!0);d(this,"dateBirth",new Date);d(this,"contactId");d(this,"slug","");d(this,"postIndex","");d(this,"address","");d(this,"editNameMode",!1);T.BuildClass(this,e)}setEditNameMode(e){this.editNameMode=e}getFullName(){return!this.surname.length&&!this.name.length&&!this.patronymic.length?"":`${this.surname} ${this.name} ${this.patronymic}`}getInitialsName(){return`${this.name.slice(0,1)}.${this.patronymic.slice(0,1)}. ${this.surname}`}getGender(e){return e?this.isMale?"Мужской":"Женский":this.isMale?"М":"Ж"}capitalizeName(){this.name=ne.Capitalize(this.name),this.surname=ne.Capitalize(this.surname),this.patronymic=ne.Capitalize(this.patronymic)}trimName(){this.name=this.name.trim(),this.surname=this.surname.trim(),this.patronymic=this.patronymic.trim()}sanitizeName(){this.trimName(),this.capitalizeName()}setFullName(e){this.surname=e.surname,this.name=e.name,this.patronymic=e.patronymic}}class en{constructor(e){d(this,"model","");d(this,"col","");d(this,"order");d(this,"label","");d(this,"default",!1);d(this,"selected",!1);T.BuildClass(this,e)}static Create(e,n,o=Me.Asc,r,s){const a=new en;return a.model=e.GetClassName(),a.col=n??"",a.order=o??Me.Asc,a.label=r??"",a.default=s??!1,a}isAsc(){return this.order===Me.Asc}isDesc(){return this.order===Me.Desc}eq(e){return e.model===this.model&&e.col===this.col&&e.order===this.order}toUrlQuery(){const e=this.model?`"model":"${this.model}"`:"",n=this.col?`"col":"${this.col}"`:"",o=this.order?`"order":"${this.order}"`:"";return[e,n,o].toString()}async fromUrlQuery(){const e=window.location.search,n=e.substring(e.indexOf("s=")+2,e.indexOf("|")),o=new URLSearchParams(decodeURIComponent(n));this.model=o.get("model")??"",this.col=o.get("col")??"",this.label=o.get("label")??"",this.default=!!o.get("default"),this.order=o.get("order")??""}asc(){this.order=Me.Asc}desc(){this.order=Me.Desc}}const eu=Object.freeze(Object.defineProperty({__proto__:null,Auth:Jr,AuthButtonLogin:jn,AuthButtonRegister:qr,AuthFormSettings:Wr,AuthFormStatuses:pe,AuthMethods:at,Email:Xe,EmailField:Yt,FileInfo:Be,Human:Yr,LoginField:Kd,PasswordField:Qt,PasswordRepeatField:_r,SortModel:en},Symbol.toStringTag,{value:"Module"}));class tu{constructor(){d(this,"operation",de.Lt);d(this,"column","");d(this,"value");d(this,"initial",!0);d(this,"tableName","");d(this,"version","");d(this,"model","")}toUrlQuery(){const e=this.operation?`"operation":"${this.operation}"`:"",n=this.column?`"column":"${this.column}"`:"",o=this.value&&typeof this.value.toISOString=="function"?this.value.toISOString():this.value,r=o?`"value":"${o}"`:"",s=this.model?`"model":"${this.model}"`:"",a=`"initial":${this.initial}`;return[e,n,r,s,a].filter(c=>c!=="").toString()}fromUrlQuery(e){e.cursvalue&&(this.value=e.cursvalue),e.curscolumn&&(this.column=String(e.curscolumn)),e.cursinitial!==void 0&&(this.initial=!!e.cursinitial),e.curstableName&&(this.tableName=String(e.curstableName)),e.cursoperation&&(this.operation=e.cursoperation)}}class tn{constructor(e){d(this,"offset",0);d(this,"limit",25);d(this,"cursor",new tu);d(this,"cursorMode",!1);d(this,"append",!1);d(this,"allLoaded",!1);d(this,"version","");T.BuildClass(this,e)}setLoadMore(e,n,o){this.cursor.value=e,this.cursor.initial=!1,this.cursor.operation=de.Gt,this.cursor.column=n,this.cursor.tableName=o,this.cursorMode=!0}setLoadMoreV2(e,n,o){this.cursor.value=e,this.cursor.initial=!1,this.cursor.operation=de.Gt,this.cursor.column=n,this.cursor.model=o,this.cursorMode=!0,this.version="v2"}setOffset(e){this.offset=e}toUrlQuery(){const e=`"offset":${this.offset}`,n=`"limit":${this.limit}`,o=`"cursorMode":${this.cursorMode}`,r=`"append":${this.append}`,s=`"allLoaded":${this.allLoaded}`,a=`"cursor":{${this.cursor.toUrlQuery()}}`;return[e,n,o,r,s,a].toString()}fromUrlQuery(){const e=window.location.search,n=e.substring(e.indexOf("p=")+2,e.lastIndexOf("|")),o=new URLSearchParams(decodeURIComponent(n));this.offset=Number(o.get("offset")),this.limit=Number(o.get("col"))}setAllLoaded(e){this.allLoaded=!(e>=this.limit)}resetAllLoaded(){this.allLoaded=!1}getPageNum(){return this.offset/this.limit+1}drop(){this.offset=0,this.limit=25,T.BuildClass(this)}}class nn{constructor(){d(this,"model","");d(this,"cols",[]);d(this,"models",[])}static Create(e,n){const o=new nn;return o.model=e.GetClassName(),o.cols=n,o}}var nu=Object.defineProperty,on=(t,e,n,o)=>{for(var r=void 0,s=t.length-1,a;s>=0;s--)(a=t[s])&&(r=a(e,n,r)||r);return r&&nu(e,n,r),r};const Et=(ye=class{constructor(e){d(this,"id");d(this,"f",[]);d(this,"s",[]);d(this,"p",new tn);d(this,"t",new nn);T.BuildClass(this,e)}static Get(){return this.instance||(this.instance=new ye),this.instance}createFrom(e){const n=new ye(JSON.parse(e));this.f=n.f}clearForHTTP(){const e=new ye(this);return e.f=this.f.map(n=>ye.EmptyEntiries(n)),e.s=this.s.map(n=>ye.EmptyEntiries(n)),e.p=ye.EmptyEntiries(this.p),e.t=ye.EmptyEntiries(this.t),e}static EmptyEntiries(e){if(!e)return;const o=Object.entries(e).filter(([r,s])=>r!=="label"&&s!==""&&s!==null);return Object.fromEntries(o)}findFilterModel(e){return this.f.find(n=>e.id===n.id)}getFirstSortModel(){return He.GetLast(this.s)}setSortModel(e){e&&(this.s[0]=e)}setS(e){this.s[0]=e}setF(e){this.f.push(e)}replaceF(e,n){this.removeF(n),e&&this.setF(e)}removeF(e){const n=this.f.findIndex(o=>o.eq(e));T.RemoveFromClassByIndex(n,this.f)}reset(){this.f=[],this.s=[],this.p=new tn}resetF(){this.f=[]}},d(ye,"instance"),ye);on([T.GetClassConstructor(ho)],Et.prototype,"f"),on([T.GetClassConstructor(en)],Et.prototype,"s"),on([T.GetClassConstructor(tn)],Et.prototype,"p"),on([T.GetClassConstructor(nn)],Et.prototype,"t");let Qr=Et;class Je{constructor(e){d(this,"id");d(this,"number");d(this,"description");d(this,"contactId");T.BuildClass(this,e)}static Create(){const e=new Je;return e.id=ve.UUID(),e}}function Kr(t,e){return function(){return t.apply(e,arguments)}}const{toString:iu}=Object.prototype,{getPrototypeOf:Xn}=Object,rn=(t=>e=>{const n=iu.call(e);return t[n]||(t[n]=n.slice(8,-1).toLowerCase())})(Object.create(null)),Re=t=>(t=t.toLowerCase(),e=>rn(e)===t),sn=t=>e=>typeof e===t,{isArray:lt}=Array,vt=sn("undefined");function ou(t){return t!==null&&!vt(t)&&t.constructor!==null&&!vt(t.constructor)&&ge(t.constructor.isBuffer)&&t.constructor.isBuffer(t)}const es=Re("ArrayBuffer");function ru(t){let e;return typeof ArrayBuffer<"u"&&ArrayBuffer.isView?e=ArrayBuffer.isView(t):e=t&&t.buffer&&es(t.buffer),e}const su=sn("string"),ge=sn("function"),ts=sn("number"),an=t=>t!==null&&typeof t=="object",au=t=>t===!0||t===!1,ln=t=>{if(rn(t)!=="object")return!1;const e=Xn(t);return(e===null||e===Object.prototype||Object.getPrototypeOf(e)===null)&&!(Symbol.toStringTag in t)&&!(Symbol.iterator in t)},lu=Re("Date"),cu=Re("File"),du=Re("Blob"),uu=Re("FileList"),hu=t=>an(t)&&ge(t.pipe),fu=t=>{let e;return t&&(typeof FormData=="function"&&t instanceof FormData||ge(t.append)&&((e=rn(t))==="formdata"||e==="object"&&ge(t.toString)&&t.toString()==="[object FormData]"))},mu=Re("URLSearchParams"),[pu,gu,yu,wu]=["ReadableStream","Request","Response","Headers"].map(Re),bu=t=>t.trim?t.trim():t.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"");function xt(t,e,{allOwnKeys:n=!1}={}){if(t===null||typeof t>"u")return;let o,r;if(typeof t!="object"&&(t=[t]),lt(t))for(o=0,r=t.length;o<r;o++)e.call(null,t[o],o,t);else{const s=n?Object.getOwnPropertyNames(t):Object.keys(t),a=s.length;let c;for(o=0;o<a;o++)c=s[o],e.call(null,t[c],c,t)}}function ns(t,e){e=e.toLowerCase();const n=Object.keys(t);let o=n.length,r;for(;o-- >0;)if(r=n[o],e===r.toLowerCase())return r;return null}const Ye=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:global,is=t=>!vt(t)&&t!==Ye;function Jn(){const{caseless:t}=is(this)&&this||{},e={},n=(o,r)=>{const s=t&&ns(e,r)||r;ln(e[s])&&ln(o)?e[s]=Jn(e[s],o):ln(o)?e[s]=Jn({},o):lt(o)?e[s]=o.slice():e[s]=o};for(let o=0,r=arguments.length;o<r;o++)arguments[o]&&xt(arguments[o],n);return e}const Cu=(t,e,n,{allOwnKeys:o}={})=>(xt(e,(r,s)=>{n&&ge(r)?t[s]=Kr(r,n):t[s]=r},{allOwnKeys:o}),t),Su=t=>(t.charCodeAt(0)===65279&&(t=t.slice(1)),t),ku=(t,e,n,o)=>{t.prototype=Object.create(e.prototype,o),t.prototype.constructor=t,Object.defineProperty(t,"super",{value:e.prototype}),n&&Object.assign(t.prototype,n)},Eu=(t,e,n,o)=>{let r,s,a;const c={};if(e=e||{},t==null)return e;do{for(r=Object.getOwnPropertyNames(t),s=r.length;s-- >0;)a=r[s],(!o||o(a,t,e))&&!c[a]&&(e[a]=t[a],c[a]=!0);t=n!==!1&&Xn(t)}while(t&&(!n||n(t,e))&&t!==Object.prototype);return e},vu=(t,e,n)=>{t=String(t),(n===void 0||n>t.length)&&(n=t.length),n-=e.length;const o=t.indexOf(e,n);return o!==-1&&o===n},xu=t=>{if(!t)return null;if(lt(t))return t;let e=t.length;if(!ts(e))return null;const n=new Array(e);for(;e-- >0;)n[e]=t[e];return n},Bu=(t=>e=>t&&e instanceof t)(typeof Uint8Array<"u"&&Xn(Uint8Array)),Mu=(t,e)=>{const o=(t&&t[Symbol.iterator]).call(t);let r;for(;(r=o.next())&&!r.done;){const s=r.value;e.call(t,s[0],s[1])}},Iu=(t,e)=>{let n;const o=[];for(;(n=t.exec(e))!==null;)o.push(n);return o},Ru=Re("HTMLFormElement"),$u=t=>t.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g,function(n,o,r){return o.toUpperCase()+r}),os=(({hasOwnProperty:t})=>(e,n)=>t.call(e,n))(Object.prototype),Au=Re("RegExp"),rs=(t,e)=>{const n=Object.getOwnPropertyDescriptors(t),o={};xt(n,(r,s)=>{let a;(a=e(r,s,t))!==!1&&(o[s]=a||r)}),Object.defineProperties(t,o)},Nu=t=>{rs(t,(e,n)=>{if(ge(t)&&["arguments","caller","callee"].indexOf(n)!==-1)return!1;const o=t[n];if(ge(o)){if(e.enumerable=!1,"writable"in e){e.writable=!1;return}e.set||(e.set=()=>{throw Error("Can not rewrite read-only method '"+n+"'")})}})},Pu=(t,e)=>{const n={},o=r=>{r.forEach(s=>{n[s]=!0})};return lt(t)?o(t):o(String(t).split(e)),n},zu=()=>{},Vu=(t,e)=>t!=null&&Number.isFinite(t=+t)?t:e,Yn="abcdefghijklmnopqrstuvwxyz",ss="0123456789",as={DIGIT:ss,ALPHA:Yn,ALPHA_DIGIT:Yn+Yn.toUpperCase()+ss},Tu=(t=16,e=as.ALPHA_DIGIT)=>{let n="";const{length:o}=e;for(;t--;)n+=e[Math.random()*o|0];return n};function Fu(t){return!!(t&&ge(t.append)&&t[Symbol.toStringTag]==="FormData"&&t[Symbol.iterator])}const Du=t=>{const e=new Array(10),n=(o,r)=>{if(an(o)){if(e.indexOf(o)>=0)return;if(!("toJSON"in o)){e[r]=o;const s=lt(o)?[]:{};return xt(o,(a,c)=>{const l=n(a,r+1);!vt(l)&&(s[c]=l)}),e[r]=void 0,s}}return o};return n(t,0)},Ou=Re("AsyncFunction"),Lu=t=>t&&(an(t)||ge(t))&&ge(t.then)&&ge(t.catch),ls=((t,e)=>t?setImmediate:e?((n,o)=>(Ye.addEventListener("message",({source:r,data:s})=>{r===Ye&&s===n&&o.length&&o.shift()()},!1),r=>{o.push(r),Ye.postMessage(n,"*")}))(`axios@${Math.random()}`,[]):n=>setTimeout(n))(typeof setImmediate=="function",ge(Ye.postMessage)),Hu=typeof queueMicrotask<"u"?queueMicrotask.bind(Ye):typeof process<"u"&&process.nextTick||ls,C={isArray:lt,isArrayBuffer:es,isBuffer:ou,isFormData:fu,isArrayBufferView:ru,isString:su,isNumber:ts,isBoolean:au,isObject:an,isPlainObject:ln,isReadableStream:pu,isRequest:gu,isResponse:yu,isHeaders:wu,isUndefined:vt,isDate:lu,isFile:cu,isBlob:du,isRegExp:Au,isFunction:ge,isStream:hu,isURLSearchParams:mu,isTypedArray:Bu,isFileList:uu,forEach:xt,merge:Jn,extend:Cu,trim:bu,stripBOM:Su,inherits:ku,toFlatObject:Eu,kindOf:rn,kindOfTest:Re,endsWith:vu,toArray:xu,forEachEntry:Mu,matchAll:Iu,isHTMLForm:Ru,hasOwnProperty:os,hasOwnProp:os,reduceDescriptors:rs,freezeMethods:Nu,toObjectSet:Pu,toCamelCase:$u,noop:zu,toFiniteNumber:Vu,findKey:ns,global:Ye,isContextDefined:is,ALPHABET:as,generateString:Tu,isSpecCompliantForm:Fu,toJSONObject:Du,isAsyncFn:Ou,isThenable:Lu,setImmediate:ls,asap:Hu};function D(t,e,n,o,r){Error.call(this),Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=new Error().stack,this.message=t,this.name="AxiosError",e&&(this.code=e),n&&(this.config=n),o&&(this.request=o),r&&(this.response=r,this.status=r.status?r.status:null)}C.inherits(D,Error,{toJSON:function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:C.toJSONObject(this.config),code:this.code,status:this.status}}});const cs=D.prototype,ds={};["ERR_BAD_OPTION_VALUE","ERR_BAD_OPTION","ECONNABORTED","ETIMEDOUT","ERR_NETWORK","ERR_FR_TOO_MANY_REDIRECTS","ERR_DEPRECATED","ERR_BAD_RESPONSE","ERR_BAD_REQUEST","ERR_CANCELED","ERR_NOT_SUPPORT","ERR_INVALID_URL"].forEach(t=>{ds[t]={value:t}}),Object.defineProperties(D,ds),Object.defineProperty(cs,"isAxiosError",{value:!0}),D.from=(t,e,n,o,r,s)=>{const a=Object.create(cs);return C.toFlatObject(t,a,function(l){return l!==Error.prototype},c=>c!=="isAxiosError"),D.call(a,t.message,e,n,o,r),a.cause=t,a.name=t.name,s&&Object.assign(a,s),a};const qu=null;function Qn(t){return C.isPlainObject(t)||C.isArray(t)}function us(t){return C.endsWith(t,"[]")?t.slice(0,-2):t}function hs(t,e,n){return t?t.concat(e).map(function(r,s){return r=us(r),!n&&s?"["+r+"]":r}).join(n?".":""):e}function Uu(t){return C.isArray(t)&&!t.some(Qn)}const _u=C.toFlatObject(C,{},null,function(e){return/^is[A-Z]/.test(e)});function cn(t,e,n){if(!C.isObject(t))throw new TypeError("target must be an object");e=e||new FormData,n=C.toFlatObject(n,{metaTokens:!0,dots:!1,indexes:!1},!1,function(E,w){return!C.isUndefined(w[E])});const o=n.metaTokens,r=n.visitor||h,s=n.dots,a=n.indexes,l=(n.Blob||typeof Blob<"u"&&Blob)&&C.isSpecCompliantForm(e);if(!C.isFunction(r))throw new TypeError("visitor must be a function");function u(p){if(p===null)return"";if(C.isDate(p))return p.toISOString();if(!l&&C.isBlob(p))throw new D("Blob is not supported. Use a Buffer instead.");return C.isArrayBuffer(p)||C.isTypedArray(p)?l&&typeof Blob=="function"?new Blob([p]):Buffer.from(p):p}function h(p,E,w){let M=p;if(p&&!w&&typeof p=="object"){if(C.endsWith(E,"{}"))E=o?E:E.slice(0,-2),p=JSON.stringify(p);else if(C.isArray(p)&&Uu(p)||(C.isFileList(p)||C.endsWith(E,"[]"))&&(M=C.toArray(p)))return E=us(E),M.forEach(function(L,F){!(C.isUndefined(L)||L===null)&&e.append(a===!0?hs([E],F,s):a===null?E:E+"[]",u(L))}),!1}return Qn(p)?!0:(e.append(hs(w,E,s),u(p)),!1)}const f=[],m=Object.assign(_u,{defaultVisitor:h,convertValue:u,isVisitable:Qn});function g(p,E){if(!C.isUndefined(p)){if(f.indexOf(p)!==-1)throw Error("Circular reference detected in "+E.join("."));f.push(p),C.forEach(p,function(M,O){(!(C.isUndefined(M)||M===null)&&r.call(e,M,C.isString(O)?O.trim():O,E,m))===!0&&g(M,E?E.concat(O):[O])}),f.pop()}}if(!C.isObject(t))throw new TypeError("data must be an object");return g(t),e}function fs(t){const e={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+","%00":"\0"};return encodeURIComponent(t).replace(/[!'()~]|%20|%00/g,function(o){return e[o]})}function Kn(t,e){this._pairs=[],t&&cn(t,this,e)}const ms=Kn.prototype;ms.append=function(e,n){this._pairs.push([e,n])},ms.toString=function(e){const n=e?function(o){return e.call(this,o,fs)}:fs;return this._pairs.map(function(r){return n(r[0])+"="+n(r[1])},"").join("&")};function Wu(t){return encodeURIComponent(t).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}function ps(t,e,n){if(!e)return t;const o=n&&n.encode||Wu,r=n&&n.serialize;let s;if(r?s=r(e,n):s=C.isURLSearchParams(e)?e.toString():new Kn(e,n).toString(o),s){const a=t.indexOf("#");a!==-1&&(t=t.slice(0,a)),t+=(t.indexOf("?")===-1?"?":"&")+s}return t}class gs{constructor(){this.handlers=[]}use(e,n,o){return this.handlers.push({fulfilled:e,rejected:n,synchronous:o?o.synchronous:!1,runWhen:o?o.runWhen:null}),this.handlers.length-1}eject(e){this.handlers[e]&&(this.handlers[e]=null)}clear(){this.handlers&&(this.handlers=[])}forEach(e){C.forEach(this.handlers,function(o){o!==null&&e(o)})}}const ys={silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1},ju={isBrowser:!0,classes:{URLSearchParams:typeof URLSearchParams<"u"?URLSearchParams:Kn,FormData:typeof FormData<"u"?FormData:null,Blob:typeof Blob<"u"?Blob:null},protocols:["http","https","file","blob","url","data"]},ei=typeof window<"u"&&typeof document<"u",ti=typeof navigator=="object"&&navigator||void 0,Gu=ei&&(!ti||["ReactNative","NativeScript","NS"].indexOf(ti.product)<0),Zu=typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope&&typeof self.importScripts=="function",Xu=ei&&window.location.href||"http://localhost",fe={...Object.freeze(Object.defineProperty({__proto__:null,hasBrowserEnv:ei,hasStandardBrowserEnv:Gu,hasStandardBrowserWebWorkerEnv:Zu,navigator:ti,origin:Xu},Symbol.toStringTag,{value:"Module"})),...ju};function Ju(t,e){return cn(t,new fe.classes.URLSearchParams,Object.assign({visitor:function(n,o,r,s){return fe.isNode&&C.isBuffer(n)?(this.append(o,n.toString("base64")),!1):s.defaultVisitor.apply(this,arguments)}},e))}function Yu(t){return C.matchAll(/\w+|\[(\w*)]/g,t).map(e=>e[0]==="[]"?"":e[1]||e[0])}function Qu(t){const e={},n=Object.keys(t);let o;const r=n.length;let s;for(o=0;o<r;o++)s=n[o],e[s]=t[s];return e}function ws(t){function e(n,o,r,s){let a=n[s++];if(a==="__proto__")return!0;const c=Number.isFinite(+a),l=s>=n.length;return a=!a&&C.isArray(r)?r.length:a,l?(C.hasOwnProp(r,a)?r[a]=[r[a],o]:r[a]=o,!c):((!r[a]||!C.isObject(r[a]))&&(r[a]=[]),e(n,o,r[a],s)&&C.isArray(r[a])&&(r[a]=Qu(r[a])),!c)}if(C.isFormData(t)&&C.isFunction(t.entries)){const n={};return C.forEachEntry(t,(o,r)=>{e(Yu(o),r,n,0)}),n}return null}function Ku(t,e,n){if(C.isString(t))try{return(e||JSON.parse)(t),C.trim(t)}catch(o){if(o.name!=="SyntaxError")throw o}return(0,JSON.stringify)(t)}const Bt={transitional:ys,adapter:["xhr","http","fetch"],transformRequest:[function(e,n){const o=n.getContentType()||"",r=o.indexOf("application/json")>-1,s=C.isObject(e);if(s&&C.isHTMLForm(e)&&(e=new FormData(e)),C.isFormData(e))return r?JSON.stringify(ws(e)):e;if(C.isArrayBuffer(e)||C.isBuffer(e)||C.isStream(e)||C.isFile(e)||C.isBlob(e)||C.isReadableStream(e))return e;if(C.isArrayBufferView(e))return e.buffer;if(C.isURLSearchParams(e))return n.setContentType("application/x-www-form-urlencoded;charset=utf-8",!1),e.toString();let c;if(s){if(o.indexOf("application/x-www-form-urlencoded")>-1)return Ju(e,this.formSerializer).toString();if((c=C.isFileList(e))||o.indexOf("multipart/form-data")>-1){const l=this.env&&this.env.FormData;return cn(c?{"files[]":e}:e,l&&new l,this.formSerializer)}}return s||r?(n.setContentType("application/json",!1),Ku(e)):e}],transformResponse:[function(e){const n=this.transitional||Bt.transitional,o=n&&n.forcedJSONParsing,r=this.responseType==="json";if(C.isResponse(e)||C.isReadableStream(e))return e;if(e&&C.isString(e)&&(o&&!this.responseType||r)){const a=!(n&&n.silentJSONParsing)&&r;try{return JSON.parse(e)}catch(c){if(a)throw c.name==="SyntaxError"?D.from(c,D.ERR_BAD_RESPONSE,this,null,this.response):c}}return e}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,env:{FormData:fe.classes.FormData,Blob:fe.classes.Blob},validateStatus:function(e){return e>=200&&e<300},headers:{common:{Accept:"application/json, text/plain, */*","Content-Type":void 0}}};C.forEach(["delete","get","head","post","put","patch"],t=>{Bt.headers[t]={}});const eh=C.toObjectSet(["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"]),th=t=>{const e={};let n,o,r;return t&&t.split(`
|
|
33
|
+
`.concat(-this.coordinates.left/t-a.rotate.left-a.scale.left,"px,").concat(-this.coordinates.top/t-a.rotate.top-a.scale.top,"px) ")+Ko(e),this.transitions&&this.transitions.enabled&&(s.transition="".concat(this.transitions.time,"ms ").concat(this.transitions.timingFunction)),s}return{}},size:function(){return{width:this.width||this.calculatedSize.width,height:this.height||this.calculatedSize.height}},imageSize:function(){return{width:this.image.width||this.calculatedImageSize.width,height:this.image.height||this.calculatedImageSize.height}}},watch:{image:function(t){(t.width||t.height)&&this.onChangeImage()}},mounted:function(){var t=this;this.onChangeImage(),this.$refs.image.addEventListener("load",function(){t.refreshImage()}),window.addEventListener("resize",this.refresh),window.addEventListener("orientationchange",this.refresh)},unmounted:function(){window.removeEventListener("resize",this.refresh),window.removeEventListener("orientationchange",this.refresh)},methods:{refreshImage:function(){var t=this.$refs.image;this.calculatedImageSize.height=t.naturalHeight,this.calculatedImageSize.width=t.naturalWidth},refresh:function(){var t=this.$refs.root;this.width||(this.calculatedSize.width=t.clientWidth),this.height||(this.calculatedSize.height=t.clientHeight)},onChangeImage:function(){var t=this.$refs.image;t&&t.complete&&this.refreshImage(),this.refresh()}}};nr.render=function(t,e,n,o,r,s){return i.openBlock(),i.createBlock("div",{ref:"root",class:s.classes.root,style:s.style},[i.createVNode("div",{ref:"wrapper",class:s.classes.wrapper,style:s.wrapperStyle},[i.withDirectives(i.createVNode("img",{ref:"image",src:n.image&&n.image.src,class:s.classes.image,style:s.imageStyle},null,14,["src"]),[[i.vShow,n.image&&n.image.src]])],6)],6)};var ir={components:{Preview:nr},inheritAttrs:!1};ir.render=function(t,e,n,o,r,s){var a=i.resolveComponent("preview");return i.openBlock(),i.createBlock(a,i.mergeProps(t.$attrs,{fill:!0}),null,16)};var qn=xe("vue-rectangle-stencil"),or={name:"RectangleStencil",components:{StencilPreview:ir,BoundingBox:Yo,DraggableArea:Qo},props:{image:{type:Object},coordinates:{type:Object},stencilCoordinates:{type:Object},handlers:{type:Object},handlersComponent:{type:[Object,String],default:function(){return Fn}},lines:{type:Object},linesComponent:{type:[Object,String],default:function(){return Dn}},aspectRatio:{type:[Number,String]},minAspectRatio:{type:[Number,String]},maxAspectRatio:{type:[Number,String]},movable:{type:Boolean,default:!0},resizable:{type:Boolean,default:!0},transitions:{type:Object},movingClass:{type:String},resizingClass:{type:String},previewClass:{type:String},boundingBoxClass:{type:String},linesClasses:{type:Object,default:function(){return{}}},linesWrappersClasses:{type:Object,default:function(){return{}}},handlersClasses:{type:Object,default:function(){return{}}},handlersWrappersClasses:{type:Object,default:function(){return{}}}},data:function(){return{moving:!1,resizing:!1}},computed:{classes:function(){return{stencil:K(qn({movable:this.movable,moving:this.moving,resizing:this.resizing}),this.moving&&this.movingClass,this.resizing&&this.resizingClass),preview:K(qn("preview"),this.previewClass),boundingBox:K(qn("bounding-box"),this.boundingBoxClass)}},style:function(){var t=this.stencilCoordinates,e=t.height,n=t.width,o=t.left,r=t.top,s={width:"".concat(n,"px"),height:"".concat(e,"px"),transform:"translate(".concat(o,"px, ").concat(r,"px)")};return this.transitions&&this.transitions.enabled&&(s.transition="".concat(this.transitions.time,"ms ").concat(this.transitions.timingFunction)),s}},methods:{onMove:function(t){this.$emit("move",t),this.moving=!0},onMoveEnd:function(){this.$emit("move-end"),this.moving=!1},onResize:function(t){this.$emit("resize",t),this.resizing=!0},onResizeEnd:function(){this.$emit("resize-end"),this.resizing=!1},aspectRatios:function(){return{minimum:this.aspectRatio||this.minAspectRatio,maximum:this.aspectRatio||this.maxAspectRatio}}},emits:["resize","resize-end","move","move-end"]};or.render=function(t,e,n,o,r,s){var a=i.resolveComponent("stencil-preview"),c=i.resolveComponent("draggable-area"),l=i.resolveComponent("bounding-box");return i.openBlock(),i.createBlock("div",{class:s.classes.stencil,style:s.style},[i.createVNode(l,{width:n.stencilCoordinates.width,height:n.stencilCoordinates.height,transitions:n.transitions,class:s.classes.boundingBox,handlers:n.handlers,"handlers-component":n.handlersComponent,"handlers-classes":n.handlersClasses,"handlers-wrappers-classes":n.handlersWrappersClasses,lines:n.lines,"lines-component":n.linesComponent,"lines-classes":n.linesClasses,"lines-wrappers-classes":n.linesWrappersClasses,resizable:n.resizable,onResize:s.onResize,onResizeEnd:s.onResizeEnd},{default:i.withCtx(function(){return[i.createVNode(c,{movable:n.movable,onMove:s.onMove,onMoveEnd:s.onMoveEnd},{default:i.withCtx(function(){return[i.createVNode(a,{image:n.image,coordinates:n.coordinates,width:n.stencilCoordinates.width,height:n.stencilCoordinates.height,class:s.classes.preview,transitions:n.transitions},null,8,["image","coordinates","width","height","class","transitions"])]}),_:1},8,["movable","onMove","onMoveEnd"])]}),_:1},8,["width","height","transitions","class","handlers","handlers-component","handlers-classes","handlers-wrappers-classes","lines","lines-component","lines-classes","lines-wrappers-classes","resizable","onResize","onResizeEnd"])],6)};var bc=["transitions"],Le=xe("vue-advanced-cropper"),rr={name:"Cropper",components:{BackgroundWrapper:Hn},props:{src:{type:String,default:null},stencilComponent:{type:[Object,String],default:function(){return or}},backgroundWrapperComponent:{type:[Object,String],default:function(){return Hn}},stencilProps:{type:Object,default:function(){return{}}},autoZoom:{type:Boolean,default:!1},imageClass:{type:String},boundariesClass:{type:String},backgroundClass:{type:String},foregroundClass:{type:String},minWidth:{type:[Number,String]},minHeight:{type:[Number,String]},maxWidth:{type:[Number,String]},maxHeight:{type:[Number,String]},debounce:{type:[Boolean,Number],default:500},transitions:{type:Boolean,default:!0},checkOrientation:{type:Boolean,default:!0},canvas:{type:[Object,Boolean],default:!0},crossOrigin:{type:[Boolean,String],default:void 0},transitionTime:{type:Number,default:300},imageRestriction:{type:String,default:"fit-area",validator:function(t){return Yl.indexOf(t)!==-1}},roundResult:{type:Boolean,default:!0},defaultSize:{type:[Function,Object]},defaultPosition:{type:[Function,Object]},defaultVisibleArea:{type:[Function,Object]},defaultTransforms:{type:[Function,Object]},defaultBoundaries:{type:[Function,String],validator:function(t){return!(typeof t=="string"&&t!=="fill"&&t!=="fit")}},priority:{type:String,default:"coordinates"},stencilSize:{type:[Object,Function]},resizeImage:{type:[Boolean,Object],default:!0},moveImage:{type:[Boolean,Object],default:!0},autoZoomAlgorithm:{type:Function},resizeAlgorithm:{type:Function,default:function(t){var e=t.event,n=t.coordinates,o=t.aspectRatio,r=t.positionRestrictions,s=t.sizeRestrictions,a=N(N({},n),{right:n.left+n.width,bottom:n.top+n.height}),c=e.params||{},l=N({},e.directions),u=c.allowedDirections||{left:!0,right:!0,bottom:!0,top:!0};s.widthFrozen&&(l.left=0,l.right=0),s.heightFrozen&&(l.top=0,l.bottom=0),Ae.forEach(function(F){u[F]||(l[F]=0)});var h=Pe(a,l=Jo({coordinates:a,directions:l,sizeRestrictions:s,positionRestrictions:r})).width,f=Pe(a,l).height,m=c.preserveRatio?j(a):zn(h/f,o);if(m){var g=c.respectDirection;if(g||(g=a.width>=a.height||m===1?"width":"height"),g==="width"){var p=h/m-a.height;if(u.top&&u.bottom){var E=l.top,w=l.bottom;l.bottom=jt(p,w,E),l.top=jt(p,E,w)}else u.bottom?l.bottom=p:u.top?l.top=p:u.right?l.right=0:u.left&&(l.left=0)}else if(g==="height"){var M=a.width-f*m;if(u.left&&u.right){var O=l.left,L=l.right;l.left=-jt(M,O,L),l.right=-jt(M,L,O)}else u.left?l.left=-M:u.right?l.right=-M:u.top?l.top=0:u.bottom&&(l.bottom=0)}l=Jo({directions:l,coordinates:a,sizeRestrictions:s,positionRestrictions:r,preserveRatio:!0,compensate:c.compensate})}return h=Pe(a,l).width,f=Pe(a,l).height,(m=c.preserveRatio?j(a):zn(h/f,o))&&Math.abs(m-h/f)>.001&&Ae.forEach(function(F){u[F]||(l[F]=0)}),Tn({event:new An({left:-l.left,top:-l.top}),coordinates:{width:n.width+l.right+l.left,height:n.height+l.top+l.bottom,left:n.left,top:n.top},positionRestrictions:r})}},moveAlgorithm:{type:Function,default:Tn},initStretcher:{type:Function,default:function(t){var e=t.stretcher,n=t.imageSize,o=j(n);e.style.width=n.width+"px",e.style.height=e.clientWidth/o+"px",e.style.width=e.clientWidth+"px"}},fitCoordinates:{type:Function,default:function(t){var e=t.visibleArea,n=t.coordinates,o=t.aspectRatio,r=t.sizeRestrictions,s=t.positionRestrictions,a=N(N({},n),Oe({width:n.width,height:n.height,aspectRatio:o,sizeRestrictions:{maxWidth:e.width,maxHeight:e.height,minHeight:Math.min(e.height,r.minHeight),minWidth:Math.min(e.width,r.minWidth)}}));return a=ae(a=he(a,ot(se(n),se(a))),_t(Ne(e),s))}},fitVisibleArea:{type:Function,default:function(t){var e=t.visibleArea,n=t.boundaries,o=t.getAreaRestrictions,r=t.coordinates,s=N({},e);s.height=s.width/j(n),s.top+=(e.height-s.height)/2,(r.height-s.height>0||r.width-s.width>0)&&(s=Ce(s,Math.max(r.height/s.height,r.width/s.width)));var a=qt(st(r,Ne(s=Ce(s,Ut(s,o({visibleArea:s,type:"resize"}))))));return s.width<r.width&&(a.left=0),s.height<r.height&&(a.top=0),s=ae(s=he(s,a),o({visibleArea:s,type:"move"}))}},areaRestrictionsAlgorithm:{type:Function,default:function(t){var e=t.visibleArea,n=t.boundaries,o=t.imageSize,r=t.imageRestriction,s=t.type,a={};return r==="fill-area"?a={left:0,top:0,right:o.width,bottom:o.height}:r==="fit-area"&&(j(n)>j(o)?(a={top:0,bottom:o.height},e&&s==="move"&&(e.width>o.width?(a.left=-(e.width-o.width)/2,a.right=o.width-a.left):(a.left=0,a.right=o.width))):(a={left:0,right:o.width},e&&s==="move"&&(e.height>o.height?(a.top=-(e.height-o.height)/2,a.bottom=o.height-a.top):(a.top=0,a.bottom=o.height)))),a}},sizeRestrictionsAlgorithm:{type:Function,default:function(t){return{minWidth:t.minWidth,minHeight:t.minHeight,maxWidth:t.maxWidth,maxHeight:t.maxHeight}}},positionRestrictionsAlgorithm:{type:Function,default:function(t){var e=t.imageSize,n={};return t.imageRestriction!=="none"&&(n={left:0,top:0,right:e.width,bottom:e.height}),n}}},data:function(){return{transitionsActive:!1,imageLoaded:!1,imageAttributes:{width:null,height:null,crossOrigin:null,src:null},defaultImageTransforms:{rotate:0,flip:{horizontal:!1,vertical:!1}},appliedImageTransforms:{rotate:0,flip:{horizontal:!1,vertical:!1}},boundaries:{width:0,height:0},visibleArea:null,coordinates:W({},Uo)}},computed:{image:function(){return{src:this.imageAttributes.src,width:this.imageAttributes.width,height:this.imageAttributes.height,transforms:this.imageTransforms}},imageTransforms:function(){return{rotate:this.appliedImageTransforms.rotate,flip:{horizontal:this.appliedImageTransforms.flip.horizontal,vertical:this.appliedImageTransforms.flip.vertical},translateX:this.visibleArea?this.visibleArea.left/this.coefficient:0,translateY:this.visibleArea?this.visibleArea.top/this.coefficient:0,scaleX:1/this.coefficient,scaleY:1/this.coefficient}},imageSize:function(){var t=function(e){return e*Math.PI/180}(this.imageTransforms.rotate);return{width:Math.abs(this.imageAttributes.width*Math.cos(t))+Math.abs(this.imageAttributes.height*Math.sin(t)),height:Math.abs(this.imageAttributes.width*Math.sin(t))+Math.abs(this.imageAttributes.height*Math.cos(t))}},initialized:function(){return!!(this.visibleArea&&this.imageLoaded)},settings:function(){var t=$n(this.resizeImage,{touch:!0,wheel:{ratio:.1},adjustStencil:!0},{touch:!1,wheel:!1,adjustStencil:!1});return{moveImage:$n(this.moveImage,{touch:!0,mouse:!0},{touch:!1,mouse:!1}),resizeImage:t}},coefficient:function(){return this.visibleArea?this.visibleArea.width/this.boundaries.width:0},areaRestrictions:function(){return this.imageLoaded?this.areaRestrictionsAlgorithm({imageSize:this.imageSize,imageRestriction:this.imageRestriction,boundaries:this.boundaries}):{}},transitionsOptions:function(){return{enabled:this.transitionsActive,timingFunction:"ease-in-out",time:350}},sizeRestrictions:function(){if(this.boundaries.width&&this.boundaries.height&&this.imageSize.width&&this.imageSize.height){var t=this.sizeRestrictionsAlgorithm({imageSize:this.imageSize,minWidth:ie(this.minWidth)?0:Ht(this.minWidth),minHeight:ie(this.minHeight)?0:Ht(this.minHeight),maxWidth:ie(this.maxWidth)?1/0:Ht(this.maxWidth),maxHeight:ie(this.maxHeight)?1/0:Ht(this.maxHeight)});if(t=function(o){var r=o.areaRestrictions,s=o.sizeRestrictions,a=o.boundaries,c=o.positionRestrictions,l=N(N({},s),{minWidth:s.minWidth!==void 0?s.minWidth:0,minHeight:s.minHeight!==void 0?s.minHeight:0,maxWidth:s.maxWidth!==void 0?s.maxWidth:1/0,maxHeight:s.maxHeight!==void 0?s.maxHeight:1/0});c.left!==void 0&&c.right!==void 0&&(l.maxWidth=Math.min(l.maxWidth,c.right-c.left)),c.bottom!==void 0&&c.top!==void 0&&(l.maxHeight=Math.min(l.maxHeight,c.bottom-c.top));var u=Vn(r),h=Wo(a,u);return u.width<1/0&&(!l.maxWidth||l.maxWidth>h.width)&&(l.maxWidth=Math.min(l.maxWidth,h.width)),u.height<1/0&&(!l.maxHeight||l.maxHeight>h.height)&&(l.maxHeight=Math.min(l.maxHeight,h.height)),l.minWidth>l.maxWidth&&(l.minWidth=l.maxWidth,l.widthFrozen=!0),l.minHeight>l.maxHeight&&(l.minHeight=l.maxHeight,l.heightFrozen=!0),l}({sizeRestrictions:t,areaRestrictions:this.getAreaRestrictions({visibleArea:this.visibleArea,type:"resize"}),imageSize:this.imageSize,boundaries:this.boundaries,positionRestrictions:this.positionRestrictions,imageRestriction:this.imageRestriction,visibleArea:this.visibleArea,stencilSize:this.getStencilSize()}),this.visibleArea&&this.stencilSize){var e=this.getStencilSize(),n=Vn(this.getAreaRestrictions({visibleArea:this.visibleArea,type:"resize"}));t.maxWidth=Math.min(t.maxWidth,n.width*e.width/this.boundaries.width),t.maxHeight=Math.min(t.maxHeight,n.height*e.height/this.boundaries.height),t.maxWidth<t.minWidth&&(t.minWidth=t.maxWidth),t.maxHeight<t.minHeight&&(t.minHeight=t.maxHeight)}return t}return{minWidth:0,minHeight:0,maxWidth:0,maxHeight:0}},positionRestrictions:function(){return this.positionRestrictionsAlgorithm({imageSize:this.imageSize,imageRestriction:this.imageRestriction})},classes:function(){return{cropper:Le(),image:K(Le("image"),this.imageClass),stencil:Le("stencil"),boundaries:K(Le("boundaries"),this.boundariesClass),stretcher:K(Le("stretcher")),background:K(Le("background"),this.backgroundClass),foreground:K(Le("foreground"),this.foregroundClass),imageWrapper:K(Le("image-wrapper")),cropperWrapper:K(Le("cropper-wrapper"))}},stencilCoordinates:function(){if(this.initialized){var t=this.coordinates,e=t.width,n=t.height,o=t.left,r=t.top;return{width:e/this.coefficient,height:n/this.coefficient,left:(o-this.visibleArea.left)/this.coefficient,top:(r-this.visibleArea.top)/this.coefficient}}return this.defaultCoordinates()},boundariesStyle:function(){var t={width:this.boundaries.width?"".concat(Math.round(this.boundaries.width),"px"):"auto",height:this.boundaries.height?"".concat(Math.round(this.boundaries.height),"px"):"auto",transition:"opacity ".concat(this.transitionTime,"ms"),pointerEvents:this.imageLoaded?"all":"none"};return this.imageLoaded||(t.opacity="0"),t},imageStyle:function(){var t=this.imageAttributes.width>this.imageAttributes.height?{width:Math.min(1024,this.imageAttributes.width),height:Math.min(1024,this.imageAttributes.width)/(this.imageAttributes.width/this.imageAttributes.height)}:{height:Math.min(1024,this.imageAttributes.height),width:Math.min(1024,this.imageAttributes.height)*(this.imageAttributes.width/this.imageAttributes.height)},e={left:(t.width-this.imageSize.width)/(2*this.coefficient),top:(t.height-this.imageSize.height)/(2*this.coefficient)},n={left:(1-1/this.coefficient)*t.width/2,top:(1-1/this.coefficient)*t.height/2},o=W(W({},this.imageTransforms),{},{scaleX:this.imageTransforms.scaleX*(this.imageAttributes.width/t.width),scaleY:this.imageTransforms.scaleY*(this.imageAttributes.height/t.height)}),r={width:"".concat(t.width,"px"),height:"".concat(t.height,"px"),left:"0px",top:"0px",transform:"translate(".concat(-e.left-n.left-this.imageTransforms.translateX,"px, ").concat(-e.top-n.top-this.imageTransforms.translateY,"px)")+Ko(o)};return this.transitionsOptions.enabled&&(r.transition="".concat(this.transitionsOptions.time,"ms ").concat(this.transitionsOptions.timingFunction)),r}},watch:{src:function(){this.onChangeImage()},stencilComponent:function(){var t=this;this.$nextTick(function(){t.resetCoordinates(),t.runAutoZoom("setCoordinates"),t.onChange()})},minWidth:function(){this.onPropsChange()},maxWidth:function(){this.onPropsChange()},minHeight:function(){this.onPropsChange()},maxHeight:function(){this.onPropsChange()},imageRestriction:function(){this.reset()},stencilProps:function(t,e){["aspectRatio","minAspectRatio","maxAspectRatio"].find(function(n){return t[n]!==e[n]})&&this.$nextTick(this.onPropsChange)}},created:function(){this.debouncedUpdate=Rn(this.update,this.debounce),this.debouncedDisableTransitions=Rn(this.disableTransitions,this.transitionsOptions.time),this.awaiting=!1},mounted:function(){this.$refs.image.addEventListener("load",this.onSuccessLoadImage),this.$refs.image.addEventListener("error",this.onFailLoadImage),this.onChangeImage(),window.addEventListener("resize",this.refresh),window.addEventListener("orientationchange",this.refresh)},unmounted:function(){window.removeEventListener("resize",this.refresh),window.removeEventListener("orientationchange",this.refresh),this.imageAttributes.revoke&&this.imageAttributes.src&&URL.revokeObjectURL(this.imageAttributes.src),this.debouncedUpdate.clear(),this.debouncedDisableTransitions.clear()},methods:{getResult:function(){var t=this.initialized?this.prepareResult(W({},this.coordinates)):this.defaultCoordinates(),e={rotate:this.imageTransforms.rotate%360,flip:W({},this.imageTransforms.flip)};if(this.src&&this.imageLoaded){var n=this;return{image:this.image,coordinates:t,visibleArea:this.visibleArea?W({},this.visibleArea):null,imageTransforms:e,get canvas(){return n.canvas?n.getCanvas():void 0}}}return{image:this.image,coordinates:t,visibleArea:this.visibleArea?W({},this.visibleArea):null,canvas:void 0,imageTransforms:e}},zoom:function(t,e){var n=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{},o=n.transitions,r=o===void 0||o;this.onManipulateImage(new wt({},{factor:1/t,center:e}),{normalize:!1,transitions:r})},move:function(t,e){var n=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{},o=n.transitions,r=o===void 0||o;this.onManipulateImage(new wt({left:t||0,top:e||0}),{normalize:!1,transitions:r})},setCoordinates:function(t){var e=this,n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},o=n.autoZoom,r=o===void 0||o,s=n.transitions,a=s===void 0||s;this.$nextTick(function(){e.imageLoaded?(e.transitionsActive||(a&&e.enableTransitions(),e.coordinates=e.applyTransform(t),r&&e.runAutoZoom("setCoordinates"),a&&e.debouncedDisableTransitions()),e.onChange()):e.delayedTransforms=t})},refresh:function(){var t=this,e=this.$refs.image;if(this.src&&e)return this.initialized?this.updateVisibleArea().then(function(){t.onChange()}):this.resetVisibleArea().then(function(){t.onChange()})},reset:function(){var t=this;return this.resetVisibleArea().then(function(){t.onChange(!1)})},awaitRender:function(t){var e=this;this.awaiting||(this.awaiting=!0,this.$nextTick(function(){t(),e.awaiting=!1}))},prepareResult:function(t){return this.roundResult?function(e){var n=e.coordinates,o=e.sizeRestrictions,r=e.positionRestrictions,s={width:Math.round(n.width),height:Math.round(n.height),left:Math.round(n.left),top:Math.round(n.top)};return s.width>o.maxWidth?s.width=Math.floor(n.width):s.width<o.minWidth&&(s.width=Math.ceil(n.width)),s.height>o.maxHeight?s.height=Math.floor(n.height):s.height<o.minHeight&&(s.height=Math.ceil(n.height)),ae(s,r)}(W(W({},this.getPublicProperties()),{},{positionRestrictions:Wt(this.positionRestrictions,this.visibleArea),coordinates:t})):t},processAutoZoom:function(t,e,n,o){var r=this.autoZoomAlgorithm;r||(r=this.stencilSize?ec:this.autoZoom?tc:nc);var s=r({event:{type:t,params:o},visibleArea:e,coordinates:n,boundaries:this.boundaries,aspectRatio:this.getAspectRatio(),positionRestrictions:this.positionRestrictions,getAreaRestrictions:this.getAreaRestrictions,sizeRestrictions:this.sizeRestrictions,stencilSize:this.getStencilSize()});return W(W({},s),{},{changed:!_o(s.visibleArea,e)||!_o(s.coordinates,n)})},runAutoZoom:function(t){var e=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},n=e.transitions,o=n!==void 0&&n,r=Ul(e,bc),s=this.processAutoZoom(t,this.visibleArea,this.coordinates,r),a=s.visibleArea,c=s.coordinates,l=s.changed;o&&l&&this.enableTransitions(),this.visibleArea=a,this.coordinates=c,o&&l&&this.debouncedDisableTransitions()},normalizeEvent:function(t){return function(e){var n=e.event,o=e.visibleArea,r=e.coefficient;if(n.type==="manipulateImage")return N(N({},n),{move:{left:n.move&&n.move.left?r*n.move.left:0,top:n.move&&n.move.top?r*n.move.top:0},scale:{factor:n.scale&&n.scale.factor?n.scale.factor:1,center:n.scale&&n.scale.center?{left:n.scale.center.left*r+o.left,top:n.scale.center.top*r+o.top}:null}});if(n.type==="resize"){var s=N(N({},n),{directions:N({},n.directions)});return Ae.forEach(function(c){s.directions[c]*=r}),s}if(n.type==="move"){var a=N(N({},n),{directions:N({},n.directions)});return Jl.forEach(function(c){a.directions[c]*=r}),a}return n}(W(W({},this.getPublicProperties()),{},{event:t}))},getCanvas:function(){if(this.$refs.canvas){var t=this.$refs.canvas,e=this.$refs.image,n=this.imageTransforms.rotate!==0||this.imageTransforms.flip.horizontal||this.imageTransforms.flip.vertical?function(c,l,u){var h=u.rotate,f=u.flip,m={width:l.naturalWidth,height:l.naturalHeight},g=jo(m,h),p=c.getContext("2d");c.height=g.height,c.width=g.width,p.save();var E=qe(se(N({left:0,top:0},m)),h);return p.translate(-(E.left-g.width/2),-(E.top-g.height/2)),p.rotate(h*Math.PI/180),p.translate(f.horizontal?m.width:0,f.vertical?m.height:0),p.scale(f.horizontal?-1:1,f.vertical?-1:1),p.drawImage(l,0,0,m.width,m.height),p.restore(),c}(this.$refs.sourceCanvas,e,this.imageTransforms):e,o=W({minWidth:0,minHeight:0,maxWidth:1/0,maxHeight:1/0,maxArea:this.maxCanvasSize,imageSmoothingEnabled:!0,imageSmoothingQuality:"high",fillColor:"transparent"},this.canvas),r=function(c){return c.find(function(l){return u=l,!Number.isNaN(parseFloat(u))&&isFinite(u);var u})},s=Oe({sizeRestrictions:{minWidth:r([o.width,o.minWidth])||0,minHeight:r([o.height,o.minHeight])||0,maxWidth:r([o.width,o.maxWidth])||1/0,maxHeight:r([o.height,o.maxHeight])||1/0},width:this.coordinates.width,height:this.coordinates.height,aspectRatio:{minimum:this.coordinates.width/this.coordinates.height,maximum:this.coordinates.width/this.coordinates.height}});if(o.maxArea&&s.width*s.height>o.maxArea){var a=Math.sqrt(o.maxArea/(s.width*s.height));s={width:Math.round(a*s.width),height:Math.round(a*s.height)}}return function(c,l,u,h,f){c.width=h?h.width:u.width,c.height=h?h.height:u.height;var m=c.getContext("2d");m.clearRect(0,0,c.width,c.height),f&&(f.imageSmoothingEnabled&&(m.imageSmoothingEnabled=f.imageSmoothingEnabled),f.imageSmoothingQuality&&(m.imageSmoothingQuality=f.imageSmoothingQuality),f.fillColor&&(m.fillStyle=f.fillColor,m.fillRect(0,0,c.width,c.height),m.save()));var g=u.left<0?-u.left:0,p=u.top<0?-u.top:0;m.drawImage(l,u.left+g,u.top+p,u.width,u.height,g*(c.width/u.width),p*(c.height/u.height),c.width,c.height)}(t,n,this.coordinates,s,o),t}},update:function(){this.$emit("change",this.getResult())},applyTransform:function(t){var e=arguments.length>1&&arguments[1]!==void 0&&arguments[1],n=this.visibleArea&&e?Ql(this.sizeRestrictions,this.visibleArea):this.sizeRestrictions,o=this.visibleArea&&e?Wt(this.positionRestrictions,this.visibleArea):this.positionRestrictions;return Kl({transform:t,coordinates:this.coordinates,imageSize:this.imageSize,sizeRestrictions:n,positionRestrictions:o,aspectRatio:this.getAspectRatio(),visibleArea:this.visibleArea})},resetCoordinates:function(){var t=this;if(this.$refs.image){this.$refs.cropper,this.$refs.image;var e=this.defaultSize;e||(e=this.stencilSize?rc:oc);var n=this.sizeRestrictions;n.minWidth,n.minHeight,n.maxWidth,n.maxHeight;var o=it(e)?e({boundaries:this.boundaries,imageSize:this.imageSize,aspectRatio:this.getAspectRatio(),sizeRestrictions:this.sizeRestrictions,stencilSize:this.getStencilSize(),visibleArea:this.visibleArea}):e,r=this.defaultPosition||ic,s=[o,function(a){var c=a.coordinates;return W({},it(r)?r({coordinates:c,imageSize:t.imageSize,visibleArea:t.visibleArea}):t.defaultPosition)}];this.delayedTransforms&&s.push.apply(s,Ge(Array.isArray(this.delayedTransforms)?this.delayedTransforms:[this.delayedTransforms])),this.coordinates=this.applyTransform(s,!0),this.delayedTransforms=null}},clearImage:function(){var t=this;this.imageLoaded=!1,setTimeout(function(){var e=t.$refs.stretcher;e&&(e.style.height="auto",e.style.width="auto"),t.coordinates=t.defaultCoordinates(),t.boundaries={width:0,height:0}},this.transitionTime)},enableTransitions:function(){this.transitions&&(this.transitionsActive=!0)},disableTransitions:function(){this.transitionsActive=!1},updateBoundaries:function(){var t=this,e=this.$refs.stretcher,n=this.$refs.cropper;return this.initStretcher({cropper:n,stretcher:e,imageSize:this.imageSize}),this.$nextTick().then(function(){var o={cropper:n,imageSize:t.imageSize};if(it(t.defaultBoundaries)?t.boundaries=t.defaultBoundaries(o):t.defaultBoundaries==="fit"?t.boundaries=function(r){var s=r.cropper,a=r.imageSize,c=s.clientHeight,l=s.clientWidth,u=c,h=a.width*c/a.height;return h>l&&(h=l,u=a.height*l/a.width),{width:h,height:u}}(o):t.boundaries=function(r){var s=r.cropper;return{width:s.clientWidth,height:s.clientHeight}}(o),!t.boundaries.width||!t.boundaries.height)throw new Error("It's impossible to fit the cropper in the current container")})},resetVisibleArea:function(){var t=this;return this.appliedImageTransforms=W(W({},this.defaultImageTransforms),{},{flip:W({},this.defaultImageTransforms.flip)}),this.updateBoundaries().then(function(){t.priority!=="visible-area"&&(t.visibleArea=null,t.resetCoordinates());var e,n,o,r,s,a,c=t.defaultVisibleArea||sc;t.visibleArea=it(c)?c({imageSize:t.imageSize,boundaries:t.boundaries,coordinates:t.priority!=="visible-area"?t.coordinates:null,getAreaRestrictions:t.getAreaRestrictions,stencilSize:t.getStencilSize()}):t.defaultVisibleArea,t.visibleArea=(e={visibleArea:t.visibleArea,boundaries:t.boundaries,getAreaRestrictions:t.getAreaRestrictions},n=e.visibleArea,o=e.boundaries,r=e.getAreaRestrictions,s=N({},n),a=j(o),s.width/s.height!==a&&(s.height=s.width/a),ae(s,r({visibleArea:s,type:"move"}))),t.priority==="visible-area"?t.resetCoordinates():t.coordinates=t.fitCoordinates({visibleArea:t.visibleArea,coordinates:t.coordinates,aspectRatio:t.getAspectRatio(),positionRestrictions:t.positionRestrictions,sizeRestrictions:t.sizeRestrictions}),t.runAutoZoom("resetVisibleArea")}).catch(function(){t.visibleArea=null})},updateVisibleArea:function(){var t=this;return this.updateBoundaries().then(function(){t.visibleArea=t.fitVisibleArea({imageSize:t.imageSize,boundaries:t.boundaries,visibleArea:t.visibleArea,coordinates:t.coordinates,getAreaRestrictions:t.getAreaRestrictions}),t.coordinates=t.fitCoordinates({visibleArea:t.visibleArea,coordinates:t.coordinates,aspectRatio:t.getAspectRatio(),positionRestrictions:t.positionRestrictions,sizeRestrictions:t.sizeRestrictions}),t.runAutoZoom("updateVisibleArea")}).catch(function(){t.visibleArea=null})},onChange:function(){var t=!(arguments.length>0&&arguments[0]!==void 0)||arguments[0];t&&this.debounce?this.debouncedUpdate():this.update()},onChangeImage:function(){var t,e=this;if(this.imageLoaded=!1,this.delayedTransforms=null,this.src){if(function(r){if(Fo(r))return!1;var s=window.location,a=/(\w+:)?(?:\/\/)([\w.-]+)?(?::(\d+))?\/?/.exec(r)||[],c={protocol:a[1]||"",host:a[2]||"",port:a[3]||""},l=function(u){return u.port||((u.protocol||s.protocol)==="http"?80:433)};return!(!c.protocol&&!c.host&&!c.port||c.protocol&&c.protocol==s.protocol&&c.host&&c.host==s.host&&c.host&&l(c)==l(s))}(this.src)){var n=ie(this.crossOrigin)?this.canvas:this.crossOrigin;n===!0&&(n="anonymous"),this.imageAttributes.crossOrigin=n||null}if(this.checkOrientation){var o=(t=this.src,new Promise(function(r){yc(t).then(function(s){var a=wc(s);r(s?{source:t,arrayBuffer:s,orientation:a}:{source:t,arrayBuffer:null,orientation:null})}).catch(function(s){console.warn(s),r({source:t,arrayBuffer:null,orientation:null})})}));setTimeout(function(){o.then(e.onParseImage)},this.transitionTime)}else setTimeout(function(){e.onParseImage({source:e.src})},this.transitionTime)}else this.clearImage()},onFailLoadImage:function(){this.imageAttributes.src&&(this.clearImage(),this.$emit("error"))},onSuccessLoadImage:function(){var t=this,e=this.$refs.image;e&&!this.imageLoaded&&(this.imageAttributes.height=e.naturalHeight,this.imageAttributes.width=e.naturalWidth,this.imageLoaded=!0,this.resetVisibleArea().then(function(){t.$emit("ready"),t.onChange(!1)}))},onParseImage:function(t){var e=this,n=t.source,o=t.arrayBuffer,r=t.orientation;this.imageAttributes.revoke&&this.imageAttributes.src&&URL.revokeObjectURL(this.imageAttributes.src),this.imageAttributes.revoke=!1,o&&r&&r>1?To(n)||!Fo(n)?(this.imageAttributes.src=URL.createObjectURL(new Blob([o])),this.imageAttributes.revoke=!0):this.imageAttributes.src=function(s){for(var a=[],c=new Uint8Array(s);c.length>0;){var l=c.subarray(0,8192);a.push(String.fromCharCode.apply(null,Array.from?Array.from(l):l.slice())),c=c.subarray(8192)}return"data:image/jpeg;base64,"+btoa(a.join(""))}(o):this.imageAttributes.src=n,it(this.defaultTransforms)?this.appliedImageTransforms=Ln(this.defaultTransforms()):Lt(this.defaultTransforms)?this.appliedImageTransforms=Ln(this.defaultTransforms):this.appliedImageTransforms=function(s){var a=Ln({});if(s)switch(s){case 2:a.flip.horizontal=!0;break;case 3:a.rotate=-180;break;case 4:a.flip.vertical=!0;break;case 5:a.rotate=90,a.flip.vertical=!0;break;case 6:a.rotate=90;break;case 7:a.rotate=90,a.flip.horizontal=!0;break;case 8:a.rotate=-90}return a}(r),this.defaultImageTransforms=W(W({},this.appliedImageTransforms),{},{flip:W({},this.appliedImageTransforms.flip)}),this.$nextTick(function(){var s=e.$refs.image;s&&s.complete&&(function(a){return!!a.naturalWidth}(s)?e.onSuccessLoadImage():e.onFailLoadImage())})},onResizeEnd:function(){this.runAutoZoom("resize",{transitions:!0})},onMoveEnd:function(){this.runAutoZoom("move",{transitions:!0})},onMove:function(t){var e=this;this.transitionsOptions.enabled||this.awaitRender(function(){e.coordinates=e.moveAlgorithm(W(W({},e.getPublicProperties()),{},{positionRestrictions:Wt(e.positionRestrictions,e.visibleArea),coordinates:e.coordinates,event:e.normalizeEvent(t)})),e.onChange()})},onResize:function(t){var e=this;this.transitionsOptions.enabled||this.stencilSize&&!this.autoZoom||this.awaitRender(function(){var n=e.sizeRestrictions,o=Math.min(e.coordinates.width,e.coordinates.height,20*e.coefficient);e.coordinates=e.resizeAlgorithm(W(W({},e.getPublicProperties()),{},{positionRestrictions:Wt(e.positionRestrictions,e.visibleArea),sizeRestrictions:{maxWidth:Math.min(n.maxWidth,e.visibleArea.width),maxHeight:Math.min(n.maxHeight,e.visibleArea.height),minWidth:Math.max(n.minWidth,o),minHeight:Math.max(n.minHeight,o)},event:e.normalizeEvent(t)})),e.onChange(),e.ticking=!1})},onManipulateImage:function(t){var e=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};if(!this.transitionsOptions.enabled){var n=e.transitions,o=n!==void 0&&n,r=e.normalize,s=r===void 0||r;o&&this.enableTransitions();var a=ac(W(W({},this.getPublicProperties()),{},{event:s?this.normalizeEvent(t):t,getAreaRestrictions:this.getAreaRestrictions,imageRestriction:this.imageRestriction,adjustStencil:!this.stencilSize&&this.settings.resizeImage.adjustStencil})),c=a.visibleArea,l=a.coordinates;this.visibleArea=c,this.coordinates=l,this.runAutoZoom("manipulateImage"),this.onChange(),o&&this.debouncedDisableTransitions()}},onPropsChange:function(){this.coordinates=this.applyTransform(this.coordinates,!0),this.onChange(!1)},getAreaRestrictions:function(){var t=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},e=t.visibleArea,n=t.type,o=n===void 0?"move":n;return this.areaRestrictionsAlgorithm({boundaries:this.boundaries,imageSize:this.imageSize,imageRestriction:this.imageRestriction,visibleArea:e,type:o})},getAspectRatio:function(t){var e,n,o=this.stencilProps,r=o.aspectRatio,s=o.minAspectRatio,a=o.maxAspectRatio;if(this.$refs.stencil&&this.$refs.stencil.aspectRatios){var c=this.$refs.stencil.aspectRatios();e=c.minimum,n=c.maximum}if(ie(e)&&(e=ie(r)?s:r),ie(n)&&(n=ie(r)?a:r),!t&&(ie(e)||ie(n))){var l=this.getStencilSize(),u=l?j(l):null;ie(e)&&(e=Do(u)?u:void 0),ie(n)&&(n=Do(u)?u:void 0)}return{minimum:e,maximum:n}},getStencilSize:function(){if(this.stencilSize)return t={currentStencilSize:{width:this.stencilCoordinates.width,height:this.stencilCoordinates.height},stencilSize:this.stencilSize,boundaries:this.boundaries,coefficient:this.coefficient,coordinates:this.coordinates,aspectRatio:this.getAspectRatio(!0)},e=t.boundaries,n=t.stencilSize,o=t.aspectRatio,zn(j(r=it(n)?n({boundaries:e,aspectRatio:o}):n),o)&&(r=Oe({sizeRestrictions:{maxWidth:e.width,maxHeight:e.height,minWidth:0,minHeight:0},width:r.width,height:r.height,aspectRatio:{minimum:o.minimum,maximum:o.maximum}})),(r.width>e.width||r.height>e.height)&&(r=Oe({sizeRestrictions:{maxWidth:e.width,maxHeight:e.height,minWidth:0,minHeight:0},width:r.width,height:r.height,aspectRatio:{minimum:j(r),maximum:j(r)}})),r;var t,e,n,o,r},getPublicProperties:function(){return{coefficient:this.coefficient,visibleArea:this.visibleArea,coordinates:this.coordinates,boundaries:this.boundaries,sizeRestrictions:this.sizeRestrictions,positionRestrictions:this.positionRestrictions,aspectRatio:this.getAspectRatio(),imageRestriction:this.imageRestriction}},defaultCoordinates:function(){return W({},Uo)},flip:function(t,e){var n=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{},o=n.transitions,r=o===void 0||o;if(!this.transitionsActive){r&&this.enableTransitions();var s=W({},this.imageTransforms.flip),a=cc({flip:{horizontal:t?!s.horizontal:s.horizontal,vertical:e?!s.vertical:s.vertical},previousFlip:s,rotate:this.imageTransforms.rotate,visibleArea:this.visibleArea,coordinates:this.coordinates,imageSize:this.imageSize,positionRestrictions:this.positionRestrictions,sizeRestrictions:this.sizeRestrictions,getAreaRestrictions:this.getAreaRestrictions,aspectRatio:this.getAspectRatio()}),c=a.visibleArea,l=a.coordinates;t&&(this.appliedImageTransforms.flip.horizontal=!this.appliedImageTransforms.flip.horizontal),e&&(this.appliedImageTransforms.flip.vertical=!this.appliedImageTransforms.flip.vertical),this.visibleArea=c,this.coordinates=l,this.onChange(),r&&this.debouncedDisableTransitions()}},rotate:function(t){var e=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},n=e.transitions,o=n===void 0||n;if(!this.transitionsActive){o&&this.enableTransitions();var r=W({},this.imageSize);this.appliedImageTransforms.rotate+=t;var s=lc({visibleArea:this.visibleArea,coordinates:this.coordinates,previousImageSize:r,imageSize:this.imageSize,angle:t,positionRestrictions:this.positionRestrictions,sizeRestrictions:this.sizeRestrictions,getAreaRestrictions:this.getAreaRestrictions,aspectRatio:this.getAspectRatio()}),a=s.visibleArea,c=s.coordinates,l=this.processAutoZoom("rotateImage",a,c);a=l.visibleArea,c=l.coordinates,this.visibleArea=a,this.coordinates=c,this.onChange(),o&&this.debouncedDisableTransitions()}}},emits:["change","error","ready"]},Cc={key:0,ref:"canvas",style:{display:"none"}},Sc={key:1,ref:"sourceCanvas",style:{display:"none"}};rr.render=function(t,e,n,o,r,s){return i.openBlock(),i.createBlock("div",{ref:"cropper",class:s.classes.cropper},[i.createVNode("div",{ref:"stretcher",class:s.classes.stretcher},null,2),i.createVNode("div",{class:s.classes.boundaries,style:s.boundariesStyle},[(i.openBlock(),i.createBlock(i.resolveDynamicComponent(n.backgroundWrapperComponent),{class:s.classes.cropperWrapper,"wheel-resize":s.settings.resizeImage.wheel,"touch-resize":s.settings.resizeImage.touch,"touch-move":s.settings.moveImage.touch,"mouse-move":s.settings.moveImage.mouse,onMove:s.onManipulateImage,onResize:s.onManipulateImage},{default:i.withCtx(function(){return[i.createVNode("div",{class:s.classes.background,style:s.boundariesStyle},null,6),i.createVNode("div",{class:s.classes.imageWrapper},[i.createVNode("img",{ref:"image",crossorigin:r.imageAttributes.crossOrigin,src:r.imageAttributes.src,class:s.classes.image,style:s.imageStyle,onMousedown:e[1]||(e[1]=i.withModifiers(function(){},["prevent"]))},null,46,["crossorigin","src"])],2),i.createVNode("div",{class:s.classes.foreground,style:s.boundariesStyle},null,6),i.withDirectives((i.openBlock(),i.createBlock(i.resolveDynamicComponent(n.stencilComponent),i.mergeProps({ref:"stencil",image:s.image,coordinates:r.coordinates,"stencil-coordinates":s.stencilCoordinates,transitions:s.transitionsOptions},n.stencilProps,{onResize:s.onResize,onResizeEnd:s.onResizeEnd,onMove:s.onMove,onMoveEnd:s.onMoveEnd}),null,16,["image","coordinates","stencil-coordinates","transitions","onResize","onResizeEnd","onMove","onMoveEnd"])),[[i.vShow,r.imageLoaded]]),n.canvas?(i.openBlock(),i.createBlock("canvas",Cc,null,512)):i.createCommentVNode("",!0),n.canvas?(i.openBlock(),i.createBlock("canvas",Sc,null,512)):i.createCommentVNode("",!0)]}),_:1},8,["class","wheel-resize","touch-resize","touch-move","mouse-move","onMove","onResize"]))],6)],2)};const kc={class:"background-container"},Ec={class:"tools-line"},vc={class:"line-block"},xc={class:"dialog-footer"},sr=x(i.defineComponent({__name:"ImageCropper",props:{open:{type:Boolean,required:!0},defaultRatio:{type:Number,required:!1,default:1}},emits:["crop","close"],setup(t,{emit:e}){const n=t,o=e,r=S.S.Cropper.Cropper(),s=i.ref(n.defaultRatio);r.ratio=s.value;const a=async()=>{s.value===0?r.ratio=0:r.ratio=s.value},c=i.ref({width:0,height:0,left:0,top:0}),l=i.ref(!1),u=i.ref(""),h=i.ref(),f=async()=>{l.value=!0;const g=h.value.getResult();r.ratio===0&&(s.value=c.value.width/c.value.height),g&&g.canvas.toBlob(p=>{var E;o("crop",{blob:p,src:(E=g.canvas)==null?void 0:E.toDataURL()})}),l.value=!1},m=g=>{var p;c.value=g.coordinates,u.value=(p=g.canvas)==null?void 0:p.toDataURL()};return(g,p)=>{const E=i.resolveComponent("PSelect"),w=i.resolveComponent("el-form-item"),M=i.resolveComponent("el-form"),O=i.resolveComponent("el-button"),L=i.resolveComponent("PModal");return i.openBlock(),i.createBlock(L,{show:t.open,title:"Настройка изображения","close-on-click-modal":!1,"close-on-press-escape":!1,"show-close":!1},{default:i.withCtx(()=>[i.createElementVNode("div",kc,[i.createElementVNode("div",Ec,[i.createElementVNode("div",vc,[i.createVNode(M,null,{default:i.withCtx(()=>[i.createVNode(w,{label:"Задайте пропорции фото:"},{default:i.withCtx(()=>[i.createVNode(E,{modelValue:i.unref(s),"onUpdate:modelValue":p[0]||(p[0]=F=>i.isRef(s)?s.value=F:null),label:"Пропорции изображения",onChange:a},{default:i.withCtx(()=>p[1]||(p[1]=[i.createElementVNode("option",{label:"2:3 (формат A4)",value:2/3},null,-1),i.createElementVNode("option",{label:"4:3 (для карточек новостей)",value:4/3},null,-1),i.createElementVNode("option",{label:"1:1 (для фото сотрудников)",value:1},null,-1),i.createElementVNode("option",{label:"3:2",value:3/2},null,-1),i.createElementVNode("option",{label:"16:9",value:16/9},null,-1),i.createElementVNode("option",{label:"3:4 (вертикальное изображение)",value:3/4},null,-1),i.createElementVNode("option",{label:"Задать пропорции вручную",value:0},null,-1)])),_:1},8,["modelValue"])]),_:1})]),_:1})])]),i.createVNode(i.unref(rr),{ref_key:"cropperRef",ref:h,src:i.unref(r).src,"stencil-props":{aspectRatio:i.unref(r).ratio},style:{"max-height":"50vh","min-height":"50vh"},onChange:m},null,8,["src","stencil-props"]),i.createElementVNode("div",xc,[i.createVNode(O,{loading:i.unref(l),type:"success",onClick:f},{default:i.withCtx(()=>p[2]||(p[2]=[i.createTextVNode(" Сохранить ")])),_:1},8,["loading"])])])]),_:1},8,["show"])}}}),[["__scopeId","data-v-b2600930"]]),Bc={key:0,class:"blur"},Mc={style:{display:"flex","justify-content":"center"}},Zt=x(i.defineComponent({__name:"InfoItem",props:{background:{type:String,required:!1,default:""},padding:{type:String,required:!1,default:""},width:{type:String,required:!1,default:""},openWidth:{type:String,required:!1,default:"auto"},openHeight:{type:String,required:!1,default:"auto"},maxWidth:{type:String,required:!1,default:""},minWidth:{type:String,required:!1,default:""},margin:{type:String,required:!1,default:""},height:{type:String,required:!1,default:""},withOpenWindow:{type:Boolean,required:!1,default:!0},colorSelected:{type:String,required:!1,default:"#1979CF"},borderColor:{type:String,required:!1,default:"#E3E3E3"},withHover:{type:Boolean,required:!1,default:!0},title:{type:String,required:!1,default:""},customClass:{type:String,required:!1,default:""},close:{type:Boolean,required:!1,default:!0},baseBoxMargin:{type:String,required:!1,default:""},closeWindowOverflow:{type:String,required:!1,default:""},showSaveDialog:{type:Boolean,required:!1,default:!1}},emits:["click","keyup-enter","after-close"],setup(t,{emit:e}){const n=t,o=e,r=n.customClass!==""?n.customClass:"inside-class",s=i.ref(!1),a=i.ref(!1),c=i.ref(!1),l=i.ref(n.close);i.watch(()=>n.close,()=>{a.value=!1});const u=F=>{F.stopPropagation(),F.key==="Escape"&&(n.showSaveDialog?c.value=!0:a.value=!1)};i.watch(a,async()=>{var F,z;await i.nextTick(),a.value?((z=(F=document.getElementById("info-item-opened-content"))==null?void 0:F.querySelector("input"))==null||z.focus(),document.body.addEventListener("keydown",u)):document.body.removeEventListener("keydown",u,!1),a.value===!1&&o("after-close")});const h=()=>{o("click"),a.value=!!n.withOpenWindow,l.value!==n.close&&(a.value=!1,l.value=!l.value)},f=i.computed(()=>n.customClass===""?{width:n.width,minHeight:"40px",height:"auto",maxWidth:n.maxWidth,minWidth:n.minWidth,margin:n.baseBoxMargin}:void 0),m=i.computed(()=>a.value&&n.withOpenWindow),g=i.computed(()=>({background:n.background?n.background:void 0,zIndex:m.value?"2":"0",padding:m.value?"0":n.padding,margin:n.margin,width:m.value?n.openWidth:n.width,height:m.value?n.openHeight:n.height,minHeight:"40px",maxWidth:n.maxWidth,minWidth:n.minWidth,borderColor:s.value||a.value?n.colorSelected:n.borderColor,color:s.value?n.colorSelected:"#343E5C",boxShadow:s.value||a.value?`0px 0px 1px 1px ${n.colorSelected}`:"none",alignItems:m.value?"end":"center",cursor:(n.withHover,"pointer")})),p=i.computed(()=>({height:m.value?"0":"",overflow:n.closeWindowOverflow,width:n.width})),E=i.computed(()=>({height:m.value?"auto":"0"})),w=i.computed(()=>({color:s.value?n.colorSelected:"#343E5C",fill:s.value?n.colorSelected:"#343E5C",background:n.background})),M=()=>{n.showSaveDialog?c.value=!0:a.value=!1},O=async()=>{await o("keyup-enter"),n.close&&(a.value=!1),c.value=!1},L=()=>{a.value=!1,c.value=!1};return(F,z)=>{const we=i.resolveComponent("PString"),ke=i.resolveComponent("PButton"),je=i.resolveComponent("PModal"),pt=i.resolveDirective("click-outside");return i.openBlock(),i.createElementBlock(i.Fragment,null,[i.unref(a)?(i.openBlock(),i.createElementBlock("div",Bc)):i.createCommentVNode("",!0),i.createElementVNode("div",{class:"base-box",style:i.normalizeStyle(i.unref(f)),onClick:z[2]||(z[2]=i.withModifiers(Sn=>h(),["prevent","stop"]))},[i.createElementVNode("div",{class:i.normalizeClass(["body",i.unref(r)]),style:i.normalizeStyle(i.unref(g)),onMouseenter:z[0]||(z[0]=Sn=>t.withHover?s.value=!0:s.value=!1),onMouseleave:z[1]||(z[1]=Sn=>s.value=!1)},[i.unref(a)?i.createCommentVNode("",!0):(i.openBlock(),i.createElementBlock("div",{key:0,class:i.normalizeClass(["close-window",t.customClass]),style:i.normalizeStyle(i.unref(p))},[i.renderSlot(F.$slots,"default",{},void 0,!0)],6)),i.unref(a)?i.withDirectives((i.openBlock(),i.createElementBlock("div",{key:1,id:"info-item-opened-content",class:"open-window",style:i.normalizeStyle(i.unref(E))},[i.renderSlot(F.$slots,"open-inside-content",{},void 0,!0)],4)),[[pt,M,void 0,{prevent:!0}]]):i.createCommentVNode("",!0),i.createElementVNode("div",{class:"top-title",style:i.normalizeStyle(i.unref(w))},[i.renderSlot(F.$slots,"title",{},()=>[i.createVNode(we,{string:t.title,"font-size":"10px",padding:"0 0 0 3px",style:i.normalizeStyle({color:i.unref(s)?"#006BB4":"#c4c4c4",transition:"0.2s"})},null,8,["string","style"])],!0)],4)],38)],4),i.createVNode(je,{show:i.unref(c),title:"У вас остались несохраненные изменения, вы уверены что хотите закрыть окно?"},{default:i.withCtx(()=>[i.createElementVNode("div",Mc,[i.createVNode(ke,{text:"Не сохранять",onClick:L}),i.createVNode(ke,{text:"Сохранять",onClick:O})])]),_:1},8,["show"])],64)}}}),[["__scopeId","data-v-e8e8f1a1"]]),ar=x(i.defineComponent({__name:"InfoItemSelectButtons",props:{selected:{type:String,required:!0},title:{type:String,required:!0},list:{type:Array,required:!0}},emits:["select","reset"],setup(t,{emit:e}){const n=i.ref(!1),o=e,r=s=>{n.value=!n.value,o("select",s)};return(s,a)=>{const c=i.resolveComponent("PString"),l=i.resolveComponent("PButton"),u=i.resolveComponent("InfoItem");return i.openBlock(),i.createBlock(u,{close:i.unref(n),title:t.title,"close-window-overflow":"hidden","with-hover":!0,"with-open-window":!0},{"open-inside-content":i.withCtx(()=>[(i.openBlock(!0),i.createElementBlock(i.Fragment,null,i.renderList(t.list,h=>(i.openBlock(),i.createBlock(l,{key:h,type:"admin",color:"blue",text:h,onClick:f=>r(h)},null,8,["text","onClick"]))),128)),i.createVNode(l,{type:"admin",color:"blue",text:"Сбросить",onClick:a[0]||(a[0]=h=>r(void 0))})]),default:i.withCtx(()=>[i.createVNode(c,{string:t.selected,"font-size":"14px",width:"100%"},null,8,["string"])]),_:1},8,["close","title"])}}}),[["__scopeId","data-v-973addd1"]]),Ic={class:"mainblock"},Rc={class:"mainline"},lr=x(i.defineComponent({__name:"LeftRightContainer",props:{leftWidth:{type:String,required:!1,default:"0px"},background:{type:String,required:!1,default:"inherit"}},setup(t){return(e,n)=>(i.openBlock(),i.createElementBlock("div",Ic,[i.createElementVNode("div",Rc,[i.createElementVNode("div",{class:"mainblock-left",style:i.normalizeStyle({minWidth:t.leftWidth,maxWidth:t.leftWidth,background:t.background,display:t.leftWidth!=="0px"?"block":"none"})},[i.renderSlot(e.$slots,"left",{},void 0,!0)],4),i.createElementVNode("div",{class:"mainblock-right",style:i.normalizeStyle({background:t.background})},[i.renderSlot(e.$slots,"right",{},void 0,!0)],4)])]))}}),[["__scopeId","data-v-42fa7104"]]),$c={class:"message-title"},Ac={class:"message-text"},cr=x(i.defineComponent({__name:"MessageBody",props:{title:{type:String,default:"",required:!1},text:{type:String,default:"",required:!1}},setup(t){return(e,n)=>(i.openBlock(),i.createElementBlock("div",null,[i.createElementVNode("div",$c,i.toDisplayString(t.title),1),i.createElementVNode("div",Ac,i.toDisplayString(t.text),1)]))}}),[["__scopeId","data-v-182d0640"]]),Nc=i.defineComponent({name:"CollapseContainer",props:{initActiveIdx:{type:Number,default:0}},setup(t){const e=i.ref(t.initActiveIdx),n=o=>{e.value=o};return i.watch(()=>t.initActiveIdx,()=>{n(t.initActiveIdx)}),{changeActiveId:n,activeIdx:e}}});function Pc(t,e,n,o,r,s){return i.openBlock(),i.createElementBlock("div",null,[i.renderSlot(t.$slots,"default",{activeIdx:t.activeIdx,changeActiveId:t.changeActiveId})])}const dr=x(Nc,[["render",Pc]]),zc=i.defineComponent({name:"CollapseItem",props:{tabId:{type:String,required:!1,default:""},activeId:{type:String,default:""},isCollaps:{type:Boolean,default:!0},title:{type:String,default:""},showToolsOnHover:{type:Boolean,default:!0},background:{type:String,required:!1,default:"#ffffff"},backgroundAttention:{type:String,required:!1,default:"#ffffff"},changeColor:{type:Boolean,default:!1},margin:{type:String,default:"10px 8px 2px 2px"},padding:{type:String,default:"0 10px"},selectable:{type:Boolean,default:!1}},emits:["changeActiveId"],setup(t,{emit:e}){const n=i.ref(t.activeId==="0"),o=()=>{n.value=!n.value,e("changeActiveId",t.tabId)};return i.onUpdated(()=>{t.activeId&&t.activeId!==t.tabId&&(n.value=!0)}),i.onBeforeMount(()=>{t.activeId&&t.activeId!==t.tabId&&(n.value=!1)}),{collapsed:n,handleItemClick:o}}}),Vc=["for"],Tc={class:"inside-icon"};function Fc(t,e,n,o,r,s){return i.openBlock(),i.createElementBlock(i.Fragment,null,[i.createElementVNode("div",{class:"tab",style:i.normalizeStyle({margin:t.margin,height:t.isCollaps&&t.collapsed?"60px":"","box-shadow":t.selectable&&t.activeId===t.tabId?"0px 0px 1px 2px #1979cf":""})},[t.isCollaps&&t.collapsed?(i.openBlock(),i.createElementBlock("svg",{key:0,class:"icon-arrow",onClick:e[0]||(e[0]=(...a)=>t.handleItemClick&&t.handleItemClick(...a))},e[3]||(e[3]=[i.createElementVNode("use",{"xlink:href":"#arrow-down"},null,-1)]))):t.isCollaps&&!t.collapsed?(i.openBlock(),i.createElementBlock("svg",{key:1,class:"icon-arrow",onClick:e[1]||(e[1]=(...a)=>t.handleItemClick&&t.handleItemClick(...a))},e[4]||(e[4]=[i.createElementVNode("use",{"xlink:href":"#arrow-up"},null,-1)]))):i.createCommentVNode("",!0),i.createElementVNode("label",{for:t.tabId,onClick:e[2]||(e[2]=(...a)=>t.handleItemClick&&t.handleItemClick(...a))},[i.createElementVNode("div",{style:i.normalizeStyle({cursor:t.isCollaps?"pointer":"default",background:t.changeColor?t.background:t.backgroundAttention,padding:t.padding,borderRadius:"5px"}),class:"tab-name"},[i.createElementVNode("div",Tc,[i.renderSlot(t.$slots,"icon",{},void 0,!0)]),t.title?(i.openBlock(),i.createElementBlock("div",{key:0,class:"title-in",style:i.normalizeStyle({marginRight:t.isCollaps?"50px":"0",width:t.isCollaps?"calc(100% - 50px)":"100%"})},i.toDisplayString(t.title),5)):(i.openBlock(),i.createElementBlock("div",{key:1,class:"title-in",style:i.normalizeStyle({marginRight:t.isCollaps?"50px":"0",width:t.isCollaps?"calc(100% - 50px)":"100%"})},[i.renderSlot(t.$slots,"inside-title",{},void 0,!0)],4)),i.createElementVNode("div",{class:i.normalizeClass(["tools-bar",{"hidden-part":t.showToolsOnHover}])},[i.renderSlot(t.$slots,"tools",{},void 0,!0)],2)],4)],8,Vc),i.createElementVNode("div",{style:i.normalizeStyle({maxHeight:t.isCollaps?"":"1000000vh",background:t.changeColor?t.background:t.backgroundAttention}),class:i.normalizeClass(t.collapsed?"tab-content-down":"tab-content-up")},[i.renderSlot(t.$slots,"inside-content",{},void 0,!0)],6)],4),e[5]||(e[5]=i.createStaticVNode('<svg width="0" height="0" class="hidden" data-v-0ea9a95f><symbol id="arrow-down" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" data-v-0ea9a95f><path d="M5 6L10 11L15 6L17 7L10 14L3 7L5 6Z" fill="currentColor" data-v-0ea9a95f></path></symbol><symbol id="arrow-up" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" data-v-0ea9a95f><path d="M15 14L10 9L5 14L3 13L10 6L17 13L15 14Z" fill="currentColor" data-v-0ea9a95f></path></symbol></svg>',1))],64)}const ur=x(zc,[["render",Fc],["__scopeId","data-v-0ea9a95f"]]),Dc={class:"tab"},Oc={class:"rotate"},hr=x(i.defineComponent({__name:"VerticalCollapseContainer",setup(t){const e=i.ref(!1),n=async()=>{e.value=!e.value};return(o,r)=>{const s=i.resolveComponent("ArrowRight"),a=i.resolveComponent("ArrowLeft");return i.openBlock(),i.createElementBlock(i.Fragment,null,[i.createElementVNode("div",Dc,[i.renderSlot(o.$slots,"main",{},void 0,!0),i.createElementVNode("div",{style:i.normalizeStyle({width:i.unref(e)?"50%":"20px",transition:"0.3s"}),class:"left"},[i.createElementVNode("div",{style:i.normalizeStyle({width:i.unref(e)?"100%":"0",transition:"0.3s"}),class:"left-content"},[i.renderSlot(o.$slots,"inside-content-left",{},void 0,!0)],4),i.createElementVNode("div",{class:"arrow-bar",onClick:n},[i.createElementVNode("div",Oc,[i.renderSlot(o.$slots,"inside-title",{},void 0,!0)]),i.unref(e)?(i.openBlock(),i.createBlock(s,{key:0,"icon-class":"icon-arrow"})):(i.openBlock(),i.createBlock(a,{key:1,"icon-class":"icon-arrow"}))])],4),i.createElementVNode("div",{style:i.normalizeStyle({width:i.unref(e)?"50%":"100%",transition:"0.3s"}),class:"right"},[i.renderSlot(o.$slots,"inside-content-right",{},void 0,!0)],4)]),i.createVNode(a),i.createVNode(s)],64)}}}),[["__scopeId","data-v-4ccaade5"]]),Lc={class:"add-block_body"},fr=x(i.defineComponent({__name:"PAdd",props:{background:{type:String,required:!1,default:"inherit"},margin:{type:String,required:!1,default:"0"},padding:{type:String,required:!1,default:"0"},top:{type:String,required:!1,default:"0"},zIndex:{type:Number,required:!1,default:0}},setup(t){return(e,n)=>{const o=i.resolveComponent("PSticky");return i.openBlock(),i.createElementBlock("div",{class:"add-block",style:i.normalizeStyle({margin:t.margin,background:t.background,padding:t.padding})},[i.createVNode(o,{top:t.top,"z-index":t.zIndex},{default:i.withCtx(()=>[i.renderSlot(e.$slots,"title",{},void 0,!0)]),_:3},8,["top","z-index"]),i.createElementVNode("div",Lc,[i.renderSlot(e.$slots,"default",{},void 0,!0)])],4)}}}),[["__scopeId","data-v-338720bc"]]),mr=x(i.defineComponent({__name:"PContainer",props:{background:{type:String,required:!1,default:"inherit"},margin:{type:String,required:!1,default:"0"},padding:{type:String,required:!1,default:"0"}},setup(t){return(e,n)=>(i.openBlock(),i.createElementBlock("div",{class:"add-block",style:i.normalizeStyle({margin:t.margin,background:t.background,padding:t.padding})},[i.renderSlot(e.$slots,"default",{},void 0,!0)],4))}}),[["__scopeId","data-v-b2b43a38"]]),Hc={class:"add-block_body"},pr=x(i.defineComponent({__name:"PContainerStickyHead",props:{background:{type:String,required:!1,default:"inherit"},margin:{type:String,required:!1,default:"0"},padding:{type:String,required:!1,default:"0"},top:{type:String,required:!1,default:"0"},zIndex:{type:Number,required:!1,default:0}},setup(t){return(e,n)=>{const o=i.resolveComponent("PSticky"),r=i.resolveComponent("PContainer");return i.openBlock(),i.createBlock(r,{background:t.background,margin:t.margin,padding:t.padding},{default:i.withCtx(()=>[i.createVNode(o,{top:t.top,"z-index":t.zIndex},{default:i.withCtx(()=>[i.renderSlot(e.$slots,"title",{},void 0,!0)]),_:3},8,["top","z-index"]),i.createElementVNode("div",Hc,[i.renderSlot(e.$slots,"default",{},void 0,!0)])]),_:3},8,["background","margin","padding"])}}}),[["__scopeId","data-v-9464e4a8"]]),qc={class:"del-block_title"},Uc={class:"del-block_body"},gr=x(i.defineComponent({__name:"PDel",props:{background:{type:String,required:!1,default:"inherit"},margin:{type:String,required:!1,default:"10px 10px 10px 50px"},padding:{type:String,required:!1,default:"10px"}},setup(t){return(e,n)=>(i.openBlock(),i.createElementBlock("div",{class:"del-block",style:i.normalizeStyle({margin:t.margin,background:t.background,padding:t.padding})},[i.createElementVNode("div",qc,[i.renderSlot(e.$slots,"title",{},void 0,!0)]),i.createElementVNode("div",Uc,[i.renderSlot(e.$slots,"default",{},void 0,!0)])],4))}}),[["__scopeId","data-v-58d048aa"]]),_c={class:"btn-group"},yr=x(i.defineComponent({__name:"AuthForm",props:{width:{type:String,default:"300px"},margin:{type:String,default:"auto"},padding:{type:String,default:"60px 100px"}},emits:["submit"],setup(t,{emit:e}){const n=S.Auth.Form,o=i.ref(!1),r=e,s=i.computed(()=>n.GetButtons()),a=async c=>{await S.Auth.Form.Block(async()=>{if(!c.submit)return n.SetStatus(c.GetStatus());const l=n.Validate();if(l.length>0){S.UI.Notify.Error(l.join(", "));return}r("submit")})};return i.onBeforeUnmount(()=>{n.Reset()}),(c,l)=>{const u=i.resolveComponent("PInput"),h=i.resolveComponent("PButton");return i.openBlock(),i.createElementBlock("div",{class:"auth-card",style:i.normalizeStyle({width:t.width,margin:t.margin,padding:t.padding})},[i.createElementVNode("div",null,i.toDisplayString(("PF"in c?c.PF:i.unref(S)).Auth.Form.GetTitle()),1),i.createElementVNode("div",null,[(i.openBlock(!0),i.createElementBlock(i.Fragment,null,i.renderList(("PF"in c?c.PF:i.unref(S)).Auth.Form.GetFields(),f=>(i.openBlock(),i.createBlock(u,{id:f.id,key:f,modelValue:f.value,"onUpdate:modelValue":m=>f.value=m,placeholder:f.label,margin:"10px 0 0 0"},null,8,["id","modelValue","onUpdate:modelValue","placeholder"]))),128)),i.createElementVNode("div",_c,[(i.openBlock(!0),i.createElementBlock(i.Fragment,null,i.renderList(i.unref(s),f=>(i.openBlock(),i.createBlock(h,{id:f.id,key:f.GetStatus(),disabled:i.unref(o),type:"primary",skin:"base",text:f.text,color:f.submit?"blue":"grey",margin:"10px 0 0 0",width:"100%",height:"52px",onClick:m=>a(f)},null,8,["id","disabled","text","color","onClick"]))),128))])])],4)}}}),[["__scopeId","data-v-238616ff"]]),wr=x(i.defineComponent({__name:"PModal",props:{showCloseDialog:{type:Boolean,required:!1,default:!1},closable:{type:Boolean,required:!1,default:!1},show:{type:Boolean,default:!1},title:{type:String,default:""},width:{type:String,default:"760px"},maxHeight:{type:String,default:"70vh"},margin:{type:String,default:"auto"},top:{type:String,default:"20vh"},padding:{type:String,default:"var(--modal-window-padding)"},showClose:{type:Boolean,default:!1}},emits:["save","close"],setup(t,{emit:e}){const n=t,o=e,r=a=>{a.key==="Escape"&&s()};i.onMounted(()=>{document.body.addEventListener("keydown",r)}),i.onBeforeUnmount(()=>{document.body.removeEventListener("keydown",r)});const s=()=>{n.closable&&o("close")};return(a,c)=>{const l=i.resolveComponent("IconClose");return i.openBlock(),i.createElementBlock(i.Fragment,null,[t.show?(i.openBlock(),i.createElementBlock("div",{key:0,class:"blur",onClick:s})):i.createCommentVNode("",!0),t.show?(i.openBlock(),i.createElementBlock("div",{key:1,class:"modal-w",style:i.normalizeStyle({maxWidth:t.width,width:t.width,margin:t.margin,padding:t.padding,top:t.top,maxHeight:t.maxHeight})},[t.closable?(i.openBlock(),i.createElementBlock("div",{key:0,class:"icon-box",onClick:s},[i.createVNode(l,{size:"20px"})])):i.createCommentVNode("",!0),i.renderSlot(a.$slots,"default",{},void 0,!0)],4)):i.createCommentVNode("",!0)],64)}}}),[["__scopeId","data-v-3a1f6782"]]),Wc=["onClick"],br=x(i.defineComponent({__name:"PTabs",props:{menus:{type:Object,required:!0},tabHeight:{type:String,required:!1,default:"40px"},height:{type:String,required:!1,default:""},minMenuItemWidth:{type:String,required:!1,default:"150px"},outTopMargin:{type:String,required:!1,default:"40px"},background:{type:String,required:!1,default:"#ffffff"}},emits:["select"],setup(t,{emit:e}){const n=t,o=e,r=i.ref(window.innerWidth),s=i.ref(),a=i.ref(Number(n.tabHeight.replace(/[^+\d]/g,""))),c=()=>{r.value=window.innerWidth,a.value=s.value?s.value.clientHeight:Number(n.tabHeight.replace(/[^+\d]/g,""))};i.onMounted(()=>window.addEventListener("resize",c)),i.onUnmounted(()=>window.removeEventListener("resize",c));const l=i.computed(()=>`calc(100% - ${a.value}px + 1px)`);i.onBeforeMount(()=>{n.menus.Select()});const u=h=>{n.menus.Select(h),o("select")};return(h,f)=>(i.openBlock(),i.createElementBlock("div",{class:"mainblock",style:i.normalizeStyle({height:`calc(100% - ${t.outTopMargin} - ${t.tabHeight}`})},[i.createElementVNode("div",{ref_key:"menuRef",ref:s,class:"top-menu",style:i.normalizeStyle({gridTemplateColumns:`repeat(auto-fit, minmax(${t.minMenuItemWidth}, 1fr))`})},[(i.openBlock(!0),i.createElementBlock(i.Fragment,null,i.renderList(t.menus.items,(m,g)=>(i.openBlock(),i.createElementBlock("div",{key:g},[i.createElementVNode("div",{class:i.normalizeClass({"selected-tab":g===t.menus.idx,tab:g!==t.menus.idx}),style:i.normalizeStyle({minHeight:t.tabHeight,maxHeight:t.tabHeight}),onClick:p=>u(g)},i.toDisplayString(m.name),15,Wc)]))),128))],4),i.createElementVNode("div",{class:"body-container",style:i.normalizeStyle({background:t.background,height:i.unref(l)})},[i.renderSlot(h.$slots,"default",{},()=>[t.menus.idx>-1?(i.openBlock(),i.createBlock(i.resolveDynamicComponent(t.menus.GetComponent()),{key:0})):i.createCommentVNode("",!0)],!0)],4)],4))}}),[["__scopeId","data-v-f631acc5"]]);class Un{static Setup(e){this.staticUrl=e}static get StaticUrl(){return this.staticUrl}}d(Un,"staticUrl","");class Be{constructor(e){d(this,"name","");d(this,"url","");d(this,"src","");d(this,"raw");d(this,"blob");d(this,"file");d(this,"id");d(this,"originalName","");d(this,"fileSystemPath","");T.BuildClass(this,e)}getFileUrl(){const e=this.url?this.url:`${Un.StaticUrl}/${this.fileSystemPath}`;return new URL(e,typeof document>"u"&&typeof location>"u"?require("url").pathToFileURL(__filename).href:typeof document>"u"?location.href:Ee&&Ee.tagName.toUpperCase()==="SCRIPT"&&Ee.src||new URL("sprof.umd.cjs",document.baseURI).href)}getFileListObject(){return{name:this.originalName,url:this.url}}static CreatePreviewFile(e,n){const o=new Be;return o.id=n??ve.UUID(),o.originalName=e.name,o.file=e.blob,o.fileSystemPath=ve.UUID(),o}uploadNewFile(e){this.id||(this.id=ve.UUID()),this.originalName=e.name,this.file=e.blob,this.fileSystemPath=ve.UUID()}setFile(e){this.file=e,this.url=e.src}uploadAndSetFile(e){this.uploadNewFile(e),this.setFile(e),this.url=e.url}clearFile(){this.url="",this.file=void 0,this.fileSystemPath="",this.originalName=""}errorImg(e,n){if(e.target){let o="";return n&&(o=`@/assets/img/${n}`),new URL(o,typeof document>"u"&&typeof location>"u"?require("url").pathToFileURL(__filename).href:typeof document>"u"?location.href:Ee&&Ee.tagName.toUpperCase()==="SCRIPT"&&Ee.src||new URL("sprof.umd.cjs",document.baseURI).href)}}getFileInfos(){return[this]}isPdf(){return this.getExtension(this.originalName)===""}getExtension(e){const n=e.split(".");return n[n.length-1]}}const jc=["id"],Gc=["for"],Zc={class:"left-field"},Xc=["href","download"],Jc={key:1,class:"text-field__input"},Yc={class:"right-field"},Qc=i.defineComponent({__name:"UploaderFile",props:{fileInfo:{type:Object,required:!1,default:new Be},formats:{type:Array,default:()=>["pdf","jpeg","jpg"]},label:{type:String,default:"Label",required:!1},margin:{type:String,required:!1,default:"10px 0 0 0"},disabled:{type:Boolean,required:!1,default:!1},padding:{type:String,default:"",required:!1},mask:{type:String,required:!1,default:void 0},borderColor:{type:String,default:"var(--input-border-color)",required:!1},color:{type:String,default:"var(--input-font-color)",required:!1},placeholder:{type:String,required:!1,default:""}},emits:["upload","remove"],setup(t,{emit:e}){const n=t,o=e,r=S.H.Id.GUID(),s=S.H.Id.GUID(),a=()=>{const u=document.getElementById(r);if(!u.files)return;const h=u.files[0];if(h){if(!l(h.name)){S.UI.Notify.Error("Загруженный файл должен быть в формате pdf, jpg или jpeg");return}n.fileInfo.uploadAndSetFile(h),o("upload",n.fileInfo)}},c=()=>{n.fileInfo.clearFile(),o("remove",n.fileInfo)};i.onMounted(()=>{const u=document.getElementById(s);u&&(u.onclick=()=>{var h;return(h=document.getElementById(r))==null?void 0:h.click()})});const l=u=>{let h=S.H.Extension.Get(u);return!!n.formats.includes(h.toLowerCase())};return(u,h)=>{const f=i.resolveComponent("PString"),m=i.resolveComponent("PFlex"),g=i.resolveComponent("PButton");return i.openBlock(),i.createElementBlock(i.Fragment,null,[i.createElementVNode("input",{id:i.unref(r),type:"file",hidden:"",onChange:a},null,40,jc),i.createElementVNode("div",{class:"text-field",style:i.normalizeStyle({margin:t.margin,padding:t.padding})},[t.label?(i.openBlock(),i.createElementBlock("label",{key:0,class:"text-field__label",for:t.label},i.toDisplayString(t.label),9,Gc)):i.createCommentVNode("",!0),i.createElementVNode("div",{class:"field",style:i.normalizeStyle({borderColor:t.borderColor})},[i.createElementVNode("div",Zc,[i.createVNode(m,null,{default:i.withCtx(()=>[i.renderSlot(u.$slots,"default",{},void 0,!0),i.createVNode(f,{string:t.placeholder,"font-size":"var(--font-size-default:)",color:"var(--input-label-color)",margin:"0 10px 0 0"},null,8,["string"])]),_:3})]),t.fileInfo&&t.fileInfo.originalName?(i.openBlock(),i.createElementBlock("div",{key:0,class:"text-field__input",style:i.normalizeStyle({color:t.color})},[i.createElementVNode("a",{href:t.fileInfo.getFileUrl(),target:"_blank",download:t.fileInfo.originalName},[i.createElementVNode("div",null,i.toDisplayString(t.fileInfo.originalName),1)],8,Xc),i.createVNode(g,{skin:"text",type:"del",onClick:c},{default:i.withCtx(()=>[i.createVNode(Ft,{size:"20px",margin:"0 5px"})]),_:1})],4)):(i.openBlock(),i.createElementBlock("div",Jc,[i.createVNode(f,{string:"Файл не загружен","font-size":"var(--inpur-font-size-default)",color:"var(--palette-warning)",margin:"0 10px 0 0"})])),i.createElementVNode("div",Yc,[i.createVNode(g,{id:i.unref(s),skin:"text",type:"success","data-test":"upload-btn",text:t.fileInfo&&t.fileInfo.originalName?"Обновить":"Загрузить",margin:"0"},null,8,["id","text"])])],4)],4)],64)}}}),Cr=x(Qc,[["__scopeId","data-v-cacad4ae"]]),Kc={class:"bg"},_n=x(i.defineComponent({__name:"AuthPage",setup(t){const e=()=>{S.Auth.Form.IsLogin()&&S.H.Router.ToHome()};return(n,o)=>{const r=i.resolveComponent("AuthForm");return i.openBlock(),i.createElementBlock("div",Kc,[i.createVNode(r,{width:"760px",margin:"0 auto",onAction:e})])}}}),[["__scopeId","data-v-c3e2f5bc"]]),ed={},td={style:{"text-align":"center"}};function nd(t,e){return i.openBlock(),i.createElementBlock("div",td,e[0]||(e[0]=[i.createElementVNode("h1",null,"Страница не найдена",-1)]))}const Wn=x(ed,[["render",nd]]),id={class:"container"},od={key:0,class:"result"},rd={class:"list"},sd=["onClick"],Sr=x(i.defineComponent({inheritAttrs:!1,__name:"PAutocomplete",props:{modelValue:{type:String,default:""},searchFunc:{type:Function,default:()=>{}},suggestions:{type:Array,default:[]}},emits:["select","input"],setup(t,{emit:e}){const n=e,o=t,r=i.ref(o.modelValue),s=i.ref([]);async function a(){n("input",r.value),await c()}async function c(){o.searchFunc&&(s.value=await o.searchFunc(r.value))}async function l(u){n("select",u)}return(u,h)=>{const f=i.resolveComponent("IconSearch"),m=i.resolveComponent("PInput");return i.openBlock(),i.createElementBlock("div",id,[i.createVNode(m,{modelValue:i.unref(r),"onUpdate:modelValue":h[0]||(h[0]=g=>i.isRef(r)?r.value=g:null),placeholder:"Найти",onInput:a},{right:i.withCtx(()=>[i.createVNode(f)]),_:1},8,["modelValue"]),i.unref(r)?(i.openBlock(),i.createElementBlock("div",od,[i.createElementVNode("ul",rd,[(i.openBlock(!0),i.createElementBlock(i.Fragment,null,i.renderList(i.unref(s),g=>(i.openBlock(),i.createElementBlock("li",{key:g.value,onClick:p=>l(g)},i.toDisplayString(g.label),9,sd))),128))])])):i.createCommentVNode("",!0)])}}}),[["__scopeId","data-v-67b698bb"]]),ad={class:"footer"},kr=x(i.defineComponent({__name:"PDialog",setup(t){const e=i.computed(()=>{switch(S.UI.Dialog.GetType()){case"info":return"message primary";case"success":return"message success";case"warning":return"message warning";case"error":return"message danger";default:return"message neutral"}});return(n,o)=>{const r=i.resolveComponent("MessageBody"),s=i.resolveComponent("PButton");return i.openBlock(),i.createBlock(i.Transition,{name:"fade"},{default:i.withCtx(()=>[("PF"in n?n.PF:i.unref(S)).UI.Dialog.IsVisible()?(i.openBlock(),i.createElementBlock("div",{key:0,class:i.normalizeClass(i.unref(e))},[i.createVNode(r,{title:("PF"in n?n.PF:i.unref(S)).UI.Dialog.GetTitle(),text:("PF"in n?n.PF:i.unref(S)).UI.Dialog.GetText()},null,8,["title","text"]),i.createElementVNode("div",ad,[i.createVNode(s,{type:"primary",text:("PF"in n?n.PF:i.unref(S)).UI.Dialog.GetConfirmButtonText(),margin:"10px 0 0 0",onClick:o[0]||(o[0]=a=>("PF"in n?n.PF:i.unref(S)).UI.Dialog.Submit())},null,8,["text"]),i.createVNode(s,{type:"warning",text:("PF"in n?n.PF:i.unref(S)).UI.Dialog.GetCancelButtonText(),margin:"10px 0 0 0",onClick:o[1]||(o[1]=a=>("PF"in n?n.PF:i.unref(S)).UI.Dialog.Cancel())},null,8,["text"])])],2)):i.createCommentVNode("",!0)]),_:1})}}}),[["__scopeId","data-v-bf4d379c"]]),Er=x(i.defineComponent({__name:"PhoneForm",props:{modelValue:{},modelModifiers:{}},emits:["update:modelValue"],setup(t){const e=i.useModel(t,"modelValue"),n=async()=>{await S.S.Phones.Update(e.value)};return(o,r)=>{const s=i.resolveComponent("PInput");return i.openBlock(),i.createElementBlock(i.Fragment,null,[i.createVNode(s,{modelValue:e.value.number,"onUpdate:modelValue":r[0]||(r[0]=a=>e.value.number=a),onBlur:n},null,8,["modelValue"]),i.createVNode(s,{modelValue:e.value.description,"onUpdate:modelValue":r[1]||(r[1]=a=>e.value.description=a),onBlur:n},null,8,["modelValue"])],64)}}}),[["__scopeId","data-v-f801a76e"]]),ld={};function cd(t,e){return i.openBlock(),i.createElementBlock(i.Fragment,null,[e[0]||(e[0]=i.createElementVNode("div",{class:"blur"},null,-1)),e[1]||(e[1]=i.createElementVNode("div",{class:"loader-container"},[i.createElementVNode("div",{class:"loader",style:{"--b":"20px",width:"200px","--n":"10"}})],-1))],64)}const vr=x(ld,[["render",cd],["__scopeId","data-v-0f1f2f84"]]),xr=x(i.defineComponent({__name:"PNotification",setup(t){const e=i.computed(()=>{switch(S.UI.Notify.GetType()){case"info":return"message info";case"success":return"message success";case"warning":return"message warning";case"error":return"message error";default:return"message neutral"}});return(n,o)=>{const r=i.resolveComponent("MessageBody");return i.openBlock(),i.createBlock(i.Transition,{name:"fade"},{default:i.withCtx(()=>[("PF"in n?n.PF:i.unref(S)).UI.Notify.IsVisible()?(i.openBlock(),i.createElementBlock("div",{key:0,class:i.normalizeClass(i.unref(e))},[i.createVNode(r,{title:("PF"in n?n.PF:i.unref(S)).UI.Notify.GetTitle(),text:("PF"in n?n.PF:i.unref(S)).UI.Notify.GetText()},null,8,["title","text"])],2)):i.createCommentVNode("",!0)]),_:1})}}}),[["__scopeId","data-v-6d245bd5"]]),dd={style:{display:"flex","justify-content":"center",width:"100%"}},ud={class:"pag-number"},hd={class:"pag-ul"},fd={key:2},Br=x(i.defineComponent({__name:"PPagination",props:{showConfirm:{type:Boolean,default:!1},justifyContent:{type:String,default:"center"},store:{type:Object,required:!0}},emits:["cancel","save"],setup(t,{emit:e}){const n=t,o=g=>g?"active":"neutral",r=g=>g?"not-active":"neutral",s=S.Paginator,a=i.ref(!1),c=i.ref(!1),l=e;s.count=n.store.Count.value;const u=async g=>{if(g!==s.curPage){if(g<1&&(g=1),g>s.pagesCount()&&(g=s.pagesCount()),!n.showConfirm)return await h(g);S.UI.Dialog.Save().then(async()=>{l("save"),await h(g)}).catch(async()=>{S.UI.Notify.Warning("Изменения не были сохранены"),l("cancel"),await h(g)})}},h=async(g,p)=>{s.setCurPage(g),S.H.FTSP.Get().p.offset=(g-1)*s.limit,await n.store.FTSP(),m()},f=i.computed(()=>{const g=s.pagesCount();return g<8?S.H.Arrays.GenerateNumsRange(2,g-1).filter(p=>p<g&&p>1):S.H.Arrays.GenerateNumsRange(s.curPage-2,s.curPage+3).filter(p=>p<g&&p>1)}),m=()=>{const g=document.querySelector(".el-table__body-wrapper"),p=document.querySelector("#list");g?g.scrollTo({top:0}):p&&p.scrollTo({top:0})};return i.onBeforeUnmount(()=>{S.H.FTSP.Get().p.drop()}),(g,p)=>{const E=i.resolveComponent("ArrowLeft"),w=i.resolveComponent("PButton"),M=i.resolveComponent("DoubleArrowLeft"),O=i.resolveComponent("EllipsisSvg"),L=i.resolveComponent("DoubleArrowRight"),F=i.resolveComponent("ArrowRight");return i.openBlock(),i.createElementBlock("div",dd,[i.createElementVNode("div",{class:"pag-container",style:i.normalizeStyle({justifyContent:t.justifyContent})},[i.createElementVNode("div",ud,[i.createVNode(w,{skin:"pag",type:r(i.unref(s).curPage===1),onClick:p[0]||(p[0]=z=>u(i.unref(s).curPage-1))},{default:i.withCtx(()=>[i.createVNode(E)]),_:1},8,["type"]),i.createElementVNode("ul",hd,[i.createElementVNode("li",null,[i.createVNode(w,{skin:"pag",type:o(i.unref(s).curPage===1),text:"1",onClick:p[1]||(p[1]=z=>u(1))},null,8,["type"])]),i.unref(s).pagesCount()>8&&i.unref(s).curPage>4?(i.openBlock(),i.createElementBlock("li",{key:0,onMouseenter:p[3]||(p[3]=z=>a.value=!0),onMouseleave:p[4]||(p[4]=z=>a.value=!1)},[i.createVNode(w,{skin:"pag",type:"neutral",onClick:p[2]||(p[2]=z=>u(i.unref(s).curPage-5))},{default:i.withCtx(()=>[i.unref(a)?(i.openBlock(),i.createBlock(M,{key:0})):(i.openBlock(),i.createBlock(O,{key:1}))]),_:1})],32)):i.createCommentVNode("",!0),(i.openBlock(!0),i.createElementBlock(i.Fragment,null,i.renderList(i.unref(f),z=>(i.openBlock(),i.createElementBlock("li",{key:z},[i.createVNode(w,{skin:"pag",type:o(z===i.unref(s).curPage),text:z,onClick:we=>u(z)},null,8,["type","text","onClick"])]))),128)),i.unref(s).pagesCount()>=8&&i.unref(s).curPage<i.unref(s).pagesCount()-3?(i.openBlock(),i.createElementBlock("li",{key:1,onMouseenter:p[6]||(p[6]=z=>c.value=!0),onMouseleave:p[7]||(p[7]=z=>c.value=!1)},[i.createVNode(w,{skin:"pag",type:"neutral",onClick:p[5]||(p[5]=z=>u(i.unref(s).curPage+5))},{default:i.withCtx(()=>[i.unref(c)?(i.openBlock(),i.createBlock(L,{key:0})):(i.openBlock(),i.createBlock(O,{key:1}))]),_:1})],32)):i.createCommentVNode("",!0),i.unref(s).pagesCount()>1?(i.openBlock(),i.createElementBlock("li",fd,[i.createVNode(w,{skin:"pag",type:o(i.unref(s).pagesCount()===i.unref(s).curPage),text:i.unref(s).pagesCount(),onClick:p[8]||(p[8]=z=>u(i.unref(s).pagesCount()))},null,8,["type","text"])])):i.createCommentVNode("",!0)]),i.createVNode(w,{skin:"pag",type:r(i.unref(s).curPage===i.unref(s).pagesCount()),onClick:p[9]||(p[9]=z=>u(i.unref(s).curPage+1))},{default:i.withCtx(()=>[i.createVNode(F)]),_:1},8,["type"])])],4)])}}}),[["__scopeId","data-v-5c7e3a5d"]]),Mr=x(i.defineComponent({__name:"RemoteSearch",props:{keyValue:{type:String,default:""},modelValue:{type:String,default:""},storeModule:{type:String,default:""},placeholder:{type:String,default:"Начните вводить запрос"},showSuggestions:{type:Boolean,default:!0},maxWidth:{type:[Number,String],default:350},focus:{type:Boolean,default:!1}},emits:["select","load","input"],setup(t,{emit:e}){const n=t,o=e,r=i.ref(n.modelValue),s=i.ref(),a=S.S.Search.SearchModel();i.watch(()=>n.focus,()=>{n.focus&&setTimeout(()=>{s.value.focus(),r.value=""},500)});const c=async h=>{if(h.length<2)return;s.value.activated=!0,a.searchObjects=[],a.query=h,a.key=n.keyValue;const f=a.searchGroups.find(m=>m.key===n.keyValue);return f&&(a.searchGroup=f),await S.S.Search.Search(a),a.searchObjects},l=async h=>{o("select",h),r.value=""},u=h=>{o("input",h),h.length===0&&o("input","")};return(h,f)=>{const m=i.resolveComponent("PAutocomplete");return i.openBlock(),i.createBlock(m,{ref_key:"searchForm",ref:s,modelValue:i.unref(r),"onUpdate:modelValue":f[0]||(f[0]=g=>i.isRef(r)?r.value=g:null),"value-key":"label",style:{width:"100%","margin-right":"10px"},placeholder:t.placeholder,"search-func":c,"trigger-on-focus":t.showSuggestions,suggestions:i.unref(a).searchObjects,onSelect:l,onInput:u},{suffix:i.withCtx(()=>f[1]||(f[1]=[i.createElementVNode("i",{class:"el-icon-search"},null,-1)])),_:1},8,["modelValue","placeholder","trigger-on-focus","suggestions"])}}}),[["__scopeId","data-v-d3138f3a"]]),md={class:"mainblock-body"},pd={class:"mainblock-footer"},Ir=x(i.defineComponent({__name:"ResearcheContainer",props:{background:{type:String,required:!1,default:"inherit"},padding:{type:String,required:!1,default:"0px 10px"}},setup(t){return(e,n)=>(i.openBlock(),i.createElementBlock("div",{class:"mainblock",style:i.normalizeStyle({background:t.background,padding:t.padding})},[i.createElementVNode("div",{class:"mainblock-header",style:i.normalizeStyle({background:t.background})},[i.renderSlot(e.$slots,"header",{},void 0,!0)],4),i.createElementVNode("div",md,[i.renderSlot(e.$slots,"body",{},void 0,!0)]),i.createElementVNode("div",pd,[i.renderSlot(e.$slots,"footer",{},void 0,!0)])],4))}}),[["__scopeId","data-v-367c3367"]]),gd={class:"right-slider-content"},yd={class:"right-slider-content-header"},wd={class:"right-slider-content-box"},bd={class:"right-slider-button"},Rr=x(i.defineComponent({__name:"RightSliderContainer",props:{sliderOffWidth:{type:String,required:!1,default:"30px"},sliderOnWidth:{type:String,required:!1,default:"260px"},background:{type:String,required:!1,default:"inherit"},toggle:{type:Boolean,default:!1},titleOpen:{type:String,required:!1,default:"Скрыть список исследований"},titleClose:{type:String,required:!1,default:"Показать список исследований"}},emits:["toggle"],setup(t,{emit:e}){const n=t,o=e,r=i.ref(!1);i.watch(()=>n.toggle,()=>{r.value=!r.value});const s=a=>{r.value=!r.value,o("toggle",a)};return(a,c)=>{const l=i.resolveComponent("PString");return i.openBlock(),i.createElementBlock("div",{class:"right-slider",style:i.normalizeStyle({marginRight:i.unref(r)?`calc(${t.sliderOffWidth} - ${t.sliderOnWidth})`:"0",width:t.sliderOnWidth})},[i.createElementVNode("div",{class:"click-line",onClick:c[0]||(c[0]=u=>s(!i.unref(r)))},[i.unref(r)?(i.openBlock(),i.createBlock(l,{key:0,string:t.titleClose,"font-size":"16px",padding:"0",color:"#343E5C"},null,8,["string"])):i.createCommentVNode("",!0),i.unref(r)?i.createCommentVNode("",!0):(i.openBlock(),i.createBlock(l,{key:1,string:t.titleOpen,"font-size":"16px",padding:"0",color:"#343E5C"},null,8,["string"]))]),i.createElementVNode("div",gd,[i.createElementVNode("div",yd,[i.renderSlot(a.$slots,"header",{},void 0,!0)]),i.createElementVNode("div",wd,[i.renderSlot(a.$slots,"default",{},void 0,!0)])]),i.createElementVNode("div",bd,[i.renderSlot(a.$slots,"button",{},void 0,!0)])],4)}}}),[["__scopeId","data-v-262b1c53"]]),Cd={class:"mainblock"},Sd={class:"body-block"},kd={class:"tab-block"},$r=x(i.defineComponent({__name:"RightTabsContainer",props:{sliderOffWidth:{type:String,required:!1,default:"101px"},sliderOnWidth:{type:String,required:!1,default:"332px"},background:{type:String,required:!1,default:"inherit"},isToggle:{type:Boolean,required:!1,default:!1},mobileWidth:{type:String,required:!1,default:"768px"}},emits:["toggle"],setup(t,{emit:e}){const n=t,o=e,r=i.ref(!1),s=i.ref(window.matchMedia("(max-width: 768px)").matches),a=l=>{o("toggle",l)},c=i.ref(!1);return i.onBeforeMount(async()=>{window.addEventListener("resize",()=>{switch(n.mobileWidth){case"1330px":return s.value=window.matchMedia("(max-width: 1330px)").matches;case"1215px":return s.value=window.matchMedia("(max-width: 1215px)").matches;case"1024px":return s.value=window.matchMedia("(max-width: 1024px)").matches;case"768px":return s.value=window.matchMedia("(max-width: 768px)").matches}return s.value=window.matchMedia("(max-width: 1330px)").matches}),r.value=!0}),(l,u)=>(i.openBlock(),i.createElementBlock("div",Cd,[i.createElementVNode("div",{class:"slider-block",style:i.normalizeStyle({marginRight:i.unref(s)?t.isToggle?"49px":`calc(49px - ${t.sliderOnWidth})`:t.isToggle?t.sliderOffWidth:`calc(${t.sliderOffWidth} - ${t.sliderOnWidth})`,width:t.sliderOnWidth,minHeight:t.sliderOffWidth,height:t.isToggle?"auto":"100px"})},[i.createElementVNode("div",{class:"slider-icon",style:i.normalizeStyle({border:t.isToggle?"1px solid #379FFF":"1px solid #00B5A4",background:t.isToggle?"#ffffff":"#C7ECEA"}),onClick:u[0]||(u[0]=h=>a(!t.isToggle)),onMouseenter:u[1]||(u[1]=h=>c.value=!0),onMouseleave:u[2]||(u[2]=h=>c.value=!1)},[i.createElementVNode("div",{class:"icon-block",style:i.normalizeStyle({transform:i.unref(c)?t.isToggle?"rotate(-225deg) scale(1.2, 1.2)":"rotate(0deg) scale(1.2, 1.2)":t.isToggle?"rotate(-225deg)":"rotate(0deg)",fill:t.isToggle?"#379FFF":"#00B5A4"})},[i.renderSlot(l.$slots,"icon",{},void 0,!0)],4)],36),i.createElementVNode("div",{class:"slider-info",style:i.normalizeStyle({width:`calc(${t.sliderOnWidth} - ${t.sliderOffWidth})`})},[i.renderSlot(l.$slots,"slider-body",{},void 0,!0)],4)],4),i.createElementVNode("div",Sd,[i.renderSlot(l.$slots,"body",{},void 0,!0)]),i.createElementVNode("div",kd,[i.renderSlot(l.$slots,"tabs",{},void 0,!0)])]))}}),[["__scopeId","data-v-0cfd77ce"]]);var ue=(t=>(t.String="string",t.Text="text",t.Number="number",t.Date="date",t.DateTime="dateTime",t.Radio="radio",t.Set="set",t.Boolean="boolean",t.Files="files",t.File="file",t.MatrixRadio="matrixRadio",t.MatrixSet="matrixSet",t))(ue||{});const Ed=["label","value"],Ar=x(i.defineComponent({__name:"SelectValueType",props:{selectedType:{type:String,required:!0}},emits:["select"],setup(t,{emit:e}){const n={[ue.String]:"Текстовый ответ",[ue.Text]:"Развёрнутый текстовый ответ",[ue.Number]:"Числовой ответ",[ue.Date]:"Ответ в виде даты",[ue.Radio]:"Выбор одного из вариантов",[ue.Set]:"Выбор нескольких вариантов",[ue.File]:"Ответ в виде файла",[ue.MatrixRadio]:"Матрица с одним выбором",[ue.MatrixSet]:"Матрица с несколькими выборами"},o=e,r=s=>{o("select",s)};return(s,a)=>{const c=i.resolveComponent("PString"),l=i.resolveComponent("PSelect");return i.openBlock(),i.createElementBlock(i.Fragment,null,[i.createVNode(c,{string:"Выберите вид ответа:","font-size":"14px",padding:"0","justify-content":"left",margin:"10px 0"}),i.createVNode(l,{"model-value":t.selectedType,placeholder:"Вид ответа",onChange:r},{default:i.withCtx(()=>[(i.openBlock(),i.createElementBlock(i.Fragment,null,i.renderList(n,(u,h)=>i.createElementVNode("option",{key:u,label:u,value:h},null,8,Ed)),64))]),_:1},8,["model-value"])],64)}}}),[["__scopeId","data-v-36a59e2b"]]),vd={class:"field"},Nr=x(i.defineComponent({__name:"SingleNameToggleForm",props:{withName:{type:Object,required:!0}},emits:["submit"],setup(t,{emit:e}){const n=t,o=e,r=i.ref(!1),s=i.ref(),a=i.ref(n.withName.name),c=i.ref(!1),l=()=>{c.value=!1},u=async()=>{a.value.trim(),n.withName.setName&&n.withName.setName(a.value),r.value=!r.value,o("submit")};return(h,f)=>{const m=i.resolveComponent("PString"),g=i.resolveComponent("el-input"),p=i.resolveComponent("el-form-item"),E=i.resolveComponent("el-form"),w=i.resolveComponent("PButton");return i.openBlock(),i.createBlock(E,{ref_key:"form",ref:s,style:{width:"100%"}},{default:i.withCtx(()=>[i.createVNode(Zt,{title:"Название","show-save-dialog":c.value,icon:"edit-title","with-hover":!0,close:r.value,width:"100%",onKeyupEnter:u,onAfterClose:l},{"open-inside-content":i.withCtx(()=>[i.createVNode(Zt,{title:"",icon:"edit-title","with-open-window":!1,"with-hover":!1,"border-color":"#ffffff","base-box-margin":"0 0 15px 0",padding:"0",width:"100%","custom-class":"test","open-width":"100%"},{default:i.withCtx(()=>[i.createElementVNode("div",vd,[i.createVNode(E,null,{default:i.withCtx(()=>[i.createVNode(p,{style:{width:"100%"},prop:"surname"},{default:i.withCtx(()=>[i.createVNode(g,{modelValue:a.value,"onUpdate:modelValue":f[0]||(f[0]=M=>a.value=M),style:{width:"100%"},autosize:!0,type:"textarea"},null,8,["modelValue"])]),_:1})]),_:1})])]),_:1}),i.createVNode(w,{type:"admin",color:"blue",text:"Сохранить",onClick:u})]),default:i.withCtx(()=>[a.value.length?(i.openBlock(),i.createBlock(m,{key:0,string:a.value.length>60?a.value.slice(0,60)+"...":a.value},null,8,["string"])):(i.openBlock(),i.createBlock(m,{key:1,string:"Введите данные",color:"#B0A4C0"}))]),_:1},8,["show-save-dialog","close"])]),_:1},512)}}}),[["__scopeId","data-v-cc488c49"]]);var Me=(t=>(t.Asc="asc",t.Desc="desc",t))(Me||{});function Pr(t,e){const n=[],o=e||Me.Asc,r=o===Me.Asc?Me.Desc:Me.Asc;return Object.values(t).forEach(s=>{n.push(s(o)),n.push(s(r))}),n.length>0&&!n.some(s=>s.default)&&(n[0].default=!0),e&&n.forEach(s=>{s.default&&(s.default=s.order===e)}),n}class xd{constructor(){d(this,"list",[]);d(this,"defaultSortModel");d(this,"changeFlag",!1)}Set(e){this.Reset(),e&&(Array.isArray(e)?this.list=e:this.list=Pr(e),this.SetDefault())}SetDefault(){this.defaultSortModel=this.list.find(e=>e.default)??this.list[0],this.changeFlag=!this.changeFlag}Get(){return this.list}GetDefault(){return this.defaultSortModel}Reset(){this.list=[],this.defaultSortModel=void 0}}const ze=new xd,Bd=["label","value"],zr=x(i.defineComponent({__name:"SortList",props:{maxWidth:{type:[Number,String],default:250}},emits:["load"],setup(t,{emit:e}){const n=i.ref(!1),o=e,r=i.ref();i.onBeforeMount(()=>{n.value=!0,r.value=ze.GetDefault(),S.H.FTSP.Get().setSortModel(r.value)});const s=async c=>{r.value=c??ze.GetDefault(),S.H.FTSP.Get().setSortModel(r.value),S.H.FTSP.Get().p.drop(),o("load")},a=async c=>{S.H.FTSP.Get().p.drop(),await s(c)};return(c,l)=>{var h;const u=i.resolveComponent("PSelect");return i.unref(n)?(i.openBlock(),i.createBlock(u,{key:0,modelValue:i.unref(r),"onUpdate:modelValue":l[0]||(l[0]=f=>i.isRef(r)?r.value=f:null),"popper-append-to-body":!1,clearable:!((h=i.unref(r))!=null&&h.default),"value-key":"label",onChange:a,onClear:l[1]||(l[1]=f=>a())},{default:i.withCtx(()=>[(i.openBlock(!0),i.createElementBlock(i.Fragment,null,i.renderList(i.unref(ze).Get(),(f,m)=>(i.openBlock(),i.createElementBlock("option",{key:m,label:f.label,value:f},null,8,Bd))),128))]),_:1},8,["modelValue","clearable"])):i.createCommentVNode("",!0)}}}),[["__scopeId","data-v-09845b7b"]]),Md=["label","value"],Vr=x(i.defineComponent({__name:"SortSelect",props:{maxWidth:{type:[Number,String],default:250}},emits:["load"],setup(t,{emit:e}){const n=e,o=i.ref();i.onBeforeMount(()=>{o.value=ze.GetDefault()});const r=async a=>{a||(o.value=ze.GetDefault()),S.H.FTSP.Get().setSortModel(o.value),S.H.FTSP.Get().p.drop(),n("load")},s=async a=>{await r(a)};return(a,c)=>{var u;const l=i.resolveComponent("PSelect");return i.openBlock(),i.createBlock(l,{modelValue:i.unref(o),"onUpdate:modelValue":c[0]||(c[0]=h=>i.isRef(o)?o.value=h:null),"popper-append-to-body":!1,clearable:!((u=i.unref(o))!=null&&u.default),"value-key":"label",onChange:s},{default:i.withCtx(()=>[(i.openBlock(!0),i.createElementBlock(i.Fragment,null,i.renderList(i.unref(ze).Get(),(h,f)=>(i.openBlock(),i.createElementBlock("option",{key:f,label:h.label,value:h},null,8,Md))),128))]),_:1},8,["modelValue","clearable"])}}}),[["__scopeId","data-v-a1820654"]]),Id={class:"switch-container"},Rd={class:"line"},$d={class:"line"},Tr=x(i.defineComponent({__name:"Switch3Pos",props:{firstModel:{type:Object,required:!0},secondModel:{type:Object,required:!0},defaultLabel:{type:String,default:"Все"}},emits:["load"],setup(t,{emit:e}){const n=t,o={background:"inherit",border:"1px solid #c4c4c4"},r=()=>n.firstModel.valueEq(u.value)?void 0:o,s=()=>u.value?o:void 0,a=()=>n.secondModel.valueEq(u.value)?void 0:o,c=f=>{var g;return{color:(g=u.value)!=null&&g.valueEq(f)?"#006bb4":"#B0A4C0"}},l=e,u=i.ref(void 0),h=async f=>{var m;(m=u.value)!=null&&m.valueEq(f)||(S.H.FTSP.Get().replaceF(f,u.value),u.value=f,l("load"))};return(f,m)=>{const g=i.resolveComponent("PString");return i.openBlock(),i.createElementBlock("div",Id,[i.createElementVNode("div",Rd,[i.createVNode(g,{string:t.firstModel.label,"font-size":"12px",padding:"0",style:i.normalizeStyle(c(t.firstModel)),onClick:m[0]||(m[0]=p=>h(t.firstModel))},null,8,["string","style"]),i.createVNode(g,{string:"Все","font-size":"12px",padding:"0",style:i.normalizeStyle(c()),onClick:m[1]||(m[1]=p=>h())},null,8,["style"]),i.createVNode(g,{string:t.secondModel.label,"font-size":"12px",padding:"0",style:i.normalizeStyle(c(t.secondModel)),onClick:m[2]||(m[2]=p=>h(t.secondModel))},null,8,["string","style"])]),i.createElementVNode("div",$d,[i.createElementVNode("div",{class:i.normalizeClass(["switch-knob1",{active:t.firstModel.valueEq(i.unref(u))}]),style:i.normalizeStyle(r()),onClick:m[3]||(m[3]=p=>h(t.firstModel))},null,6),i.createElementVNode("div",{class:i.normalizeClass(["switch-knob2",{active:!i.unref(u)}]),style:i.normalizeStyle(s()),onClick:m[4]||(m[4]=p=>h())},null,6),i.createElementVNode("div",{class:i.normalizeClass(["switch-knob3",{active:t.secondModel.valueEq(i.unref(u))}]),style:i.normalizeStyle(a()),onClick:m[5]||(m[5]=p=>h(t.secondModel))},null,6),m[6]||(m[6]=i.createElementVNode("div",{class:"switch-axis"},null,-1)),m[7]||(m[7]=i.createElementVNode("div",{class:"switch-axis-dash1"},null,-1)),m[8]||(m[8]=i.createElementVNode("div",{class:"switch-axis-dash2"},null,-1)),m[9]||(m[9]=i.createElementVNode("div",{class:"switch-axis-dash3"},null,-1))])])}}}),[["__scopeId","data-v-78475d54"]]),Ad={},Nd={class:"flex"};function Pd(t,e){return i.openBlock(),i.createElementBlock("div",Nd,[i.renderSlot(t.$slots,"default",{},void 0,!0)])}const Fr=x(Ad,[["render",Pd],["__scopeId","data-v-5023d414"]]),Dr=x(i.defineComponent({__name:"ToggleInfoItem",props:{title:{type:String,required:!0},content:{type:String,required:!0}},emits:["submit"],setup(t,{emit:e}){const n=i.ref(!1),o=e,r=async()=>{o("submit"),n.value=!n.value};return(s,a)=>{const c=i.resolveComponent("PString"),l=i.resolveComponent("PButton"),u=i.resolveComponent("GridContainer"),h=i.resolveComponent("InfoItem");return i.openBlock(),i.createBlock(h,{title:t.title,icon:"edit-title","with-hover":!0,close:i.unref(n),width:"100%",onKeyupEnter:r},{"open-inside-content":i.withCtx(()=>[i.createVNode(u,{"custom-class":"grid"},{default:i.withCtx(()=>[i.renderSlot(s.$slots,"default",{},void 0,!0),i.createVNode(l,{type:"admin",color:"blue",text:"Сохранить",onClick:r})]),_:3})]),default:i.withCtx(()=>[t.content.length>0?(i.openBlock(),i.createBlock(c,{key:0,string:t.content},null,8,["string"])):(i.openBlock(),i.createBlock(c,{key:1,string:"Введите данные",color:"#B0A4C0"}))]),_:3},8,["title","close"])}}}),[["__scopeId","data-v-0794596f"]]),zd={class:"top-slider-content"},Vd={class:"center"},Or=x(i.defineComponent({__name:"TopSliderContainer",props:{sliderOffHeight:{type:String,required:!1,default:"53px"},sliderOnHeight:{type:String,required:!1,default:"220px"},background:{type:String,required:!1,default:"inherit"},toggle:{type:Boolean,default:!1}},emits:["toggle"],setup(t,{emit:e}){const n=t,o=e,r=i.ref(!0);i.watch(()=>n.toggle,()=>{r.value=!r.value});const s=a=>{r.value=!r.value,o("toggle",a)};return(a,c)=>(i.openBlock(),i.createElementBlock(i.Fragment,null,[i.unref(r)?i.createCommentVNode("",!0):(i.openBlock(),i.createElementBlock("div",{key:0,class:"blur",onClick:[c[0]||(c[0]=i.withModifiers(l=>r.value=!0,["prevent"])),c[1]||(c[1]=i.withModifiers(()=>{},["stop"]))]})),i.createElementVNode("div",{class:"top-slider",style:i.normalizeStyle({marginTop:i.unref(r)?`calc(${t.sliderOffHeight} - ${t.sliderOnHeight})`:"0",height:t.sliderOnHeight}),onClick:c[3]||(c[3]=i.withModifiers(()=>{},["stop"]))},[i.createElementVNode("div",zd,[i.createElementVNode("div",Vd,[i.renderSlot(a.$slots,"default",{},void 0,!0)])]),i.createElementVNode("div",{class:"click-line",style:i.normalizeStyle({height:t.sliderOffHeight}),onClick:c[2]||(c[2]=l=>s(!i.unref(r)))},[i.renderSlot(a.$slots,"title",{},void 0,!0)],4)],4)],64))}}),[["__scopeId","data-v-683131f5"]]);class Xt{constructor(e){d(this,"id");d(this,"ratio",0);d(this,"src","");d(this,"store","");T.BuildClass(this,e)}static CreateCropper(e,n,o){const r=new Xt;return r.src=e,r.id=o,n&&(r.ratio=n),r}}const Td={id:"drop-area",class:"img-container"},Fd={key:0},Dd=["src"],Od={class:"tools-button"},Ld={class:"ins"},Hd={key:1},qd=["id"],Lr=x(i.defineComponent({__name:"UploaderImage",props:{withCrop:{type:Boolean,default:!0},fileInfo:{type:Be,required:!0},height:{type:Number,default:150},width:{type:Number,default:150},cropRatio:{type:Boolean,default:!0},emitCrop:{type:Boolean,default:!1},defaultRatio:{type:Number,required:!1,default:1}},emits:["crop","removeFile"],setup(t,{emit:e}){const n=t,o=e,r=i.ref(void 0),s=S.H.Id.GUID(),a=i.ref(!1),c=i.ref(),l=w=>{const M=n.cropRatio?n.defaultRatio:0;S.S.Cropper.Open(Xt.CreateCropper(w.url,M,n.fileInfo.id)),a.value=!0},u=()=>{S.UI.Dialog.Show({text:"Вы хотите удалить изображение",confirmButtonText:"Удалить",cancelButtonText:"Не удалять"}).then(()=>{r.value=void 0,c.value.clearFiles(),o("removeFile")})},h=w=>{n.fileInfo.setFile(w),n.fileInfo.fileSystemPath&&(r.value=n.fileInfo),a.value=!1,o("crop")};i.onBeforeMount(()=>{n.fileInfo.fileSystemPath&&(r.value=n.fileInfo,r.value.url=n.fileInfo.getFileUrl())});let f=null;i.onMounted(()=>{const w=document.getElementById("drop-area");w&&(w.addEventListener("dragover",M=>{m(M),w.classList.add("drag-over")}),w.addEventListener("dragleave",M=>{m(M),w.classList.remove("drag-over")}),w.addEventListener("dragenter",m),w.addEventListener("dragleave",m),w.addEventListener("drop",p),f=document.getElementById(s))});function m(w){w.preventDefault(),w.stopPropagation()}const g=()=>{f&&f.click()};function p(w){if(w.preventDefault(),!w.dataTransfer)return;const M=w.dataTransfer.files;M.length&&f&&(f.files=M,E())}const E=()=>{if(!f||!f.files||!f.files.length)return;const w=f.files[0];w.url=URL.createObjectURL(w),r.value=w,n.fileInfo.uploadNewFile(w),l(r.value)};return(w,M)=>{const O=i.resolveComponent("PButton"),L=i.resolveComponent("ImageCropper");return i.openBlock(),i.createElementBlock(i.Fragment,null,[i.createElementVNode("div",Td,[i.unref(r)?(i.openBlock(),i.createElementBlock("div",Fd,[i.createElementVNode("div",{class:"img-block",style:i.normalizeStyle({width:t.height*t.defaultRatio-2+"px",height:t.height+"px"})},[i.createElementVNode("img",{class:"el-upload-list__item-thumbnail",src:i.unref(r).url,alt:"upload-image"},null,8,Dd)],4),i.createElementVNode("div",Od,[i.createElementVNode("div",Ld,[i.createVNode(O,{skin:"text",text:"Изменить","font-size":"20px",width:"300px",margin:"100px 0 0 0",onClick:M[0]||(M[0]=F=>l(i.unref(r)))}),i.createVNode(O,{skin:"text",text:"Удалить","font-size":"20px",width:"300px",margin:"50px 0 0 0",onClick:M[1]||(M[1]=F=>u())})])])])):(i.openBlock(),i.createElementBlock("div",Hd,[i.createElementVNode("div",{class:"add-button",style:i.normalizeStyle({width:t.height*t.defaultRatio-2+"px",height:t.height+"px"})},[i.createVNode(O,{skin:"text",text:"Добавить","font-size":"20px",onClick:g})],4)]))]),i.createElementVNode("input",{id:i.unref(s),type:"file",hidden:"",onChange:E},null,40,qd),t.withCrop?(i.openBlock(),i.createBlock(L,{key:0,open:i.unref(a),"default-ratio":t.defaultRatio,onCrop:h,onClose:M[2]||(M[2]=F=>a.value=!1)},null,8,["open","default-ratio"])):i.createCommentVNode("",!0)],64)}}}),[["__scopeId","data-v-4119c534"]]);var pe=(t=>(t.Login="login",t.Register="register",t.Restore="restore",t.Refresh="refresh",t))(pe||{});class Ze{constructor(e,n,o,r){d(this,"text","Сохранить");d(this,"type",ce.Success);d(this,"condition",!0);d(this,"action");d(this,"id","button");d(this,"disabled",!1);this.text=e,this.type=o,this.action=n,r!==void 0&&(this.condition=r)}static Primary(e,n,o){return new Ze(e,n,ce.Primary,o)}static Success(e,n,o){return new Ze(e,n,ce.Success,o)}static Warning(e,n,o){return new Ze(e,n,ce.Warning,o)}static Error(e,n,o){return new Ze(e,n,ce.Error,o)}}class Hr extends Ze{constructor(){super(...arguments);d(this,"id","auth-button");d(this,"status",pe.Login);d(this,"submit",!1)}GetStatus(){return this.status}}let jn=class extends Hr{constructor(){super(...arguments);d(this,"id","auth-button-login");d(this,"text","Войти");d(this,"isSubmit",!1);d(this,"disabled",!1)}};class qr extends Hr{constructor(){super(...arguments);d(this,"id","auth-button-register");d(this,"text","Зарегистрироваться");d(this,"isSubmit",!1);d(this,"disabled",!1)}}class Ud{constructor(){d(this,"value","");d(this,"label","");d(this,"placeholder","");d(this,"validator")}Validate(){return this.validator?(this.validator.validate(this.value),this.validator.errors):[]}Reset(){this.value=""}}class Jt extends Ud{constructor(){super(...arguments);d(this,"method");d(this,"id","field-auth");d(this,"name","")}}var at=(t=>(t.Login="login",t.Email="email",t.Phone="phone",t.VK="vk",t.ESIA="esia",t))(at||{});const _d=/\S+@\S+\.\S+/;class Ur{constructor(){d(this,"errors",[])}validate(e){return(e===""||!e)&&this.errors.push("Введите email"),_d.test(e)||this.errors.push("Некорректный email"),this.errors}}class Yt extends Jt{constructor(){super(...arguments);d(this,"id","field-auth-email");d(this,"label","Email");d(this,"name","email");d(this,"placeholder","Введите email");d(this,"validator",new Ur);d(this,"method",at.Email)}}class Wd{constructor(){d(this,"errors",[]);d(this,"length",6)}validate(e){return e===""||!e?(this.errors.push("Введите пароль"),this.errors):(e.length<this.length&&this.errors.push("Пароль недостаточной длины"),this.errors)}}class Qt extends Jt{constructor(){super(...arguments);d(this,"label","Пароль");d(this,"validator",new Wd);d(this,"name","password");d(this,"placeholder","Введите пароль");d(this,"id","field-auth-password")}}class _r extends Jt{constructor(){super(...arguments);d(this,"label","Повторите пароль");d(this,"id","field-auth-password-repeat")}}const Wr={[pe.Login]:{methods:[at.Email],title:"Вход в систему",action:"login",buttons:[new jn],fields:[new Yt,new Qt],errorMessage:"Неверно указан email или пароль",successMessage:"Вы успешно вошли в систему"},[pe.Register]:{methods:[],title:"Регистрация",action:"register",buttons:[new qr,new jn],fields:[new Yt,new Qt,new _r],errorMessage:"Неверно указан email или пароль",successMessage:"Вы успешно зарегистрировались в системе, войдите под своим паролем"},[pe.Restore]:{title:"Восстановление пароля",methods:[],action:"restorePassword",successMessage:"Ссылка для восстановления пароля отправлена на Вашу почту",errorMessage:"Неверно указан email",buttons:[],fields:[new Yt]},[pe.Refresh]:{methods:[],title:"Создание нового пароля",action:"passwordChange",successMessage:"Воспользуйтесь новым паролем для входа",errorMessage:"Неверно указан email",buttons:[],fields:[new Qt]}};class jd{constructor(){d(this,"settings",Wr);d(this,"status",pe.Login);d(this,"selectedMethod",at.Email)}async Block(e){await e()}GetValues(){const e=this.GetFields(),n=new Map;return e.forEach(o=>{o.value&&n.set(o.name,o.value)}),n}Validate(){return[]}GetFields(){return this.GetCurSet().fields.filter(e=>!e.method||e.method===this.selectedMethod)}GetMethods(){return this.GetCurSet().methods}Status(){return this.status}GetCurSet(){return this.settings[this.status]}IsLogin(){return this.status===pe.Login}IsRegister(){return this.status===pe.Register}IsRestore(){return this.status===pe.Restore}IsRefresh(){return this.status===pe.Refresh}SetStatus(e){this.status=e}GetTitle(){return this.GetCurSet().title}GetButtons(){const e=this.GetCurSet().buttons;return e.forEach(n=>{n.submit=!1}),e[0].submit=!0,e}GetSuccessMessage(){return this.GetCurSet().successMessage}GetErrorMessage(){return this.GetCurSet().errorMessage}GetAction(){return this.GetCurSet().action}ResetFields(){this.GetCurSet().fields.forEach(e=>e.Reset())}Reset(){this.status=pe.Login}}class Gd{constructor(){d(this,"visible",!1);d(this,"closable",!1)}IsClosable(){return this.closable}IsVisible(){return this.visible}Close(){this.visible=!1}Open(e){e&&(this.closable=!0),this.visible=!0}}class jr{constructor(){d(this,"visible",!1)}hide(){this.visible=!1}show(){this.hide(),this.visible=!0}IsVisible(){return this.visible}}class Gr extends jr{constructor(){super(...arguments);d(this,"type",ce.Success);d(this,"text","");d(this,"title","")}showMessage(n,o){this.hide(),this.type=o,typeof n=="string"?this.text=n:(this.text=n.text,this.title=n.title??""),super.show()}GetText(){return this.text}GetTitle(){return this.title}GetType(){return this.type}Info(n){this.showMessage(n,ce.Info)}Success(n){this.showMessage(n,ce.Success)}Error(n){this.showMessage(n,ce.Error)}Warning(n){this.showMessage(n,ce.Warning)}FormMessage(n){let o="<strong>Проверьте правильность введенных данных:</strong><ul>";for(const r of Object.keys(n))n[r][0]&&n[r][0].message&&(o+=`<li>${n[r][0].message}</li>`);return o+="</ul>",o}}class Gn{static Get(e,n,o="-"){return!e||!n?"":`${e}${o}${n}`}static In(e,n,o){return e>=n&&e<=o}static Intersects(e,n,o,r){return e===o||n===r||e>o&&e<r||n>o&&n<r||n>r&&e<o}}const Zr=1e3,Xr=60*Zr,Zn=60*Xr;var Ct=(t=>(t.FiveMinutes="5",t.HourQuarter="15",t.HourHalf="30",t.Hour="60",t))(Ct||{});const Kt={5:["00","05","10","15","20","25","30","35","40","45","50","55"],15:["00","15","30","45"],30:["00","30"],60:["00"]};class q{static S(e){return Zr*e}static M(e){return Xr*e}static H(e){return Zn*e}static D(e){return Zn*e}static W(e){return Zn*e}static NormalizeTime(e){return String(e).padStart(2,"0")}static HMtoM(e){const n=q.SplitHM(e);return n.length>1?q.HtoM(n[0])+n[1]:q.HtoM(n[0])}static HtoM(e){return Number(e)*60}static SplitHM(e){if(!e)return[];const n=e.split(":");return[Number(n[0]),Number(n[1])]}static HmsToHm(e){const n=q.SplitHM(e);return q.ConcatHM(n[0],n[1])}static AddMtoHM(e,n){const o=new Date,r=q.SplitHM(e);o.setHours(r[0],r[1],0,0);const s=new Date(o.getTime()+n*6e4),a=s.getHours(),c=s.getMinutes();return q.ConcatHM(a,c)}static ConcatHM(e,n){return`${e}:${q.NormalizeTime(n)}`}static DiffM(e,n){return q.Gt(n,e)?q.HMtoM(n)-q.HMtoM(e):q.HMtoM(e)-q.HMtoM(n)}static GetPeriod(e,n){return Gn.Get(e,n)}static Gt(e,n){return q.HMtoM(e)>q.HMtoM(n)}static GtOrEq(e,n){return q.Gt(e,n)||q.Eq(e,n)}static Eq(e,n){return q.HMtoM(e)===q.HMtoM(n)}static PeriodInPeriod(e,n,o,r){return q.HMtoM(e)>=q.HMtoM(o)&&q.HMtoM(n)<=q.HMtoM(r)}static PeriodsIntersects(e,n,o,r){return Gn.Intersects(q.HMtoM(e),q.HMtoM(n),q.HMtoM(o),q.HMtoM(r))}}class St{static Wait(e,n){return new Promise(o=>setTimeout(()=>o(n),e))}static WaitS(e,n){return St.Wait(q.S(e),n)}static WaitM(e,n){return St.Wait(q.M(e),n)}}class Zd extends Gr{constructor(){super(...arguments);d(this,"duration",q.S(3))}showMessage(n,o){super.showMessage(n,o),typeof n!="string"&&(this.duration=n.duration??this.duration),St.Wait(this.GetDuration()).then(()=>super.hide())}GetDuration(){return this.duration}Dev(){const n="В режиме разработки",o=ce.Warning;super.showMessage(n,o)}Save(){const n="Изменения успешно сохранены",o=ce.Success;super.showMessage(n,o)}}const kt=new Zd;class Ie{static Get(e){const n=localStorage.getItem(e);if(n)return JSON.parse(n)}static Set(e,n){n&&localStorage.setItem(e,JSON.stringify(n))}static Remove(e){localStorage.removeItem(e)}}var Se=(t=>(t.User="user",t.AccessToken="accessToken",t.RefreshToken="refreshToken",t))(Se||{});class Xd{set(e){this.setAccessToken(e.accessToken),this.setRefreshToken(e.refreshToken)}getAccessToken(){return Ie.Get(Se.AccessToken)}getRefreshToken(){return Ie.Get(Se.RefreshToken)}setAccessToken(e){Ie.Set(Se.AccessToken,e)}setRefreshToken(e){Ie.Set(Se.RefreshToken,e)}reset(){Ie.Remove(Se.AccessToken),Ie.Remove(Se.RefreshToken)}actualize(){this.setAccessToken(this.getAccessToken()),this.setRefreshToken(this.getAccessToken())}}class Jd{constructor(){d(this,"user");d(this,"userConstructor")}AssignTo(e){e.user=this.get()}setUserConstructor(e){this.userConstructor=e}get(){if(this.userConstructor)return this.user=new this.userConstructor(Ie.Get(Se.User)),this.user}set(e){this.userConstructor&&(this.user=new this.userConstructor(e),Ie.Set(Se.User,this.user))}reset(){this.user=void 0,Ie.Remove(Se.User)}actualize(){const e=Ie.Get(Se.User);e&&this.set(e)}}class Yd{constructor(){d(this,"isAuth",!1);d(this,"user",new Jd);d(this,"tokens",new Xd);d(this,"preventLogout",!1)}DeprecateLogout(){this.preventLogout=!0}AllowLogout(){this.preventLogout=!1}get IsAuth(){return this.isAuth}get User(){return this.user.get()}SetUserConstructor(e){this.user.setUserConstructor(e)}SetState(e){this.user.set(e.user),this.tokens.set(e.tokens),this.isAuth=!0}Logout(){if(this.preventLogout){kt.Warning("В текущий момент Вы не можете выйти из системы");return}this.user.reset(),this.tokens.reset(),this.isAuth=!1}Actualize(){if(this.user.actualize(),this.tokens.actualize(),this.user.get()&&this.tokens.getAccessToken()&&this.tokens.getRefreshToken()){this.isAuth=!0;return}this.Logout()}}class Qd{constructor(){d(this,"form",new jd);d(this,"status",new Yd);d(this,"modal",new Gd)}get Form(){return this.form}get Status(){return this.status}get Modal(){return this.modal}}const Jr=new Qd;class Kd extends Jt{constructor(){super(...arguments);d(this,"label","Логин");d(this,"name","login");d(this,"validator",new Ur);d(this,"method",at.Login);d(this,"id","field-auth-login")}}class Xe{constructor(e){d(this,"id");d(this,"address");d(this,"description");d(this,"contactId");T.BuildClass(this,e)}static Create(){const e=new Xe;return e.id=ve.UUID(),e}}class Yr{constructor(e){d(this,"id");d(this,"name","");d(this,"surname","");d(this,"patronymic","");d(this,"isMale",!0);d(this,"dateBirth",new Date);d(this,"contactId");d(this,"slug","");d(this,"postIndex","");d(this,"address","");d(this,"editNameMode",!1);T.BuildClass(this,e)}setEditNameMode(e){this.editNameMode=e}getFullName(){return!this.surname.length&&!this.name.length&&!this.patronymic.length?"":`${this.surname} ${this.name} ${this.patronymic}`}getInitialsName(){return`${this.name.slice(0,1)}.${this.patronymic.slice(0,1)}. ${this.surname}`}getGender(e){return e?this.isMale?"Мужской":"Женский":this.isMale?"М":"Ж"}capitalizeName(){this.name=ne.Capitalize(this.name),this.surname=ne.Capitalize(this.surname),this.patronymic=ne.Capitalize(this.patronymic)}trimName(){this.name=this.name.trim(),this.surname=this.surname.trim(),this.patronymic=this.patronymic.trim()}sanitizeName(){this.trimName(),this.capitalizeName()}setFullName(e){this.surname=e.surname,this.name=e.name,this.patronymic=e.patronymic}}class en{constructor(e){d(this,"model","");d(this,"col","");d(this,"order");d(this,"label","");d(this,"default",!1);d(this,"selected",!1);T.BuildClass(this,e)}static Create(e,n,o=Me.Asc,r,s){const a=new en;return a.model=e.GetClassName(),a.col=n??"",a.order=o??Me.Asc,a.label=r??"",a.default=s??!1,a}isAsc(){return this.order===Me.Asc}isDesc(){return this.order===Me.Desc}eq(e){return e.model===this.model&&e.col===this.col&&e.order===this.order}toUrlQuery(){const e=this.model?`"model":"${this.model}"`:"",n=this.col?`"col":"${this.col}"`:"",o=this.order?`"order":"${this.order}"`:"";return[e,n,o].toString()}async fromUrlQuery(){const e=window.location.search,n=e.substring(e.indexOf("s=")+2,e.indexOf("|")),o=new URLSearchParams(decodeURIComponent(n));this.model=o.get("model")??"",this.col=o.get("col")??"",this.label=o.get("label")??"",this.default=!!o.get("default"),this.order=o.get("order")??""}asc(){this.order=Me.Asc}desc(){this.order=Me.Desc}}const eu=Object.freeze(Object.defineProperty({__proto__:null,Auth:Jr,AuthButtonLogin:jn,AuthButtonRegister:qr,AuthFormSettings:Wr,AuthFormStatuses:pe,AuthMethods:at,Email:Xe,EmailField:Yt,FileInfo:Be,Human:Yr,LoginField:Kd,PasswordField:Qt,PasswordRepeatField:_r,SortModel:en},Symbol.toStringTag,{value:"Module"}));class tu{constructor(){d(this,"operation",de.Lt);d(this,"column","");d(this,"value");d(this,"initial",!0);d(this,"tableName","");d(this,"version","");d(this,"model","")}toUrlQuery(){const e=this.operation?`"operation":"${this.operation}"`:"",n=this.column?`"column":"${this.column}"`:"",o=this.value&&typeof this.value.toISOString=="function"?this.value.toISOString():this.value,r=o?`"value":"${o}"`:"",s=this.model?`"model":"${this.model}"`:"",a=`"initial":${this.initial}`;return[e,n,r,s,a].filter(c=>c!=="").toString()}fromUrlQuery(e){e.cursvalue&&(this.value=e.cursvalue),e.curscolumn&&(this.column=String(e.curscolumn)),e.cursinitial!==void 0&&(this.initial=!!e.cursinitial),e.curstableName&&(this.tableName=String(e.curstableName)),e.cursoperation&&(this.operation=e.cursoperation)}}class tn{constructor(e){d(this,"offset",0);d(this,"limit",25);d(this,"cursor",new tu);d(this,"cursorMode",!1);d(this,"append",!1);d(this,"allLoaded",!1);d(this,"version","");T.BuildClass(this,e)}setLoadMore(e,n,o){this.cursor.value=e,this.cursor.initial=!1,this.cursor.operation=de.Gt,this.cursor.column=n,this.cursor.tableName=o,this.cursorMode=!0}setLoadMoreV2(e,n,o){this.cursor.value=e,this.cursor.initial=!1,this.cursor.operation=de.Gt,this.cursor.column=n,this.cursor.model=o,this.cursorMode=!0,this.version="v2"}setOffset(e){this.offset=e}toUrlQuery(){const e=`"offset":${this.offset}`,n=`"limit":${this.limit}`,o=`"cursorMode":${this.cursorMode}`,r=`"append":${this.append}`,s=`"allLoaded":${this.allLoaded}`,a=`"cursor":{${this.cursor.toUrlQuery()}}`;return[e,n,o,r,s,a].toString()}fromUrlQuery(){const e=window.location.search,n=e.substring(e.indexOf("p=")+2,e.lastIndexOf("|")),o=new URLSearchParams(decodeURIComponent(n));this.offset=Number(o.get("offset")),this.limit=Number(o.get("col"))}setAllLoaded(e){this.allLoaded=!(e>=this.limit)}resetAllLoaded(){this.allLoaded=!1}getPageNum(){return this.offset/this.limit+1}drop(){this.offset=0,this.limit=25,T.BuildClass(this)}}class nn{constructor(){d(this,"model","");d(this,"cols",[]);d(this,"models",[])}static Create(e,n){const o=new nn;return o.model=e.GetClassName(),o.cols=n,o}}var nu=Object.defineProperty,on=(t,e,n,o)=>{for(var r=void 0,s=t.length-1,a;s>=0;s--)(a=t[s])&&(r=a(e,n,r)||r);return r&&nu(e,n,r),r};const Et=(ye=class{constructor(e){d(this,"id");d(this,"f",[]);d(this,"s",[]);d(this,"p",new tn);d(this,"t",new nn);T.BuildClass(this,e)}static Get(){return this.instance||(this.instance=new ye),this.instance}createFrom(e){const n=new ye(JSON.parse(e));this.f=n.f}clearForHTTP(){const e=new ye(this);return e.f=this.f.map(n=>ye.EmptyEntiries(n)),e.s=this.s.map(n=>ye.EmptyEntiries(n)),e.p=ye.EmptyEntiries(this.p),e.t=ye.EmptyEntiries(this.t),e}static EmptyEntiries(e){if(!e)return;const o=Object.entries(e).filter(([r,s])=>r!=="label"&&s!==""&&s!==null);return Object.fromEntries(o)}findFilterModel(e){return this.f.find(n=>e.id===n.id)}getFirstSortModel(){return He.GetLast(this.s)}setSortModel(e){e&&(this.s[0]=e)}setS(e){this.s[0]=e}setF(e){this.f.push(e)}replaceF(e,n){this.removeF(n),e&&this.setF(e)}removeF(e){const n=this.f.findIndex(o=>o.eq(e));T.RemoveFromClassByIndex(n,this.f)}reset(){this.f=[],this.s=[],this.p=new tn}resetF(){this.f=[]}},d(ye,"instance"),ye);on([T.GetClassConstructor(ho)],Et.prototype,"f"),on([T.GetClassConstructor(en)],Et.prototype,"s"),on([T.GetClassConstructor(tn)],Et.prototype,"p"),on([T.GetClassConstructor(nn)],Et.prototype,"t");let Qr=Et;class Je{constructor(e){d(this,"id");d(this,"number");d(this,"description");d(this,"contactId");T.BuildClass(this,e)}static Create(){const e=new Je;return e.id=ve.UUID(),e}}function Kr(t,e){return function(){return t.apply(e,arguments)}}const{toString:iu}=Object.prototype,{getPrototypeOf:Xn}=Object,rn=(t=>e=>{const n=iu.call(e);return t[n]||(t[n]=n.slice(8,-1).toLowerCase())})(Object.create(null)),Re=t=>(t=t.toLowerCase(),e=>rn(e)===t),sn=t=>e=>typeof e===t,{isArray:lt}=Array,vt=sn("undefined");function ou(t){return t!==null&&!vt(t)&&t.constructor!==null&&!vt(t.constructor)&&ge(t.constructor.isBuffer)&&t.constructor.isBuffer(t)}const es=Re("ArrayBuffer");function ru(t){let e;return typeof ArrayBuffer<"u"&&ArrayBuffer.isView?e=ArrayBuffer.isView(t):e=t&&t.buffer&&es(t.buffer),e}const su=sn("string"),ge=sn("function"),ts=sn("number"),an=t=>t!==null&&typeof t=="object",au=t=>t===!0||t===!1,ln=t=>{if(rn(t)!=="object")return!1;const e=Xn(t);return(e===null||e===Object.prototype||Object.getPrototypeOf(e)===null)&&!(Symbol.toStringTag in t)&&!(Symbol.iterator in t)},lu=Re("Date"),cu=Re("File"),du=Re("Blob"),uu=Re("FileList"),hu=t=>an(t)&&ge(t.pipe),fu=t=>{let e;return t&&(typeof FormData=="function"&&t instanceof FormData||ge(t.append)&&((e=rn(t))==="formdata"||e==="object"&&ge(t.toString)&&t.toString()==="[object FormData]"))},mu=Re("URLSearchParams"),[pu,gu,yu,wu]=["ReadableStream","Request","Response","Headers"].map(Re),bu=t=>t.trim?t.trim():t.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"");function xt(t,e,{allOwnKeys:n=!1}={}){if(t===null||typeof t>"u")return;let o,r;if(typeof t!="object"&&(t=[t]),lt(t))for(o=0,r=t.length;o<r;o++)e.call(null,t[o],o,t);else{const s=n?Object.getOwnPropertyNames(t):Object.keys(t),a=s.length;let c;for(o=0;o<a;o++)c=s[o],e.call(null,t[c],c,t)}}function ns(t,e){e=e.toLowerCase();const n=Object.keys(t);let o=n.length,r;for(;o-- >0;)if(r=n[o],e===r.toLowerCase())return r;return null}const Ye=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:global,is=t=>!vt(t)&&t!==Ye;function Jn(){const{caseless:t}=is(this)&&this||{},e={},n=(o,r)=>{const s=t&&ns(e,r)||r;ln(e[s])&&ln(o)?e[s]=Jn(e[s],o):ln(o)?e[s]=Jn({},o):lt(o)?e[s]=o.slice():e[s]=o};for(let o=0,r=arguments.length;o<r;o++)arguments[o]&&xt(arguments[o],n);return e}const Cu=(t,e,n,{allOwnKeys:o}={})=>(xt(e,(r,s)=>{n&&ge(r)?t[s]=Kr(r,n):t[s]=r},{allOwnKeys:o}),t),Su=t=>(t.charCodeAt(0)===65279&&(t=t.slice(1)),t),ku=(t,e,n,o)=>{t.prototype=Object.create(e.prototype,o),t.prototype.constructor=t,Object.defineProperty(t,"super",{value:e.prototype}),n&&Object.assign(t.prototype,n)},Eu=(t,e,n,o)=>{let r,s,a;const c={};if(e=e||{},t==null)return e;do{for(r=Object.getOwnPropertyNames(t),s=r.length;s-- >0;)a=r[s],(!o||o(a,t,e))&&!c[a]&&(e[a]=t[a],c[a]=!0);t=n!==!1&&Xn(t)}while(t&&(!n||n(t,e))&&t!==Object.prototype);return e},vu=(t,e,n)=>{t=String(t),(n===void 0||n>t.length)&&(n=t.length),n-=e.length;const o=t.indexOf(e,n);return o!==-1&&o===n},xu=t=>{if(!t)return null;if(lt(t))return t;let e=t.length;if(!ts(e))return null;const n=new Array(e);for(;e-- >0;)n[e]=t[e];return n},Bu=(t=>e=>t&&e instanceof t)(typeof Uint8Array<"u"&&Xn(Uint8Array)),Mu=(t,e)=>{const o=(t&&t[Symbol.iterator]).call(t);let r;for(;(r=o.next())&&!r.done;){const s=r.value;e.call(t,s[0],s[1])}},Iu=(t,e)=>{let n;const o=[];for(;(n=t.exec(e))!==null;)o.push(n);return o},Ru=Re("HTMLFormElement"),$u=t=>t.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g,function(n,o,r){return o.toUpperCase()+r}),os=(({hasOwnProperty:t})=>(e,n)=>t.call(e,n))(Object.prototype),Au=Re("RegExp"),rs=(t,e)=>{const n=Object.getOwnPropertyDescriptors(t),o={};xt(n,(r,s)=>{let a;(a=e(r,s,t))!==!1&&(o[s]=a||r)}),Object.defineProperties(t,o)},Nu=t=>{rs(t,(e,n)=>{if(ge(t)&&["arguments","caller","callee"].indexOf(n)!==-1)return!1;const o=t[n];if(ge(o)){if(e.enumerable=!1,"writable"in e){e.writable=!1;return}e.set||(e.set=()=>{throw Error("Can not rewrite read-only method '"+n+"'")})}})},Pu=(t,e)=>{const n={},o=r=>{r.forEach(s=>{n[s]=!0})};return lt(t)?o(t):o(String(t).split(e)),n},zu=()=>{},Vu=(t,e)=>t!=null&&Number.isFinite(t=+t)?t:e,Yn="abcdefghijklmnopqrstuvwxyz",ss="0123456789",as={DIGIT:ss,ALPHA:Yn,ALPHA_DIGIT:Yn+Yn.toUpperCase()+ss},Tu=(t=16,e=as.ALPHA_DIGIT)=>{let n="";const{length:o}=e;for(;t--;)n+=e[Math.random()*o|0];return n};function Fu(t){return!!(t&&ge(t.append)&&t[Symbol.toStringTag]==="FormData"&&t[Symbol.iterator])}const Du=t=>{const e=new Array(10),n=(o,r)=>{if(an(o)){if(e.indexOf(o)>=0)return;if(!("toJSON"in o)){e[r]=o;const s=lt(o)?[]:{};return xt(o,(a,c)=>{const l=n(a,r+1);!vt(l)&&(s[c]=l)}),e[r]=void 0,s}}return o};return n(t,0)},Ou=Re("AsyncFunction"),Lu=t=>t&&(an(t)||ge(t))&&ge(t.then)&&ge(t.catch),ls=((t,e)=>t?setImmediate:e?((n,o)=>(Ye.addEventListener("message",({source:r,data:s})=>{r===Ye&&s===n&&o.length&&o.shift()()},!1),r=>{o.push(r),Ye.postMessage(n,"*")}))(`axios@${Math.random()}`,[]):n=>setTimeout(n))(typeof setImmediate=="function",ge(Ye.postMessage)),Hu=typeof queueMicrotask<"u"?queueMicrotask.bind(Ye):typeof process<"u"&&process.nextTick||ls,C={isArray:lt,isArrayBuffer:es,isBuffer:ou,isFormData:fu,isArrayBufferView:ru,isString:su,isNumber:ts,isBoolean:au,isObject:an,isPlainObject:ln,isReadableStream:pu,isRequest:gu,isResponse:yu,isHeaders:wu,isUndefined:vt,isDate:lu,isFile:cu,isBlob:du,isRegExp:Au,isFunction:ge,isStream:hu,isURLSearchParams:mu,isTypedArray:Bu,isFileList:uu,forEach:xt,merge:Jn,extend:Cu,trim:bu,stripBOM:Su,inherits:ku,toFlatObject:Eu,kindOf:rn,kindOfTest:Re,endsWith:vu,toArray:xu,forEachEntry:Mu,matchAll:Iu,isHTMLForm:Ru,hasOwnProperty:os,hasOwnProp:os,reduceDescriptors:rs,freezeMethods:Nu,toObjectSet:Pu,toCamelCase:$u,noop:zu,toFiniteNumber:Vu,findKey:ns,global:Ye,isContextDefined:is,ALPHABET:as,generateString:Tu,isSpecCompliantForm:Fu,toJSONObject:Du,isAsyncFn:Ou,isThenable:Lu,setImmediate:ls,asap:Hu};function D(t,e,n,o,r){Error.call(this),Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=new Error().stack,this.message=t,this.name="AxiosError",e&&(this.code=e),n&&(this.config=n),o&&(this.request=o),r&&(this.response=r,this.status=r.status?r.status:null)}C.inherits(D,Error,{toJSON:function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:C.toJSONObject(this.config),code:this.code,status:this.status}}});const cs=D.prototype,ds={};["ERR_BAD_OPTION_VALUE","ERR_BAD_OPTION","ECONNABORTED","ETIMEDOUT","ERR_NETWORK","ERR_FR_TOO_MANY_REDIRECTS","ERR_DEPRECATED","ERR_BAD_RESPONSE","ERR_BAD_REQUEST","ERR_CANCELED","ERR_NOT_SUPPORT","ERR_INVALID_URL"].forEach(t=>{ds[t]={value:t}}),Object.defineProperties(D,ds),Object.defineProperty(cs,"isAxiosError",{value:!0}),D.from=(t,e,n,o,r,s)=>{const a=Object.create(cs);return C.toFlatObject(t,a,function(l){return l!==Error.prototype},c=>c!=="isAxiosError"),D.call(a,t.message,e,n,o,r),a.cause=t,a.name=t.name,s&&Object.assign(a,s),a};const qu=null;function Qn(t){return C.isPlainObject(t)||C.isArray(t)}function us(t){return C.endsWith(t,"[]")?t.slice(0,-2):t}function hs(t,e,n){return t?t.concat(e).map(function(r,s){return r=us(r),!n&&s?"["+r+"]":r}).join(n?".":""):e}function Uu(t){return C.isArray(t)&&!t.some(Qn)}const _u=C.toFlatObject(C,{},null,function(e){return/^is[A-Z]/.test(e)});function cn(t,e,n){if(!C.isObject(t))throw new TypeError("target must be an object");e=e||new FormData,n=C.toFlatObject(n,{metaTokens:!0,dots:!1,indexes:!1},!1,function(E,w){return!C.isUndefined(w[E])});const o=n.metaTokens,r=n.visitor||h,s=n.dots,a=n.indexes,l=(n.Blob||typeof Blob<"u"&&Blob)&&C.isSpecCompliantForm(e);if(!C.isFunction(r))throw new TypeError("visitor must be a function");function u(p){if(p===null)return"";if(C.isDate(p))return p.toISOString();if(!l&&C.isBlob(p))throw new D("Blob is not supported. Use a Buffer instead.");return C.isArrayBuffer(p)||C.isTypedArray(p)?l&&typeof Blob=="function"?new Blob([p]):Buffer.from(p):p}function h(p,E,w){let M=p;if(p&&!w&&typeof p=="object"){if(C.endsWith(E,"{}"))E=o?E:E.slice(0,-2),p=JSON.stringify(p);else if(C.isArray(p)&&Uu(p)||(C.isFileList(p)||C.endsWith(E,"[]"))&&(M=C.toArray(p)))return E=us(E),M.forEach(function(L,F){!(C.isUndefined(L)||L===null)&&e.append(a===!0?hs([E],F,s):a===null?E:E+"[]",u(L))}),!1}return Qn(p)?!0:(e.append(hs(w,E,s),u(p)),!1)}const f=[],m=Object.assign(_u,{defaultVisitor:h,convertValue:u,isVisitable:Qn});function g(p,E){if(!C.isUndefined(p)){if(f.indexOf(p)!==-1)throw Error("Circular reference detected in "+E.join("."));f.push(p),C.forEach(p,function(M,O){(!(C.isUndefined(M)||M===null)&&r.call(e,M,C.isString(O)?O.trim():O,E,m))===!0&&g(M,E?E.concat(O):[O])}),f.pop()}}if(!C.isObject(t))throw new TypeError("data must be an object");return g(t),e}function fs(t){const e={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+","%00":"\0"};return encodeURIComponent(t).replace(/[!'()~]|%20|%00/g,function(o){return e[o]})}function Kn(t,e){this._pairs=[],t&&cn(t,this,e)}const ms=Kn.prototype;ms.append=function(e,n){this._pairs.push([e,n])},ms.toString=function(e){const n=e?function(o){return e.call(this,o,fs)}:fs;return this._pairs.map(function(r){return n(r[0])+"="+n(r[1])},"").join("&")};function Wu(t){return encodeURIComponent(t).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}function ps(t,e,n){if(!e)return t;const o=n&&n.encode||Wu,r=n&&n.serialize;let s;if(r?s=r(e,n):s=C.isURLSearchParams(e)?e.toString():new Kn(e,n).toString(o),s){const a=t.indexOf("#");a!==-1&&(t=t.slice(0,a)),t+=(t.indexOf("?")===-1?"?":"&")+s}return t}class gs{constructor(){this.handlers=[]}use(e,n,o){return this.handlers.push({fulfilled:e,rejected:n,synchronous:o?o.synchronous:!1,runWhen:o?o.runWhen:null}),this.handlers.length-1}eject(e){this.handlers[e]&&(this.handlers[e]=null)}clear(){this.handlers&&(this.handlers=[])}forEach(e){C.forEach(this.handlers,function(o){o!==null&&e(o)})}}const ys={silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1},ju={isBrowser:!0,classes:{URLSearchParams:typeof URLSearchParams<"u"?URLSearchParams:Kn,FormData:typeof FormData<"u"?FormData:null,Blob:typeof Blob<"u"?Blob:null},protocols:["http","https","file","blob","url","data"]},ei=typeof window<"u"&&typeof document<"u",ti=typeof navigator=="object"&&navigator||void 0,Gu=ei&&(!ti||["ReactNative","NativeScript","NS"].indexOf(ti.product)<0),Zu=typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope&&typeof self.importScripts=="function",Xu=ei&&window.location.href||"http://localhost",fe={...Object.freeze(Object.defineProperty({__proto__:null,hasBrowserEnv:ei,hasStandardBrowserEnv:Gu,hasStandardBrowserWebWorkerEnv:Zu,navigator:ti,origin:Xu},Symbol.toStringTag,{value:"Module"})),...ju};function Ju(t,e){return cn(t,new fe.classes.URLSearchParams,Object.assign({visitor:function(n,o,r,s){return fe.isNode&&C.isBuffer(n)?(this.append(o,n.toString("base64")),!1):s.defaultVisitor.apply(this,arguments)}},e))}function Yu(t){return C.matchAll(/\w+|\[(\w*)]/g,t).map(e=>e[0]==="[]"?"":e[1]||e[0])}function Qu(t){const e={},n=Object.keys(t);let o;const r=n.length;let s;for(o=0;o<r;o++)s=n[o],e[s]=t[s];return e}function ws(t){function e(n,o,r,s){let a=n[s++];if(a==="__proto__")return!0;const c=Number.isFinite(+a),l=s>=n.length;return a=!a&&C.isArray(r)?r.length:a,l?(C.hasOwnProp(r,a)?r[a]=[r[a],o]:r[a]=o,!c):((!r[a]||!C.isObject(r[a]))&&(r[a]=[]),e(n,o,r[a],s)&&C.isArray(r[a])&&(r[a]=Qu(r[a])),!c)}if(C.isFormData(t)&&C.isFunction(t.entries)){const n={};return C.forEachEntry(t,(o,r)=>{e(Yu(o),r,n,0)}),n}return null}function Ku(t,e,n){if(C.isString(t))try{return(e||JSON.parse)(t),C.trim(t)}catch(o){if(o.name!=="SyntaxError")throw o}return(0,JSON.stringify)(t)}const Bt={transitional:ys,adapter:["xhr","http","fetch"],transformRequest:[function(e,n){const o=n.getContentType()||"",r=o.indexOf("application/json")>-1,s=C.isObject(e);if(s&&C.isHTMLForm(e)&&(e=new FormData(e)),C.isFormData(e))return r?JSON.stringify(ws(e)):e;if(C.isArrayBuffer(e)||C.isBuffer(e)||C.isStream(e)||C.isFile(e)||C.isBlob(e)||C.isReadableStream(e))return e;if(C.isArrayBufferView(e))return e.buffer;if(C.isURLSearchParams(e))return n.setContentType("application/x-www-form-urlencoded;charset=utf-8",!1),e.toString();let c;if(s){if(o.indexOf("application/x-www-form-urlencoded")>-1)return Ju(e,this.formSerializer).toString();if((c=C.isFileList(e))||o.indexOf("multipart/form-data")>-1){const l=this.env&&this.env.FormData;return cn(c?{"files[]":e}:e,l&&new l,this.formSerializer)}}return s||r?(n.setContentType("application/json",!1),Ku(e)):e}],transformResponse:[function(e){const n=this.transitional||Bt.transitional,o=n&&n.forcedJSONParsing,r=this.responseType==="json";if(C.isResponse(e)||C.isReadableStream(e))return e;if(e&&C.isString(e)&&(o&&!this.responseType||r)){const a=!(n&&n.silentJSONParsing)&&r;try{return JSON.parse(e)}catch(c){if(a)throw c.name==="SyntaxError"?D.from(c,D.ERR_BAD_RESPONSE,this,null,this.response):c}}return e}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,env:{FormData:fe.classes.FormData,Blob:fe.classes.Blob},validateStatus:function(e){return e>=200&&e<300},headers:{common:{Accept:"application/json, text/plain, */*","Content-Type":void 0}}};C.forEach(["delete","get","head","post","put","patch"],t=>{Bt.headers[t]={}});const eh=C.toObjectSet(["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"]),th=t=>{const e={};let n,o,r;return t&&t.split(`
|
|
34
34
|
`).forEach(function(a){r=a.indexOf(":"),n=a.substring(0,r).trim().toLowerCase(),o=a.substring(r+1).trim(),!(!n||e[n]&&eh[n])&&(n==="set-cookie"?e[n]?e[n].push(o):e[n]=[o]:e[n]=e[n]?e[n]+", "+o:o)}),e},bs=Symbol("internals");function Mt(t){return t&&String(t).trim().toLowerCase()}function dn(t){return t===!1||t==null?t:C.isArray(t)?t.map(dn):String(t)}function nh(t){const e=Object.create(null),n=/([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;let o;for(;o=n.exec(t);)e[o[1]]=o[2];return e}const ih=t=>/^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(t.trim());function ni(t,e,n,o,r){if(C.isFunction(o))return o.call(this,e,n);if(r&&(e=n),!!C.isString(e)){if(C.isString(o))return e.indexOf(o)!==-1;if(C.isRegExp(o))return o.test(e)}}function oh(t){return t.trim().toLowerCase().replace(/([a-z\d])(\w*)/g,(e,n,o)=>n.toUpperCase()+o)}function rh(t,e){const n=C.toCamelCase(" "+e);["get","set","has"].forEach(o=>{Object.defineProperty(t,o+n,{value:function(r,s,a){return this[o].call(this,e,r,s,a)},configurable:!0})})}class me{constructor(e){e&&this.set(e)}set(e,n,o){const r=this;function s(c,l,u){const h=Mt(l);if(!h)throw new Error("header name must be a non-empty string");const f=C.findKey(r,h);(!f||r[f]===void 0||u===!0||u===void 0&&r[f]!==!1)&&(r[f||l]=dn(c))}const a=(c,l)=>C.forEach(c,(u,h)=>s(u,h,l));if(C.isPlainObject(e)||e instanceof this.constructor)a(e,n);else if(C.isString(e)&&(e=e.trim())&&!ih(e))a(th(e),n);else if(C.isHeaders(e))for(const[c,l]of e.entries())s(l,c,o);else e!=null&&s(n,e,o);return this}get(e,n){if(e=Mt(e),e){const o=C.findKey(this,e);if(o){const r=this[o];if(!n)return r;if(n===!0)return nh(r);if(C.isFunction(n))return n.call(this,r,o);if(C.isRegExp(n))return n.exec(r);throw new TypeError("parser must be boolean|regexp|function")}}}has(e,n){if(e=Mt(e),e){const o=C.findKey(this,e);return!!(o&&this[o]!==void 0&&(!n||ni(this,this[o],o,n)))}return!1}delete(e,n){const o=this;let r=!1;function s(a){if(a=Mt(a),a){const c=C.findKey(o,a);c&&(!n||ni(o,o[c],c,n))&&(delete o[c],r=!0)}}return C.isArray(e)?e.forEach(s):s(e),r}clear(e){const n=Object.keys(this);let o=n.length,r=!1;for(;o--;){const s=n[o];(!e||ni(this,this[s],s,e,!0))&&(delete this[s],r=!0)}return r}normalize(e){const n=this,o={};return C.forEach(this,(r,s)=>{const a=C.findKey(o,s);if(a){n[a]=dn(r),delete n[s];return}const c=e?oh(s):String(s).trim();c!==s&&delete n[s],n[c]=dn(r),o[c]=!0}),this}concat(...e){return this.constructor.concat(this,...e)}toJSON(e){const n=Object.create(null);return C.forEach(this,(o,r)=>{o!=null&&o!==!1&&(n[r]=e&&C.isArray(o)?o.join(", "):o)}),n}[Symbol.iterator](){return Object.entries(this.toJSON())[Symbol.iterator]()}toString(){return Object.entries(this.toJSON()).map(([e,n])=>e+": "+n).join(`
|
|
35
35
|
`)}get[Symbol.toStringTag](){return"AxiosHeaders"}static from(e){return e instanceof this?e:new this(e)}static concat(e,...n){const o=new this(e);return n.forEach(r=>o.set(r)),o}static accessor(e){const o=(this[bs]=this[bs]={accessors:{}}).accessors,r=this.prototype;function s(a){const c=Mt(a);o[c]||(rh(r,a),o[c]=!0)}return C.isArray(e)?e.forEach(s):s(e),this}}me.accessor(["Content-Type","Content-Length","Accept","Accept-Encoding","User-Agent","Authorization"]),C.reduceDescriptors(me.prototype,({value:t},e)=>{let n=e[0].toUpperCase()+e.slice(1);return{get:()=>t,set(o){this[n]=o}}}),C.freezeMethods(me);function ii(t,e){const n=this||Bt,o=e||n,r=me.from(o.headers);let s=o.data;return C.forEach(t,function(c){s=c.call(n,s,r.normalize(),e?e.status:void 0)}),r.normalize(),s}function Cs(t){return!!(t&&t.__CANCEL__)}function ct(t,e,n){D.call(this,t??"canceled",D.ERR_CANCELED,e,n),this.name="CanceledError"}C.inherits(ct,D,{__CANCEL__:!0});function Ss(t,e,n){const o=n.config.validateStatus;!n.status||!o||o(n.status)?t(n):e(new D("Request failed with status code "+n.status,[D.ERR_BAD_REQUEST,D.ERR_BAD_RESPONSE][Math.floor(n.status/100)-4],n.config,n.request,n))}function sh(t){const e=/^([-+\w]{1,25})(:?\/\/|:)/.exec(t);return e&&e[1]||""}function ah(t,e){t=t||10;const n=new Array(t),o=new Array(t);let r=0,s=0,a;return e=e!==void 0?e:1e3,function(l){const u=Date.now(),h=o[s];a||(a=u),n[r]=l,o[r]=u;let f=s,m=0;for(;f!==r;)m+=n[f++],f=f%t;if(r=(r+1)%t,r===s&&(s=(s+1)%t),u-a<e)return;const g=h&&u-h;return g?Math.round(m*1e3/g):void 0}}function lh(t,e){let n=0,o=1e3/e,r,s;const a=(u,h=Date.now())=>{n=h,r=null,s&&(clearTimeout(s),s=null),t.apply(null,u)};return[(...u)=>{const h=Date.now(),f=h-n;f>=o?a(u,h):(r=u,s||(s=setTimeout(()=>{s=null,a(r)},o-f)))},()=>r&&a(r)]}const un=(t,e,n=3)=>{let o=0;const r=ah(50,250);return lh(s=>{const a=s.loaded,c=s.lengthComputable?s.total:void 0,l=a-o,u=r(l),h=a<=c;o=a;const f={loaded:a,total:c,progress:c?a/c:void 0,bytes:l,rate:u||void 0,estimated:u&&c&&h?(c-a)/u:void 0,event:s,lengthComputable:c!=null,[e?"download":"upload"]:!0};t(f)},n)},ks=(t,e)=>{const n=t!=null;return[o=>e[0]({lengthComputable:n,total:t,loaded:o}),e[1]]},Es=t=>(...e)=>C.asap(()=>t(...e)),ch=fe.hasStandardBrowserEnv?function(){const e=fe.navigator&&/(msie|trident)/i.test(fe.navigator.userAgent),n=document.createElement("a");let o;function r(s){let a=s;return e&&(n.setAttribute("href",a),a=n.href),n.setAttribute("href",a),{href:n.href,protocol:n.protocol?n.protocol.replace(/:$/,""):"",host:n.host,search:n.search?n.search.replace(/^\?/,""):"",hash:n.hash?n.hash.replace(/^#/,""):"",hostname:n.hostname,port:n.port,pathname:n.pathname.charAt(0)==="/"?n.pathname:"/"+n.pathname}}return o=r(window.location.href),function(a){const c=C.isString(a)?r(a):a;return c.protocol===o.protocol&&c.host===o.host}}():function(){return function(){return!0}}(),dh=fe.hasStandardBrowserEnv?{write(t,e,n,o,r,s){const a=[t+"="+encodeURIComponent(e)];C.isNumber(n)&&a.push("expires="+new Date(n).toGMTString()),C.isString(o)&&a.push("path="+o),C.isString(r)&&a.push("domain="+r),s===!0&&a.push("secure"),document.cookie=a.join("; ")},read(t){const e=document.cookie.match(new RegExp("(^|;\\s*)("+t+")=([^;]*)"));return e?decodeURIComponent(e[3]):null},remove(t){this.write(t,"",Date.now()-864e5)}}:{write(){},read(){return null},remove(){}};function uh(t){return/^([a-z][a-z\d+\-.]*:)?\/\//i.test(t)}function hh(t,e){return e?t.replace(/\/?\/$/,"")+"/"+e.replace(/^\/+/,""):t}function vs(t,e){return t&&!uh(e)?hh(t,e):e}const xs=t=>t instanceof me?{...t}:t;function Qe(t,e){e=e||{};const n={};function o(u,h,f){return C.isPlainObject(u)&&C.isPlainObject(h)?C.merge.call({caseless:f},u,h):C.isPlainObject(h)?C.merge({},h):C.isArray(h)?h.slice():h}function r(u,h,f){if(C.isUndefined(h)){if(!C.isUndefined(u))return o(void 0,u,f)}else return o(u,h,f)}function s(u,h){if(!C.isUndefined(h))return o(void 0,h)}function a(u,h){if(C.isUndefined(h)){if(!C.isUndefined(u))return o(void 0,u)}else return o(void 0,h)}function c(u,h,f){if(f in e)return o(u,h);if(f in t)return o(void 0,u)}const l={url:s,method:s,data:s,baseURL:a,transformRequest:a,transformResponse:a,paramsSerializer:a,timeout:a,timeoutMessage:a,withCredentials:a,withXSRFToken:a,adapter:a,responseType:a,xsrfCookieName:a,xsrfHeaderName:a,onUploadProgress:a,onDownloadProgress:a,decompress:a,maxContentLength:a,maxBodyLength:a,beforeRedirect:a,transport:a,httpAgent:a,httpsAgent:a,cancelToken:a,socketPath:a,responseEncoding:a,validateStatus:c,headers:(u,h)=>r(xs(u),xs(h),!0)};return C.forEach(Object.keys(Object.assign({},t,e)),function(h){const f=l[h]||r,m=f(t[h],e[h],h);C.isUndefined(m)&&f!==c||(n[h]=m)}),n}const Bs=t=>{const e=Qe({},t);let{data:n,withXSRFToken:o,xsrfHeaderName:r,xsrfCookieName:s,headers:a,auth:c}=e;e.headers=a=me.from(a),e.url=ps(vs(e.baseURL,e.url),t.params,t.paramsSerializer),c&&a.set("Authorization","Basic "+btoa((c.username||"")+":"+(c.password?unescape(encodeURIComponent(c.password)):"")));let l;if(C.isFormData(n)){if(fe.hasStandardBrowserEnv||fe.hasStandardBrowserWebWorkerEnv)a.setContentType(void 0);else if((l=a.getContentType())!==!1){const[u,...h]=l?l.split(";").map(f=>f.trim()).filter(Boolean):[];a.setContentType([u||"multipart/form-data",...h].join("; "))}}if(fe.hasStandardBrowserEnv&&(o&&C.isFunction(o)&&(o=o(e)),o||o!==!1&&ch(e.url))){const u=r&&s&&dh.read(s);u&&a.set(r,u)}return e},fh=typeof XMLHttpRequest<"u"&&function(t){return new Promise(function(n,o){const r=Bs(t);let s=r.data;const a=me.from(r.headers).normalize();let{responseType:c,onUploadProgress:l,onDownloadProgress:u}=r,h,f,m,g,p;function E(){g&&g(),p&&p(),r.cancelToken&&r.cancelToken.unsubscribe(h),r.signal&&r.signal.removeEventListener("abort",h)}let w=new XMLHttpRequest;w.open(r.method.toUpperCase(),r.url,!0),w.timeout=r.timeout;function M(){if(!w)return;const L=me.from("getAllResponseHeaders"in w&&w.getAllResponseHeaders()),z={data:!c||c==="text"||c==="json"?w.responseText:w.response,status:w.status,statusText:w.statusText,headers:L,config:t,request:w};Ss(function(ke){n(ke),E()},function(ke){o(ke),E()},z),w=null}"onloadend"in w?w.onloadend=M:w.onreadystatechange=function(){!w||w.readyState!==4||w.status===0&&!(w.responseURL&&w.responseURL.indexOf("file:")===0)||setTimeout(M)},w.onabort=function(){w&&(o(new D("Request aborted",D.ECONNABORTED,t,w)),w=null)},w.onerror=function(){o(new D("Network Error",D.ERR_NETWORK,t,w)),w=null},w.ontimeout=function(){let F=r.timeout?"timeout of "+r.timeout+"ms exceeded":"timeout exceeded";const z=r.transitional||ys;r.timeoutErrorMessage&&(F=r.timeoutErrorMessage),o(new D(F,z.clarifyTimeoutError?D.ETIMEDOUT:D.ECONNABORTED,t,w)),w=null},s===void 0&&a.setContentType(null),"setRequestHeader"in w&&C.forEach(a.toJSON(),function(F,z){w.setRequestHeader(z,F)}),C.isUndefined(r.withCredentials)||(w.withCredentials=!!r.withCredentials),c&&c!=="json"&&(w.responseType=r.responseType),u&&([m,p]=un(u,!0),w.addEventListener("progress",m)),l&&w.upload&&([f,g]=un(l),w.upload.addEventListener("progress",f),w.upload.addEventListener("loadend",g)),(r.cancelToken||r.signal)&&(h=L=>{w&&(o(!L||L.type?new ct(null,t,w):L),w.abort(),w=null)},r.cancelToken&&r.cancelToken.subscribe(h),r.signal&&(r.signal.aborted?h():r.signal.addEventListener("abort",h)));const O=sh(r.url);if(O&&fe.protocols.indexOf(O)===-1){o(new D("Unsupported protocol "+O+":",D.ERR_BAD_REQUEST,t));return}w.send(s||null)})},mh=(t,e)=>{const{length:n}=t=t?t.filter(Boolean):[];if(e||n){let o=new AbortController,r;const s=function(u){if(!r){r=!0,c();const h=u instanceof Error?u:this.reason;o.abort(h instanceof D?h:new ct(h instanceof Error?h.message:h))}};let a=e&&setTimeout(()=>{a=null,s(new D(`timeout ${e} of ms exceeded`,D.ETIMEDOUT))},e);const c=()=>{t&&(a&&clearTimeout(a),a=null,t.forEach(u=>{u.unsubscribe?u.unsubscribe(s):u.removeEventListener("abort",s)}),t=null)};t.forEach(u=>u.addEventListener("abort",s));const{signal:l}=o;return l.unsubscribe=()=>C.asap(c),l}},ph=function*(t,e){let n=t.byteLength;if(n<e){yield t;return}let o=0,r;for(;o<n;)r=o+e,yield t.slice(o,r),o=r},gh=async function*(t,e){for await(const n of yh(t))yield*ph(n,e)},yh=async function*(t){if(t[Symbol.asyncIterator]){yield*t;return}const e=t.getReader();try{for(;;){const{done:n,value:o}=await e.read();if(n)break;yield o}}finally{await e.cancel()}},Ms=(t,e,n,o)=>{const r=gh(t,e);let s=0,a,c=l=>{a||(a=!0,o&&o(l))};return new ReadableStream({async pull(l){try{const{done:u,value:h}=await r.next();if(u){c(),l.close();return}let f=h.byteLength;if(n){let m=s+=f;n(m)}l.enqueue(new Uint8Array(h))}catch(u){throw c(u),u}},cancel(l){return c(l),r.return()}},{highWaterMark:2})},hn=typeof fetch=="function"&&typeof Request=="function"&&typeof Response=="function",Is=hn&&typeof ReadableStream=="function",wh=hn&&(typeof TextEncoder=="function"?(t=>e=>t.encode(e))(new TextEncoder):async t=>new Uint8Array(await new Response(t).arrayBuffer())),Rs=(t,...e)=>{try{return!!t(...e)}catch{return!1}},bh=Is&&Rs(()=>{let t=!1;const e=new Request(fe.origin,{body:new ReadableStream,method:"POST",get duplex(){return t=!0,"half"}}).headers.has("Content-Type");return t&&!e}),$s=64*1024,oi=Is&&Rs(()=>C.isReadableStream(new Response("").body)),fn={stream:oi&&(t=>t.body)};hn&&(t=>{["text","arrayBuffer","blob","formData","stream"].forEach(e=>{!fn[e]&&(fn[e]=C.isFunction(t[e])?n=>n[e]():(n,o)=>{throw new D(`Response type '${e}' is not supported`,D.ERR_NOT_SUPPORT,o)})})})(new Response);const Ch=async t=>{if(t==null)return 0;if(C.isBlob(t))return t.size;if(C.isSpecCompliantForm(t))return(await new Request(fe.origin,{method:"POST",body:t}).arrayBuffer()).byteLength;if(C.isArrayBufferView(t)||C.isArrayBuffer(t))return t.byteLength;if(C.isURLSearchParams(t)&&(t=t+""),C.isString(t))return(await wh(t)).byteLength},Sh=async(t,e)=>{const n=C.toFiniteNumber(t.getContentLength());return n??Ch(e)},ri={http:qu,xhr:fh,fetch:hn&&(async t=>{let{url:e,method:n,data:o,signal:r,cancelToken:s,timeout:a,onDownloadProgress:c,onUploadProgress:l,responseType:u,headers:h,withCredentials:f="same-origin",fetchOptions:m}=Bs(t);u=u?(u+"").toLowerCase():"text";let g=mh([r,s&&s.toAbortSignal()],a),p;const E=g&&g.unsubscribe&&(()=>{g.unsubscribe()});let w;try{if(l&&bh&&n!=="get"&&n!=="head"&&(w=await Sh(h,o))!==0){let z=new Request(e,{method:"POST",body:o,duplex:"half"}),we;if(C.isFormData(o)&&(we=z.headers.get("content-type"))&&h.setContentType(we),z.body){const[ke,je]=ks(w,un(Es(l)));o=Ms(z.body,$s,ke,je)}}C.isString(f)||(f=f?"include":"omit");const M="credentials"in Request.prototype;p=new Request(e,{...m,signal:g,method:n.toUpperCase(),headers:h.normalize().toJSON(),body:o,duplex:"half",credentials:M?f:void 0});let O=await fetch(p);const L=oi&&(u==="stream"||u==="response");if(oi&&(c||L&&E)){const z={};["status","statusText","headers"].forEach(pt=>{z[pt]=O[pt]});const we=C.toFiniteNumber(O.headers.get("content-length")),[ke,je]=c&&ks(we,un(Es(c),!0))||[];O=new Response(Ms(O.body,$s,ke,()=>{je&&je(),E&&E()}),z)}u=u||"text";let F=await fn[C.findKey(fn,u)||"text"](O,t);return!L&&E&&E(),await new Promise((z,we)=>{Ss(z,we,{data:F,headers:me.from(O.headers),status:O.status,statusText:O.statusText,config:t,request:p})})}catch(M){throw E&&E(),M&&M.name==="TypeError"&&/fetch/i.test(M.message)?Object.assign(new D("Network Error",D.ERR_NETWORK,t,p),{cause:M.cause||M}):D.from(M,M&&M.code,t,p)}})};C.forEach(ri,(t,e)=>{if(t){try{Object.defineProperty(t,"name",{value:e})}catch{}Object.defineProperty(t,"adapterName",{value:e})}});const As=t=>`- ${t}`,kh=t=>C.isFunction(t)||t===null||t===!1,Ns={getAdapter:t=>{t=C.isArray(t)?t:[t];const{length:e}=t;let n,o;const r={};for(let s=0;s<e;s++){n=t[s];let a;if(o=n,!kh(n)&&(o=ri[(a=String(n)).toLowerCase()],o===void 0))throw new D(`Unknown adapter '${a}'`);if(o)break;r[a||"#"+s]=o}if(!o){const s=Object.entries(r).map(([c,l])=>`adapter ${c} `+(l===!1?"is not supported by the environment":"is not available in the build"));let a=e?s.length>1?`since :
|
|
36
36
|
`+s.map(As).join(`
|
package/package.json
CHANGED