sprof 0.0.101 → 0.0.102

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 CHANGED
@@ -8209,7 +8209,7 @@ class Ef {
8209
8209
  this.user.reset(), this.tokens.reset(), this.isAuth = !1;
8210
8210
  }
8211
8211
  Actualize() {
8212
- if (this.user.actualize(), this.tokens.actualize(), this.user.get() && this.tokens.getAccessToken() && this.tokens.getRefreshToken()) {
8212
+ if (this.tokens.actualize(), this.tokens.getAccessToken()) {
8213
8213
  this.isAuth = !0;
8214
8214
  return;
8215
8215
  }
@@ -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 zr(t,e){var n,r;return t&&e?(n=""+t+e[0].toUpperCase()+e.slice(1),r=t+"-"+e):(n=t||e,r=t||e),{name:n,classname:r}}function Vr(t){return/^blob:/.test(t)}function Tr(t){return Vr(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 r={};return Lt(t)?(Object.keys(e).forEach(function(o){ie(t[o])?r[o]=e[o]:Lt(e[o])?Lt(t[o])?r[o]=$n(t[o],e[o],n[o]):r[o]=t[o]?e[o]:n[o]:e[o]===!0||e[o]===!1?r[o]=!!t[o]:r[o]=t[o]}),r):t?e:n}function Ht(t){var e=Number(t);return Number.isNaN(e)?t:e}function Fr(t){return typeof(t=="number"||function(e){return typeof e=="object"&&e!==null}(t)&&toString.call(t)=="[object Number]")&&!Dr(t)}function Dr(t){return t!=t}function Or(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,r,o,s){this.type="drag",this.nativeEvent=e,this.position=r,this.previousPosition=o,this.element=n,this.anchor=s}return t.prototype.shift=function(){var e=this,n=e.element,r=e.anchor,o=e.position;if(n){var s=n.getBoundingClientRect(),a=s.left,c=s.top;return{left:o.left-a-r.left,top:o.top-c-r.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,r=e.right,o=e.bottom,s=e.top;this.anchor={left:t.clientX-n,top:t.clientY-s,bottom:o-t.clientY,right:r-t.clientX}},processMove:function(t,e){var n=Ge(e);if(this.touches.length){if(this.touches.length===1&&n.length===1){var r=this.$refs.draggable;this.$emit("drag",new jl(t,r,{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,r,o,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"),Lr={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=zr(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"]};Lr.render=function(t,e,n,r,o,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"),Hr={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"]};Hr.render=function(t,e,n,r,o,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"],qr={left:0,top:0,width:0,height:0};function Ur(t,e,n){return!(n=n||["width","height","left","top"]).some(function(r){return t[r]!==e[r]})}function Ne(t){return{left:t.left,top:t.top,right:t.left+t.width,bottom:t.top+t.height}}function rt(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(r){var o=e[r],s=Ne(t)[r];n[r]=o!==void 0&&s!==void 0?r==="left"||r==="top"?Math.max(0,o-s):Math.max(0,s-o):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,r){if(e!==1){if(n){var o=se(t);return{width:t.width*e,height:t.height*e,left:t.left+t.width*(1-e)/2+(n.left-o.left)*(1-e),top:t.top+t.height*(1-e)/2+(n.top-o.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 ot(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},r=bt(t,e);return r.left&&r.left>0?n.left=r.left:r.right&&r.right>0&&(n.left=-r.right),r.top&&r.top>0?n.top=r.top:r.bottom&&r.bottom>0&&(n.top=-r.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 _r(t,e){var n=j(t),r=j(e);return e.width<1/0&&e.height<1/0?n>r?{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 Wr(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,ot(t,e)):Math.min((t.height+n.top+n.bottom)/t.height,ot(t,e)):1}function ae(t,e,n){n===void 0&&(n=!1);var r=st(t,e);return he(t,n?qt(r):r)}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 jr(t,e,n){n===void 0&&(n=!0);var r={};return Ae.forEach(function(o){var s=t[o],a=e[o];s!==void 0&&a!==void 0?r[o]=o==="left"||o==="top"?n?Math.max(s,a):Math.min(s,a):n?Math.min(s,a):Math.max(s,a):a!==void 0?r[o]=a:s!==void 0&&(r[o]=s)}),r}function _t(t,e){return jr(t,e,!0)}function Gr(t){var e=t.size,n=t.aspectRatio,r=t.ignoreMinimum,o=t.sizeRestrictions;return!!((e.correctRatio||j(e)>=n.minimum&&j(e)<=n.maximum)&&e.height<=o.maxHeight&&e.width<=o.maxWidth&&e.width&&e.height&&(r||e.height>=o.minHeight&&e.width>=o.minWidth))}function Zr(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,r=t.sizeRestrictions,o={minimum:t.aspectRatio&&t.aspectRatio.minimum||0,maximum:t.aspectRatio&&t.aspectRatio.maximum||1/0},s={width:Math.max(r.minWidth,Math.min(r.maxWidth,e)),height:Math.max(r.minHeight,Math.min(r.maxHeight,n))};function a(u,h){return h===void 0&&(h=!1),u.reduce(function(f,m){return Gr({size:m,aspectRatio:o,sizeRestrictions:r,ignoreMinimum:h})&&(!f||Zr(m,{width:e,height:n})<Zr(f,{width:e,height:n}))?m:f},null)}var c=[];o&&[o.minimum,o.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})}),Gr({size:s,aspectRatio:o,sizeRestrictions:r})&&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,r=t.positionRestrictions,o=r===void 0?{}:r,s=he(n,e.directions);return he(s,st(s,o))}function Kl(t){var e=t.coordinates,n=t.transform,r=t.imageSize,o=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:r,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:o,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,r=t.coordinates,o=t.visibleArea;t.aspectRatio;var s=t.stencilSize,a=t.sizeRestrictions,c=t.positionRestrictions;t.stencilReference;var l,u,h,f=N({},r),m=N({},o),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,rt(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,r=t.boundaries,o=t.coordinates,s=t.visibleArea;t.aspectRatio,t.stencilSize,t.sizeRestrictions;var a=t.positionRestrictions;t.stencilReference;var c=N({},o),l=N({},s);if(o&&s&&e.type!=="manipulateImage"){var u={width:0,height:0};l.width,r.width,j(r)>j(c)?(u.height=.8*r.height,u.width=u.height*j(c)):(u.width=.8*r.width,u.height=u.width*j(c));var h=Ut(l=Ce(l,c.width*r.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,rt(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,r=t.visibleArea,o=t.getAreaRestrictions,s=N({},r),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,ot(s,o({visibleArea:s,type:"resize"})))):l>c&&(s=Ce(s,Math.min(a.height/s.height,ot(s,o({visibleArea:s,type:"resize"}))))),s=ae(s=he(s,qt(st(a,Ne(s)))),o({visibleArea:s,type:"move"}))}return{visibleArea:s,coordinates:a}}function ic(t){var e=t.imageSize,n=t.visibleArea,r=t.coordinates,o=n||e;return{left:(n?n.left:0)+o.width/2-r.width/2,top:(n?n.top:0)+o.height/2-r.height/2}}function rc(t){var e=t.imageSize,n=t.visibleArea,r=t.aspectRatio,o=t.sizeRestrictions,s=n||e,a=Math.min(r.maximum||1/0,Math.max(r.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:r,sizeRestrictions:o}))}function oc(t){var e,n,r=t.imageSize,o=t.visibleArea,s=t.boundaries,a=t.aspectRatio,c=t.sizeRestrictions,l=t.stencilSize,u=o||r;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,r=t.imageSize,o=j(t.boundaries);if(n){var s={height:Math.max(n.height,r.height),width:Math.max(n.width,r.width)},a=_r({width:j(s)>o?s.width:s.height*o,height:j(s)>o?s.width/o: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},r))),u={};return!l.left&&!l.right&&c.width<=r.width&&(u.left=0,u.right=r.width),!l.top&&!l.bottom&&c.height<=r.height&&(u.top=0,u.bottom=r.height),ae(c,u)}var h=j(r);return a={height:h>o?r.height:r.width/o,width:h>o?r.height*o:r.width},{left:r.width/2-a.width/2,top:r.height/2-a.height/2,width:a.width,height:a.height}}function Wt(t,e){return jr(t,Ne(e))}function ac(t){var e=t.event,n=t.coordinates,r=t.visibleArea,o=t.sizeRestrictions,s=t.getAreaRestrictions,a=t.positionRestrictions,c=t.adjustStencil,l=e.scale,u=e.move,h=N({},r),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(o.minWidth?o.minWidth/f.width:0,o.minHeight?o.minHeight/f.height:0),maximum:Math.min(o.maxWidth?o.maxWidth/f.width:1/0,o.maxHeight?o.maxHeight/f.height:1/0,ot(f,a))},area:{maximum:ot(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-r.left,M=r.width+r.left-(n.width+n.left),O=n.top-r.top,L=r.height+r.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,r=t.coordinates,o=t.visibleArea,s=t.sizeRestrictions,a=t.positionRestrictions,c=t.imageSize,l=t.previousImageSize,u=t.angle,h=N({},r),f=N({},o),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,rt(se(h),se(r))),n({visibleArea:f,type:"move"}))}}function cc(t){var e=t.flip,n=t.previousFlip,r=t.rotate,o=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},-r),g=qe(se(l),-r),p=qe({left:h?m.left-(g.left-m.left):g.left,top:f?m.top-(g.top-m.top):g.top},r);l=he(l,rt(p,se(l))),g=qe(se(u),-r),u=ae(u=he(u,rt(p=qe({left:h?m.left-(g.left-m.left):g.left,top:f?m.top-(g.top-m.top):g.top},r),se(u))),o({visibleArea:u,type:"move"}))}return{coordinates:l,visibleArea:u}}function Xr(t){var e=t.directions,n=t.coordinates,r=t.positionRestrictions,o=r===void 0?{}:r,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),o);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),o));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:Lr},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,r,o,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:Hr},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,r,o,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],Jr={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 r=zr(e,n),o=r.name,s=r.classname;t.push({name:o,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,r=this.linesWrappersClasses;return{root:On(),handlers:t,handlersWrappers:e,lines:n,linesWrappers:r}},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,r=this.height;return this.points.forEach(function(o){if(t.handlers[o.name]){var s={name:o.name,component:t.handlersComponent,class:K(t.classes.handlers.default,t.classes.handlers[o.name]),wrapperClass:K(t.classes.handlersWrappers.default,t.classes.handlersWrappers[o.name]),hoverClass:t.classes.handlers.hover,verticalDirection:o.verticalDirection,horizontalDirection:o.horizontalDirection,disabled:!t.resizable};if(n&&r){var a=o.horizontalDirection,c=o.verticalDirection,l=a==="east"?n:a==="west"?0:n/2,u=c==="south"?r:c==="north"?0:r/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({},o.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 r,o=t.shift(),s=o.left,a=o.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?r="width":n&&!e&&(r="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:r}))}},emits:["resize","resize-end"]};Jr.render=function(t,e,n,r,o,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"),Yr={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()):Or({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,r=e.top;this.anchor={x:t.clientX-n,y:t.clientY-r}},processMove:function(t,e){var n=Ge(e);if(this.touches.length){var r=this.$refs.container.getBoundingClientRect(),o=r.left,s=r.top;this.touches.length===1&&n.length===1&&this.$emit("move",new An({left:n[0].clientX-(o+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"]};Yr.render=function(t,e,n,r,o,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 r=new FileReader;r.onload=function(l){e(l.target.result)},s=t,a=function(l){r.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 o=new XMLHttpRequest;o.onreadystatechange=function(){o.readyState===4&&(o.status===200||o.status===0?e(o.response):n("Warning: could not load an image to parse its orientation"),o=null)},o.onprogress=function(){o.getResponseHeader("content-type")!=="image/jpeg"&&o.abort()},o.withCredentials=!1,o.open("GET",t,!0),o.responseType="arraybuffer",o.send(null)}else n("Error: the image is empty")}catch(l){n(l)}var s,a,c})}function Qr(t){var e=t.rotate,n=t.flip,r=t.scaleX,o=t.scaleY,s="";return s+=" rotate("+e+"deg) ",s+=" scaleX("+r*(n.horizontal?-1:1)+") ",s+=" scaleY("+o*(n.vertical?-1:1)+") "}function wc(t){try{var e,n=new DataView(t),r=void 0,o=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&&(r=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(r);if(((o=u===18761)||u===19789)&&n.getUint16(r+2,o)===42){var h=n.getUint32(r+4,o);h>=8&&(a=r+h)}}if(a){for(var f=n.getUint16(a,o),m=0;m<f;m++)if(l=a+12*m+2,n.getUint16(l,o)===274){l+=8,e=n.getUint16(l,o),n.setUint16(l,1,o);break}}return e}catch{return null}}function Kr(t,e){var n=e.getBoundingClientRect(),r=n.left,o=n.top,s={left:0,top:0},a=0;return t.forEach(function(c){s.left+=(c.clientX-r)/t.length,s.top+=(c.clientY-o)/t.length}),t.forEach(function(c){a+=Or({x:s.left,y:s.top},{x:c.clientX-r,y:c.clientY-o})}),{centerMass:s,spread:a,count:t.length}}var eo={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=Kr(e,this.$refs.container),r=this.oldGeometricProperties;r.count===n.count&&r.count>1&&this.$emit("resize",new wt({left:r.centerMass.left-n.centerMass.left,top:r.centerMass.top-n.centerMass.top},{factor:r.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(),r=n.left,o=n.top,s=n.bottom,a=n.right;this.touches=Ge(t.touches).filter(function(c){return c.clientX>r&&c.clientX<a&&c.clientY>o&&c.clientY<s}),this.oldGeometricProperties=Kr(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(r){return!r.identifier||e.touches.find(function(o){return o.identifier===r.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,r=e.top,o=1+this.wheelResize.ratio*(a=t.deltaY||t.detail||t.wheelDelta,(c=+a)==0||Dr(c)?c:c>0?1:-1),s={left:t.clientX-n,top:t.clientY-r};this.$emit("resize",new wt({},{factor:o,center:s})),this.touches.length||this.debouncedProcessEnd()}var a,c}},emits:["resize","move","transform-end"]};eo.render=function(t,e,n,r,o,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:eo},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,r,o,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"),to={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,r=this.imageSize.height,o=Wr({width:n,height:r},e.rotate),s={width:"".concat(n,"px"),height:"".concat(r,"px"),left:"0px",top:"0px"},a={rotate:{left:(n-o.width)*e.scaleX/2,top:(r-o.height)*e.scaleY/2},scale:{left:(1-e.scaleX)*n/2,top:(1-e.scaleY)*r/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) ")+Qr(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()}}};to.render=function(t,e,n,r,o,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 no={components:{Preview:to},inheritAttrs:!1};no.render=function(t,e,n,r,o,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"),io={name:"RectangleStencil",components:{StencilPreview:no,BoundingBox:Jr,DraggableArea:Yr},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,r=t.left,o=t.top,s={width:"".concat(n,"px"),height:"".concat(e,"px"),transform:"translate(".concat(r,"px, ").concat(o,"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"]};io.render=function(t,e,n,r,o,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"),ro={name:"Cropper",components:{BackgroundWrapper:Hn},props:{src:{type:String,default:null},stencilComponent:{type:[Object,String],default:function(){return io}},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,r=t.aspectRatio,o=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=Xr({coordinates:a,directions:l,sizeRestrictions:s,positionRestrictions:o})).width,f=Pe(a,l).height,m=c.preserveRatio?j(a):zn(h/f,r);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=Xr({directions:l,coordinates:a,sizeRestrictions:s,positionRestrictions:o,preserveRatio:!0,compensate:c.compensate})}return h=Pe(a,l).width,f=Pe(a,l).height,(m=c.preserveRatio?j(a):zn(h/f,r))&&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:o})}},moveAlgorithm:{type:Function,default:Tn},initStretcher:{type:Function,default:function(t){var e=t.stretcher,n=t.imageSize,r=j(n);e.style.width=n.width+"px",e.style.height=e.clientWidth/r+"px",e.style.width=e.clientWidth+"px"}},fitCoordinates:{type:Function,default:function(t){var e=t.visibleArea,n=t.coordinates,r=t.aspectRatio,o=t.sizeRestrictions,s=t.positionRestrictions,a=N(N({},n),Oe({width:n.width,height:n.height,aspectRatio:r,sizeRestrictions:{maxWidth:e.width,maxHeight:e.height,minHeight:Math.min(e.height,o.minHeight),minWidth:Math.min(e.width,o.minWidth)}}));return a=ae(a=he(a,rt(se(n),se(a))),_t(Ne(e),s))}},fitVisibleArea:{type:Function,default:function(t){var e=t.visibleArea,n=t.boundaries,r=t.getAreaRestrictions,o=t.coordinates,s=N({},e);s.height=s.width/j(n),s.top+=(e.height-s.height)/2,(o.height-s.height>0||o.width-s.width>0)&&(s=Ce(s,Math.max(o.height/s.height,o.width/s.width)));var a=qt(st(o,Ne(s=Ce(s,Ut(s,r({visibleArea:s,type:"resize"}))))));return s.width<o.width&&(a.left=0),s.height<o.height&&(a.top=0),s=ae(s=he(s,a),r({visibleArea:s,type:"move"}))}},areaRestrictionsAlgorithm:{type:Function,default:function(t){var e=t.visibleArea,n=t.boundaries,r=t.imageSize,o=t.imageRestriction,s=t.type,a={};return o==="fill-area"?a={left:0,top:0,right:r.width,bottom:r.height}:o==="fit-area"&&(j(n)>j(r)?(a={top:0,bottom:r.height},e&&s==="move"&&(e.width>r.width?(a.left=-(e.width-r.width)/2,a.right=r.width-a.left):(a.left=0,a.right=r.width))):(a={left:0,right:r.width},e&&s==="move"&&(e.height>r.height?(a.top=-(e.height-r.height)/2,a.bottom=r.height-a.top):(a.top=0,a.bottom=r.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({},qr)}},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(r){var o=r.areaRestrictions,s=r.sizeRestrictions,a=r.boundaries,c=r.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(o),h=_r(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,r=t.left,o=t.top;return{width:e/this.coefficient,height:n/this.coefficient,left:(r-this.visibleArea.left)/this.coefficient,top:(o-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},r=W(W({},this.imageTransforms),{},{scaleX:this.imageTransforms.scaleX*(this.imageAttributes.width/t.width),scaleY:this.imageTransforms.scaleY*(this.imageAttributes.height/t.height)}),o={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)")+Qr(r)};return this.transitionsOptions.enabled&&(o.transition="".concat(this.transitionsOptions.time,"ms ").concat(this.transitionsOptions.timingFunction)),o}},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]:{},r=n.transitions,o=r===void 0||r;this.onManipulateImage(new wt({},{factor:1/t,center:e}),{normalize:!1,transitions:o})},move:function(t,e){var n=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{},r=n.transitions,o=r===void 0||r;this.onManipulateImage(new wt({left:t||0,top:e||0}),{normalize:!1,transitions:o})},setCoordinates:function(t){var e=this,n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=n.autoZoom,o=r===void 0||r,s=n.transitions,a=s===void 0||s;this.$nextTick(function(){e.imageLoaded?(e.transitionsActive||(a&&e.enableTransitions(),e.coordinates=e.applyTransform(t),o&&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,r=e.sizeRestrictions,o=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>r.maxWidth?s.width=Math.floor(n.width):s.width<r.minWidth&&(s.width=Math.ceil(n.width)),s.height>r.maxHeight?s.height=Math.floor(n.height):s.height<r.minHeight&&(s.height=Math.ceil(n.height)),ae(s,o)}(W(W({},this.getPublicProperties()),{},{positionRestrictions:Wt(this.positionRestrictions,this.visibleArea),coordinates:t})):t},processAutoZoom:function(t,e,n,r){var o=this.autoZoomAlgorithm;o||(o=this.stencilSize?ec:this.autoZoom?tc:nc);var s=o({event:{type:t,params:r},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:!Ur(s.visibleArea,e)||!Ur(s.coordinates,n)})},runAutoZoom:function(t){var e=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},n=e.transitions,r=n!==void 0&&n,o=Ul(e,bc),s=this.processAutoZoom(t,this.visibleArea,this.coordinates,o),a=s.visibleArea,c=s.coordinates,l=s.changed;r&&l&&this.enableTransitions(),this.visibleArea=a,this.coordinates=c,r&&l&&this.debouncedDisableTransitions()},normalizeEvent:function(t){return function(e){var n=e.event,r=e.visibleArea,o=e.coefficient;if(n.type==="manipulateImage")return N(N({},n),{move:{left:n.move&&n.move.left?o*n.move.left:0,top:n.move&&n.move.top?o*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*o+r.left,top:n.scale.center.top*o+r.top}:null}});if(n.type==="resize"){var s=N(N({},n),{directions:N({},n.directions)});return Ae.forEach(function(c){s.directions[c]*=o}),s}if(n.type==="move"){var a=N(N({},n),{directions:N({},n.directions)});return Jl.forEach(function(c){a.directions[c]*=o}),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=Wr(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,r=W({minWidth:0,minHeight:0,maxWidth:1/0,maxHeight:1/0,maxArea:this.maxCanvasSize,imageSmoothingEnabled:!0,imageSmoothingQuality:"high",fillColor:"transparent"},this.canvas),o=function(c){return c.find(function(l){return u=l,!Number.isNaN(parseFloat(u))&&isFinite(u);var u})},s=Oe({sizeRestrictions:{minWidth:o([r.width,r.minWidth])||0,minHeight:o([r.height,r.minHeight])||0,maxWidth:o([r.width,r.maxWidth])||1/0,maxHeight:o([r.height,r.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(r.maxArea&&s.width*s.height>r.maxArea){var a=Math.sqrt(r.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,r),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,r=this.visibleArea&&e?Wt(this.positionRestrictions,this.visibleArea):this.positionRestrictions;return Kl({transform:t,coordinates:this.coordinates,imageSize:this.imageSize,sizeRestrictions:n,positionRestrictions:r,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?oc:rc);var n=this.sizeRestrictions;n.minWidth,n.minHeight,n.maxWidth,n.maxHeight;var r=it(e)?e({boundaries:this.boundaries,imageSize:this.imageSize,aspectRatio:this.getAspectRatio(),sizeRestrictions:this.sizeRestrictions,stencilSize:this.getStencilSize(),visibleArea:this.visibleArea}):e,o=this.defaultPosition||ic,s=[r,function(a){var c=a.coordinates;return W({},it(o)?o({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 r={cropper:n,imageSize:t.imageSize};if(it(t.defaultBoundaries)?t.boundaries=t.defaultBoundaries(r):t.defaultBoundaries==="fit"?t.boundaries=function(o){var s=o.cropper,a=o.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}}(r):t.boundaries=function(o){var s=o.cropper;return{width:s.clientWidth,height:s.clientHeight}}(r),!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,r,o,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,r=e.boundaries,o=e.getAreaRestrictions,s=N({},n),a=j(r),s.width/s.height!==a&&(s.height=s.width/a),ae(s,o({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(o){if(Tr(o))return!1;var s=window.location,a=/(\w+:)?(?:\/\/)([\w.-]+)?(?::(\d+))?\/?/.exec(o)||[],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 r=(t=this.src,new Promise(function(o){yc(t).then(function(s){var a=wc(s);o(s?{source:t,arrayBuffer:s,orientation:a}:{source:t,arrayBuffer:null,orientation:null})}).catch(function(s){console.warn(s),o({source:t,arrayBuffer:null,orientation:null})})}));setTimeout(function(){r.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,r=t.arrayBuffer,o=t.orientation;this.imageAttributes.revoke&&this.imageAttributes.src&&URL.revokeObjectURL(this.imageAttributes.src),this.imageAttributes.revoke=!1,r&&o&&o>1?Vr(n)||!Tr(n)?(this.imageAttributes.src=URL.createObjectURL(new Blob([r])),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(""))}(r):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}(o),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,r=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,r),minHeight:Math.max(n.minHeight,r)},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,r=n!==void 0&&n,o=e.normalize,s=o===void 0||o;r&&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(),r&&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,r=n===void 0?"move":n;return this.areaRestrictionsAlgorithm({boundaries:this.boundaries,imageSize:this.imageSize,imageRestriction:this.imageRestriction,visibleArea:e,type:r})},getAspectRatio:function(t){var e,n,r=this.stencilProps,o=r.aspectRatio,s=r.minAspectRatio,a=r.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(o)?s:o),ie(n)&&(n=ie(o)?a:o),!t&&(ie(e)||ie(n))){var l=this.getStencilSize(),u=l?j(l):null;ie(e)&&(e=Fr(u)?u:void 0),ie(n)&&(n=Fr(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,r=t.aspectRatio,zn(j(o=it(n)?n({boundaries:e,aspectRatio:r}):n),r)&&(o=Oe({sizeRestrictions:{maxWidth:e.width,maxHeight:e.height,minWidth:0,minHeight:0},width:o.width,height:o.height,aspectRatio:{minimum:r.minimum,maximum:r.maximum}})),(o.width>e.width||o.height>e.height)&&(o=Oe({sizeRestrictions:{maxWidth:e.width,maxHeight:e.height,minWidth:0,minHeight:0},width:o.width,height:o.height,aspectRatio:{minimum:j(o),maximum:j(o)}})),o;var t,e,n,r,o},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({},qr)},flip:function(t,e){var n=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{},r=n.transitions,o=r===void 0||r;if(!this.transitionsActive){o&&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(),o&&this.debouncedDisableTransitions()}},rotate:function(t){var e=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},n=e.transitions,r=n===void 0||n;if(!this.transitionsActive){r&&this.enableTransitions();var o=W({},this.imageSize);this.appliedImageTransforms.rotate+=t;var s=lc({visibleArea:this.visibleArea,coordinates:this.coordinates,previousImageSize:o,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(),r&&this.debouncedDisableTransitions()}}},emits:["change","error","ready"]},Cc={key:0,ref:"canvas",style:{display:"none"}},Sc={key:1,ref:"sourceCanvas",style:{display:"none"}};ro.render=function(t,e,n,r,o,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:o.imageAttributes.crossOrigin,src:o.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:o.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,o.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"},oo=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,r=e,o=S.S.Cropper.Cropper(),s=i.ref(n.defaultRatio);o.ratio=s.value;const a=async()=>{s.value===0?o.ratio=0:o.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();o.ratio===0&&(s.value=c.value.width/c.value.height),g&&g.canvas.toBlob(p=>{var E;r("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(ro),{ref_key:"cropperRef",ref:h,src:i.unref(o).src,"stencil-props":{aspectRatio:i.unref(o).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,r=e,o=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&&r("after-close")});const h=()=>{r("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 r("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(o)]),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"]]),so=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),r=e,o=s=>{n.value=!n.value,r("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=>o(h)},null,8,["text","onClick"]))),128)),i.createVNode(l,{type:"admin",color:"blue",text:"Сбросить",onClick:a[0]||(a[0]=h=>o(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"},ao=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"},lo=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=r=>{e.value=r};return i.watch(()=>t.initActiveIdx,()=>{n(t.initActiveIdx)}),{changeActiveId:n,activeIdx:e}}});function Pc(t,e,n,r,o,s){return i.openBlock(),i.createElementBlock("div",null,[i.renderSlot(t.$slots,"default",{activeIdx:t.activeIdx,changeActiveId:t.changeActiveId})])}const co=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"),r=()=>{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:r}}}),Vc=["for"],Tc={class:"inside-icon"};function Fc(t,e,n,r,o,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 uo=x(zc,[["render",Fc],["__scopeId","data-v-0ea9a95f"]]),Dc={class:"tab"},Oc={class:"rotate"},ho=x(i.defineComponent({__name:"VerticalCollapseContainer",setup(t){const e=i.ref(!1),n=async()=>{e.value=!e.value};return(r,o)=>{const s=i.resolveComponent("ArrowRight"),a=i.resolveComponent("ArrowLeft");return i.openBlock(),i.createElementBlock(i.Fragment,null,[i.createElementVNode("div",Dc,[i.renderSlot(r.$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(r.$slots,"inside-content-left",{},void 0,!0)],4),i.createElementVNode("div",{class:"arrow-bar",onClick:n},[i.createElementVNode("div",Oc,[i.renderSlot(r.$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(r.$slots,"inside-content-right",{},void 0,!0)],4)]),i.createVNode(a),i.createVNode(s)],64)}}}),[["__scopeId","data-v-4ccaade5"]]),Lc={class:"add-block_body"},fo=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 r=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(r,{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"]]),mo=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"},po=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 r=i.resolveComponent("PSticky"),o=i.resolveComponent("PContainer");return i.openBlock(),i.createBlock(o,{background:t.background,margin:t.margin,padding:t.padding},{default:i.withCtx(()=>[i.createVNode(r,{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"},go=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"},yo=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,r=i.ref(!1),o=e,s=i.computed(()=>n.GetButtons()),a=async c=>{if(console.log(c),!c.submit)return n.SetStatus(c.GetStatus());const l=n.Validate();if(l.length>0){S.UI.Notify.Error(l.join(", "));return}o("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(r),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-cab1e7ef"]]),wo=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,r=e,o=a=>{a.key==="Escape"&&s()};i.onMounted(()=>{document.body.addEventListener("keydown",o)}),i.onBeforeUnmount(()=>{document.body.removeEventListener("keydown",o)});const s=()=>{n.closable&&r("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"],bo=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,r=e,o=i.ref(window.innerWidth),s=i.ref(),a=i.ref(Number(n.tabHeight.replace(/[^+\d]/g,""))),c=()=>{o.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),r("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 r=new Be;return r.id=n??ve.UUID(),r.originalName=e.name,r.file=e.blob,r.fileSystemPath=ve.UUID(),r}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 r="";return n&&(r=`@/assets/img/${n}`),new URL(r,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,r=e,o=S.H.Id.GUID(),s=S.H.Id.GUID(),a=()=>{const u=document.getElementById(o);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),r("upload",n.fileInfo)}},c=()=>{n.fileInfo.clearFile(),r("remove",n.fileInfo)};i.onMounted(()=>{const u=document.getElementById(s);u&&(u.onclick=()=>{var h;return(h=document.getElementById(o))==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(o),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)}}}),Co=x(Qc,[["__scopeId","data-v-cacad4ae"]]),Kc={class:"bg"},_n=x(i.defineComponent({__name:"AuthPage",setup(t){const e=async()=>{await S.S.Auth.Login()};return(n,r)=>{const o=i.resolveComponent("AuthForm");return i.openBlock(),i.createElementBlock("div",Kc,[i.createVNode(o,{width:"760px",margin:"0 auto",onSubmit:e})])}}}),[["__scopeId","data-v-0f012ef7"]]),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"},rd={key:0,class:"result"},od={class:"list"},sd=["onClick"],So=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,r=t,o=i.ref(r.modelValue),s=i.ref([]);async function a(){n("input",o.value),await c()}async function c(){r.searchFunc&&(s.value=await r.searchFunc(o.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(o),"onUpdate:modelValue":h[0]||(h[0]=g=>i.isRef(o)?o.value=g:null),placeholder:"Найти",onInput:a},{right:i.withCtx(()=>[i.createVNode(f)]),_:1},8,["modelValue"]),i.unref(o)?(i.openBlock(),i.createElementBlock("div",rd,[i.createElementVNode("ul",od,[(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"},ko=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,r)=>{const o=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(o,{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:r[0]||(r[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:r[1]||(r[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"]]),Eo=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(r,o)=>{const s=i.resolveComponent("PInput");return i.openBlock(),i.createElementBlock(i.Fragment,null,[i.createVNode(s,{modelValue:e.value.number,"onUpdate:modelValue":o[0]||(o[0]=a=>e.value.number=a),onBlur:n},null,8,["modelValue"]),i.createVNode(s,{modelValue:e.value.description,"onUpdate:modelValue":o[1]||(o[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 vo=x(ld,[["render",cd],["__scopeId","data-v-0f1f2f84"]]),xo=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,r)=>{const o=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(o,{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},Bo=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,r=g=>g?"active":"neutral",o=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:o(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:r(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:r(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:r(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:o(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"]]),Mo=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,r=e,o=i.ref(n.modelValue),s=i.ref(),a=S.S.Search.SearchModel();i.watch(()=>n.focus,()=>{n.focus&&setTimeout(()=>{s.value.focus(),o.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=>{r("select",h),o.value=""},u=h=>{r("input",h),h.length===0&&r("input","")};return(h,f)=>{const m=i.resolveComponent("PAutocomplete");return i.openBlock(),i.createBlock(m,{ref_key:"searchForm",ref:s,modelValue:i.unref(o),"onUpdate:modelValue":f[0]||(f[0]=g=>i.isRef(o)?o.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"},Io=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"},Ro=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,r=e,o=i.ref(!1);i.watch(()=>n.toggle,()=>{o.value=!o.value});const s=a=>{o.value=!o.value,r("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(o)?`calc(${t.sliderOffWidth} - ${t.sliderOnWidth})`:"0",width:t.sliderOnWidth})},[i.createElementVNode("div",{class:"click-line",onClick:c[0]||(c[0]=u=>s(!i.unref(o)))},[i.unref(o)?(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(o)?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"},$o=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,r=e,o=i.ref(!1),s=i.ref(window.matchMedia("(max-width: 768px)").matches),a=l=>{r("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}),o.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"],Ao=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]:"Матрица с несколькими выборами"},r=e,o=s=>{r("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:o},{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"},No=x(i.defineComponent({__name:"SingleNameToggleForm",props:{withName:{type:Object,required:!0}},emits:["submit"],setup(t,{emit:e}){const n=t,r=e,o=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),o.value=!o.value,r("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:o.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 Po(t,e){const n=[],r=e||Me.Asc,o=r===Me.Asc?Me.Desc:Me.Asc;return Object.values(t).forEach(s=>{n.push(s(r)),n.push(s(o))}),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=Po(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"],zo=x(i.defineComponent({__name:"SortList",props:{maxWidth:{type:[Number,String],default:250}},emits:["load"],setup(t,{emit:e}){const n=i.ref(!1),r=e,o=i.ref();i.onBeforeMount(()=>{n.value=!0,o.value=ze.GetDefault(),S.H.FTSP.Get().setSortModel(o.value)});const s=async c=>{o.value=c??ze.GetDefault(),S.H.FTSP.Get().setSortModel(o.value),S.H.FTSP.Get().p.drop(),r("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(o),"onUpdate:modelValue":l[0]||(l[0]=f=>i.isRef(o)?o.value=f:null),"popper-append-to-body":!1,clearable:!((h=i.unref(o))!=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"],Vo=x(i.defineComponent({__name:"SortSelect",props:{maxWidth:{type:[Number,String],default:250}},emits:["load"],setup(t,{emit:e}){const n=e,r=i.ref();i.onBeforeMount(()=>{r.value=ze.GetDefault()});const o=async a=>{a||(r.value=ze.GetDefault()),S.H.FTSP.Get().setSortModel(r.value),S.H.FTSP.Get().p.drop(),n("load")},s=async a=>{await o(a)};return(a,c)=>{var u;const l=i.resolveComponent("PSelect");return i.openBlock(),i.createBlock(l,{modelValue:i.unref(r),"onUpdate:modelValue":c[0]||(c[0]=h=>i.isRef(r)?r.value=h:null),"popper-append-to-body":!1,clearable:!((u=i.unref(r))!=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"},To=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,r={background:"inherit",border:"1px solid #c4c4c4"},o=()=>n.firstModel.valueEq(u.value)?void 0:r,s=()=>u.value?r:void 0,a=()=>n.secondModel.valueEq(u.value)?void 0:r,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(o()),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 Fo=x(Ad,[["render",Pd],["__scopeId","data-v-5023d414"]]),Do=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),r=e,o=async()=>{r("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:o},{"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:o})]),_: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"},Oo=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,r=e,o=i.ref(!0);i.watch(()=>n.toggle,()=>{o.value=!o.value});const s=a=>{o.value=!o.value,r("toggle",a)};return(a,c)=>(i.openBlock(),i.createElementBlock(i.Fragment,null,[i.unref(o)?i.createCommentVNode("",!0):(i.openBlock(),i.createElementBlock("div",{key:0,class:"blur",onClick:[c[0]||(c[0]=i.withModifiers(l=>o.value=!0,["prevent"])),c[1]||(c[1]=i.withModifiers(()=>{},["stop"]))]})),i.createElementVNode("div",{class:"top-slider",style:i.normalizeStyle({marginTop:i.unref(o)?`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(o)))},[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,r){const o=new Xt;return o.src=e,o.id=r,n&&(o.ratio=n),o}}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"],Lo=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,r=e,o=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(()=>{o.value=void 0,c.value.clearFiles(),r("removeFile")})},h=w=>{n.fileInfo.setFile(w),n.fileInfo.fileSystemPath&&(o.value=n.fileInfo),a.value=!1,r("crop")};i.onBeforeMount(()=>{n.fileInfo.fileSystemPath&&(o.value=n.fileInfo,o.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),o.value=w,n.fileInfo.uploadNewFile(w),l(o.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(o)?(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(o).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(o)))}),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,r,o){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=r,this.action=n,o!==void 0&&(this.condition=o)}static Primary(e,n,r){return new Ze(e,n,ce.Primary,r)}static Success(e,n,r){return new Ze(e,n,ce.Success,r)}static Warning(e,n,r){return new Ze(e,n,ce.Warning,r)}static Error(e,n,r){return new Ze(e,n,ce.Error,r)}}class Ho 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 Ho{constructor(){super(...arguments);d(this,"id","auth-button-login");d(this,"text","Войти");d(this,"isSubmit",!1);d(this,"disabled",!1)}};class qo extends Ho{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 Uo{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 Uo);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 _o extends Jt{constructor(){super(...arguments);d(this,"label","Повторите пароль");d(this,"id","field-auth-password-repeat")}}const Wo={[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 qo,new jn],fields:[new Yt,new Qt,new _o],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",Wo);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(r=>{r.value&&n.set(r.name,r.value)}),Object.fromEntries(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 jo{constructor(){d(this,"visible",!1)}hide(){this.visible=!1}show(){this.hide(),this.visible=!0}IsVisible(){return this.visible}}class Go extends jo{constructor(){super(...arguments);d(this,"type",ce.Success);d(this,"text","");d(this,"title","")}showMessage(n,r){this.hide(),this.type=r,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 r="<strong>Проверьте правильность введенных данных:</strong><ul>";for(const o of Object.keys(n))n[o][0]&&n[o][0].message&&(r+=`<li>${n[o][0].message}</li>`);return r+="</ul>",r}}class Gn{static Get(e,n,r="-"){return!e||!n?"":`${e}${r}${n}`}static In(e,n,r){return e>=n&&e<=r}static Intersects(e,n,r,o){return e===r||n===o||e>r&&e<o||n>r&&n<o||n>o&&e<r}}const Zo=1e3,Xo=60*Zo,Zn=60*Xo;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 Zo*e}static M(e){return Xo*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 r=new Date,o=q.SplitHM(e);r.setHours(o[0],o[1],0,0);const s=new Date(r.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,r,o){return q.HMtoM(e)>=q.HMtoM(r)&&q.HMtoM(n)<=q.HMtoM(o)}static PeriodsIntersects(e,n,r,o){return Gn.Intersects(q.HMtoM(e),q.HMtoM(n),q.HMtoM(r),q.HMtoM(o))}}class St{static Wait(e,n){return new Promise(r=>setTimeout(()=>r(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 Go{constructor(){super(...arguments);d(this,"duration",q.S(3))}showMessage(n,r){super.showMessage(n,r),typeof n!="string"&&(this.duration=n.duration??this.duration),St.Wait(this.GetDuration()).then(()=>super.hide())}GetDuration(){return this.duration}Dev(){const n="В режиме разработки",r=ce.Warning;super.showMessage(n,r)}Save(){const n="Изменения успешно сохранены",r=ce.Success;super.showMessage(n,r)}}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 Jo=new Qd;class Kd extends Jt{constructor(){super(...arguments);d(this,"label","Логин");d(this,"name","login");d(this,"validator",new Uo);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 Yo{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,r=Me.Asc,o,s){const a=new en;return a.model=e.GetClassName(),a.col=n??"",a.order=r??Me.Asc,a.label=o??"",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}"`:"",r=this.order?`"order":"${this.order}"`:"";return[e,n,r].toString()}async fromUrlQuery(){const e=window.location.search,n=e.substring(e.indexOf("s=")+2,e.indexOf("|")),r=new URLSearchParams(decodeURIComponent(n));this.model=r.get("model")??"",this.col=r.get("col")??"",this.label=r.get("label")??"",this.default=!!r.get("default"),this.order=r.get("order")??""}asc(){this.order=Me.Asc}desc(){this.order=Me.Desc}}const eu=Object.freeze(Object.defineProperty({__proto__:null,Auth:Jo,AuthButtonLogin:jn,AuthButtonRegister:qo,AuthFormSettings:Wo,AuthFormStatuses:pe,AuthMethods:at,Email:Xe,EmailField:Yt,FileInfo:Be,Human:Yo,LoginField:Kd,PasswordField:Qt,PasswordRepeatField:_o,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}"`:"",r=this.value&&typeof this.value.toISOString=="function"?this.value.toISOString():this.value,o=r?`"value":"${r}"`:"",s=this.model?`"model":"${this.model}"`:"",a=`"initial":${this.initial}`;return[e,n,o,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,r){this.cursor.value=e,this.cursor.initial=!1,this.cursor.operation=de.Gt,this.cursor.column=n,this.cursor.tableName=r,this.cursorMode=!0}setLoadMoreV2(e,n,r){this.cursor.value=e,this.cursor.initial=!1,this.cursor.operation=de.Gt,this.cursor.column=n,this.cursor.model=r,this.cursorMode=!0,this.version="v2"}setOffset(e){this.offset=e}toUrlQuery(){const e=`"offset":${this.offset}`,n=`"limit":${this.limit}`,r=`"cursorMode":${this.cursorMode}`,o=`"append":${this.append}`,s=`"allLoaded":${this.allLoaded}`,a=`"cursor":{${this.cursor.toUrlQuery()}}`;return[e,n,r,o,s,a].toString()}fromUrlQuery(){const e=window.location.search,n=e.substring(e.indexOf("p=")+2,e.lastIndexOf("|")),r=new URLSearchParams(decodeURIComponent(n));this.offset=Number(r.get("offset")),this.limit=Number(r.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 r=new nn;return r.model=e.GetClassName(),r.cols=n,r}}var nu=Object.defineProperty,rn=(t,e,n,r)=>{for(var o=void 0,s=t.length-1,a;s>=0;s--)(a=t[s])&&(o=a(e,n,o)||o);return o&&nu(e,n,o),o};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 r=Object.entries(e).filter(([o,s])=>o!=="label"&&s!==""&&s!==null);return Object.fromEntries(r)}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(r=>r.eq(e));T.RemoveFromClassByIndex(n,this.f)}reset(){this.f=[],this.s=[],this.p=new tn}resetF(){this.f=[]}},d(ye,"instance"),ye);rn([T.GetClassConstructor(ur)],Et.prototype,"f"),rn([T.GetClassConstructor(en)],Et.prototype,"s"),rn([T.GetClassConstructor(tn)],Et.prototype,"p"),rn([T.GetClassConstructor(nn)],Et.prototype,"t");let Qo=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 Ko(t,e){return function(){return t.apply(e,arguments)}}const{toString:iu}=Object.prototype,{getPrototypeOf:Xn}=Object,on=(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=>on(e)===t),sn=t=>e=>typeof e===t,{isArray:lt}=Array,vt=sn("undefined");function ru(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 ou(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(on(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=on(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 r,o;if(typeof t!="object"&&(t=[t]),lt(t))for(r=0,o=t.length;r<o;r++)e.call(null,t[r],r,t);else{const s=n?Object.getOwnPropertyNames(t):Object.keys(t),a=s.length;let c;for(r=0;r<a;r++)c=s[r],e.call(null,t[c],c,t)}}function ns(t,e){e=e.toLowerCase();const n=Object.keys(t);let r=n.length,o;for(;r-- >0;)if(o=n[r],e===o.toLowerCase())return o;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=(r,o)=>{const s=t&&ns(e,o)||o;ln(e[s])&&ln(r)?e[s]=Jn(e[s],r):ln(r)?e[s]=Jn({},r):lt(r)?e[s]=r.slice():e[s]=r};for(let r=0,o=arguments.length;r<o;r++)arguments[r]&&xt(arguments[r],n);return e}const Cu=(t,e,n,{allOwnKeys:r}={})=>(xt(e,(o,s)=>{n&&ge(o)?t[s]=Ko(o,n):t[s]=o},{allOwnKeys:r}),t),Su=t=>(t.charCodeAt(0)===65279&&(t=t.slice(1)),t),ku=(t,e,n,r)=>{t.prototype=Object.create(e.prototype,r),t.prototype.constructor=t,Object.defineProperty(t,"super",{value:e.prototype}),n&&Object.assign(t.prototype,n)},Eu=(t,e,n,r)=>{let o,s,a;const c={};if(e=e||{},t==null)return e;do{for(o=Object.getOwnPropertyNames(t),s=o.length;s-- >0;)a=o[s],(!r||r(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 r=t.indexOf(e,n);return r!==-1&&r===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 r=(t&&t[Symbol.iterator]).call(t);let o;for(;(o=r.next())&&!o.done;){const s=o.value;e.call(t,s[0],s[1])}},Iu=(t,e)=>{let n;const r=[];for(;(n=t.exec(e))!==null;)r.push(n);return r},Ru=Re("HTMLFormElement"),$u=t=>t.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g,function(n,r,o){return r.toUpperCase()+o}),rs=(({hasOwnProperty:t})=>(e,n)=>t.call(e,n))(Object.prototype),Au=Re("RegExp"),os=(t,e)=>{const n=Object.getOwnPropertyDescriptors(t),r={};xt(n,(o,s)=>{let a;(a=e(o,s,t))!==!1&&(r[s]=a||o)}),Object.defineProperties(t,r)},Nu=t=>{os(t,(e,n)=>{if(ge(t)&&["arguments","caller","callee"].indexOf(n)!==-1)return!1;const r=t[n];if(ge(r)){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={},r=o=>{o.forEach(s=>{n[s]=!0})};return lt(t)?r(t):r(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:r}=e;for(;t--;)n+=e[Math.random()*r|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=(r,o)=>{if(an(r)){if(e.indexOf(r)>=0)return;if(!("toJSON"in r)){e[o]=r;const s=lt(r)?[]:{};return xt(r,(a,c)=>{const l=n(a,o+1);!vt(l)&&(s[c]=l)}),e[o]=void 0,s}}return r};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,r)=>(Ye.addEventListener("message",({source:o,data:s})=>{o===Ye&&s===n&&r.length&&r.shift()()},!1),o=>{r.push(o),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:ru,isFormData:fu,isArrayBufferView:ou,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:on,kindOfTest:Re,endsWith:vu,toArray:xu,forEachEntry:Mu,matchAll:Iu,isHTMLForm:Ru,hasOwnProperty:rs,hasOwnProp:rs,reduceDescriptors:os,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,r,o){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),r&&(this.request=r),o&&(this.response=o,this.status=o.status?o.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,r,o,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,r,o),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(o,s){return o=us(o),!n&&s?"["+o+"]":o}).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 r=n.metaTokens,o=n.visitor||h,s=n.dots,a=n.indexes,l=(n.Blob||typeof Blob<"u"&&Blob)&&C.isSpecCompliantForm(e);if(!C.isFunction(o))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=r?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)&&o.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(r){return e[r]})}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(r){return e.call(this,r,fs)}:fs;return this._pairs.map(function(o){return n(o[0])+"="+n(o[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 r=n&&n.encode||Wu,o=n&&n.serialize;let s;if(o?s=o(e,n):s=C.isURLSearchParams(e)?e.toString():new Kn(e,n).toString(r),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,r){return this.handlers.push({fulfilled:e,rejected:n,synchronous:r?r.synchronous:!1,runWhen:r?r.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(r){r!==null&&e(r)})}}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,r,o,s){return fe.isNode&&C.isBuffer(n)?(this.append(r,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 r;const o=n.length;let s;for(r=0;r<o;r++)s=n[r],e[s]=t[s];return e}function ws(t){function e(n,r,o,s){let a=n[s++];if(a==="__proto__")return!0;const c=Number.isFinite(+a),l=s>=n.length;return a=!a&&C.isArray(o)?o.length:a,l?(C.hasOwnProp(o,a)?o[a]=[o[a],r]:o[a]=r,!c):((!o[a]||!C.isObject(o[a]))&&(o[a]=[]),e(n,r,o[a],s)&&C.isArray(o[a])&&(o[a]=Qu(o[a])),!c)}if(C.isFormData(t)&&C.isFunction(t.entries)){const n={};return C.forEachEntry(t,(r,o)=>{e(Yu(r),o,n,0)}),n}return null}function Ku(t,e,n){if(C.isString(t))try{return(e||JSON.parse)(t),C.trim(t)}catch(r){if(r.name!=="SyntaxError")throw r}return(0,JSON.stringify)(t)}const Bt={transitional:ys,adapter:["xhr","http","fetch"],transformRequest:[function(e,n){const r=n.getContentType()||"",o=r.indexOf("application/json")>-1,s=C.isObject(e);if(s&&C.isHTMLForm(e)&&(e=new FormData(e)),C.isFormData(e))return o?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(r.indexOf("application/x-www-form-urlencoded")>-1)return Ju(e,this.formSerializer).toString();if((c=C.isFileList(e))||r.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||o?(n.setContentType("application/json",!1),Ku(e)):e}],transformResponse:[function(e){const n=this.transitional||Bt.transitional,r=n&&n.forcedJSONParsing,o=this.responseType==="json";if(C.isResponse(e)||C.isReadableStream(e))return e;if(e&&C.isString(e)&&(r&&!this.responseType||o)){const a=!(n&&n.silentJSONParsing)&&o;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,r,o;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) ")+Qr(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()}}};to.render=function(t,e,n,r,o,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 no={components:{Preview:to},inheritAttrs:!1};no.render=function(t,e,n,r,o,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"),io={name:"RectangleStencil",components:{StencilPreview:no,BoundingBox:Jr,DraggableArea:Yr},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,r=t.left,o=t.top,s={width:"".concat(n,"px"),height:"".concat(e,"px"),transform:"translate(".concat(r,"px, ").concat(o,"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"]};io.render=function(t,e,n,r,o,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"),ro={name:"Cropper",components:{BackgroundWrapper:Hn},props:{src:{type:String,default:null},stencilComponent:{type:[Object,String],default:function(){return io}},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,r=t.aspectRatio,o=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=Xr({coordinates:a,directions:l,sizeRestrictions:s,positionRestrictions:o})).width,f=Pe(a,l).height,m=c.preserveRatio?j(a):zn(h/f,r);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=Xr({directions:l,coordinates:a,sizeRestrictions:s,positionRestrictions:o,preserveRatio:!0,compensate:c.compensate})}return h=Pe(a,l).width,f=Pe(a,l).height,(m=c.preserveRatio?j(a):zn(h/f,r))&&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:o})}},moveAlgorithm:{type:Function,default:Tn},initStretcher:{type:Function,default:function(t){var e=t.stretcher,n=t.imageSize,r=j(n);e.style.width=n.width+"px",e.style.height=e.clientWidth/r+"px",e.style.width=e.clientWidth+"px"}},fitCoordinates:{type:Function,default:function(t){var e=t.visibleArea,n=t.coordinates,r=t.aspectRatio,o=t.sizeRestrictions,s=t.positionRestrictions,a=N(N({},n),Oe({width:n.width,height:n.height,aspectRatio:r,sizeRestrictions:{maxWidth:e.width,maxHeight:e.height,minHeight:Math.min(e.height,o.minHeight),minWidth:Math.min(e.width,o.minWidth)}}));return a=ae(a=he(a,rt(se(n),se(a))),_t(Ne(e),s))}},fitVisibleArea:{type:Function,default:function(t){var e=t.visibleArea,n=t.boundaries,r=t.getAreaRestrictions,o=t.coordinates,s=N({},e);s.height=s.width/j(n),s.top+=(e.height-s.height)/2,(o.height-s.height>0||o.width-s.width>0)&&(s=Ce(s,Math.max(o.height/s.height,o.width/s.width)));var a=qt(st(o,Ne(s=Ce(s,Ut(s,r({visibleArea:s,type:"resize"}))))));return s.width<o.width&&(a.left=0),s.height<o.height&&(a.top=0),s=ae(s=he(s,a),r({visibleArea:s,type:"move"}))}},areaRestrictionsAlgorithm:{type:Function,default:function(t){var e=t.visibleArea,n=t.boundaries,r=t.imageSize,o=t.imageRestriction,s=t.type,a={};return o==="fill-area"?a={left:0,top:0,right:r.width,bottom:r.height}:o==="fit-area"&&(j(n)>j(r)?(a={top:0,bottom:r.height},e&&s==="move"&&(e.width>r.width?(a.left=-(e.width-r.width)/2,a.right=r.width-a.left):(a.left=0,a.right=r.width))):(a={left:0,right:r.width},e&&s==="move"&&(e.height>r.height?(a.top=-(e.height-r.height)/2,a.bottom=r.height-a.top):(a.top=0,a.bottom=r.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({},qr)}},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(r){var o=r.areaRestrictions,s=r.sizeRestrictions,a=r.boundaries,c=r.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(o),h=_r(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,r=t.left,o=t.top;return{width:e/this.coefficient,height:n/this.coefficient,left:(r-this.visibleArea.left)/this.coefficient,top:(o-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},r=W(W({},this.imageTransforms),{},{scaleX:this.imageTransforms.scaleX*(this.imageAttributes.width/t.width),scaleY:this.imageTransforms.scaleY*(this.imageAttributes.height/t.height)}),o={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)")+Qr(r)};return this.transitionsOptions.enabled&&(o.transition="".concat(this.transitionsOptions.time,"ms ").concat(this.transitionsOptions.timingFunction)),o}},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]:{},r=n.transitions,o=r===void 0||r;this.onManipulateImage(new wt({},{factor:1/t,center:e}),{normalize:!1,transitions:o})},move:function(t,e){var n=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{},r=n.transitions,o=r===void 0||r;this.onManipulateImage(new wt({left:t||0,top:e||0}),{normalize:!1,transitions:o})},setCoordinates:function(t){var e=this,n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=n.autoZoom,o=r===void 0||r,s=n.transitions,a=s===void 0||s;this.$nextTick(function(){e.imageLoaded?(e.transitionsActive||(a&&e.enableTransitions(),e.coordinates=e.applyTransform(t),o&&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,r=e.sizeRestrictions,o=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>r.maxWidth?s.width=Math.floor(n.width):s.width<r.minWidth&&(s.width=Math.ceil(n.width)),s.height>r.maxHeight?s.height=Math.floor(n.height):s.height<r.minHeight&&(s.height=Math.ceil(n.height)),ae(s,o)}(W(W({},this.getPublicProperties()),{},{positionRestrictions:Wt(this.positionRestrictions,this.visibleArea),coordinates:t})):t},processAutoZoom:function(t,e,n,r){var o=this.autoZoomAlgorithm;o||(o=this.stencilSize?ec:this.autoZoom?tc:nc);var s=o({event:{type:t,params:r},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:!Ur(s.visibleArea,e)||!Ur(s.coordinates,n)})},runAutoZoom:function(t){var e=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},n=e.transitions,r=n!==void 0&&n,o=Ul(e,bc),s=this.processAutoZoom(t,this.visibleArea,this.coordinates,o),a=s.visibleArea,c=s.coordinates,l=s.changed;r&&l&&this.enableTransitions(),this.visibleArea=a,this.coordinates=c,r&&l&&this.debouncedDisableTransitions()},normalizeEvent:function(t){return function(e){var n=e.event,r=e.visibleArea,o=e.coefficient;if(n.type==="manipulateImage")return N(N({},n),{move:{left:n.move&&n.move.left?o*n.move.left:0,top:n.move&&n.move.top?o*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*o+r.left,top:n.scale.center.top*o+r.top}:null}});if(n.type==="resize"){var s=N(N({},n),{directions:N({},n.directions)});return Ae.forEach(function(c){s.directions[c]*=o}),s}if(n.type==="move"){var a=N(N({},n),{directions:N({},n.directions)});return Jl.forEach(function(c){a.directions[c]*=o}),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=Wr(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,r=W({minWidth:0,minHeight:0,maxWidth:1/0,maxHeight:1/0,maxArea:this.maxCanvasSize,imageSmoothingEnabled:!0,imageSmoothingQuality:"high",fillColor:"transparent"},this.canvas),o=function(c){return c.find(function(l){return u=l,!Number.isNaN(parseFloat(u))&&isFinite(u);var u})},s=Oe({sizeRestrictions:{minWidth:o([r.width,r.minWidth])||0,minHeight:o([r.height,r.minHeight])||0,maxWidth:o([r.width,r.maxWidth])||1/0,maxHeight:o([r.height,r.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(r.maxArea&&s.width*s.height>r.maxArea){var a=Math.sqrt(r.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,r),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,r=this.visibleArea&&e?Wt(this.positionRestrictions,this.visibleArea):this.positionRestrictions;return Kl({transform:t,coordinates:this.coordinates,imageSize:this.imageSize,sizeRestrictions:n,positionRestrictions:r,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?oc:rc);var n=this.sizeRestrictions;n.minWidth,n.minHeight,n.maxWidth,n.maxHeight;var r=it(e)?e({boundaries:this.boundaries,imageSize:this.imageSize,aspectRatio:this.getAspectRatio(),sizeRestrictions:this.sizeRestrictions,stencilSize:this.getStencilSize(),visibleArea:this.visibleArea}):e,o=this.defaultPosition||ic,s=[r,function(a){var c=a.coordinates;return W({},it(o)?o({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 r={cropper:n,imageSize:t.imageSize};if(it(t.defaultBoundaries)?t.boundaries=t.defaultBoundaries(r):t.defaultBoundaries==="fit"?t.boundaries=function(o){var s=o.cropper,a=o.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}}(r):t.boundaries=function(o){var s=o.cropper;return{width:s.clientWidth,height:s.clientHeight}}(r),!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,r,o,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,r=e.boundaries,o=e.getAreaRestrictions,s=N({},n),a=j(r),s.width/s.height!==a&&(s.height=s.width/a),ae(s,o({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(o){if(Tr(o))return!1;var s=window.location,a=/(\w+:)?(?:\/\/)([\w.-]+)?(?::(\d+))?\/?/.exec(o)||[],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 r=(t=this.src,new Promise(function(o){yc(t).then(function(s){var a=wc(s);o(s?{source:t,arrayBuffer:s,orientation:a}:{source:t,arrayBuffer:null,orientation:null})}).catch(function(s){console.warn(s),o({source:t,arrayBuffer:null,orientation:null})})}));setTimeout(function(){r.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,r=t.arrayBuffer,o=t.orientation;this.imageAttributes.revoke&&this.imageAttributes.src&&URL.revokeObjectURL(this.imageAttributes.src),this.imageAttributes.revoke=!1,r&&o&&o>1?Vr(n)||!Tr(n)?(this.imageAttributes.src=URL.createObjectURL(new Blob([r])),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(""))}(r):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}(o),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,r=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,r),minHeight:Math.max(n.minHeight,r)},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,r=n!==void 0&&n,o=e.normalize,s=o===void 0||o;r&&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(),r&&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,r=n===void 0?"move":n;return this.areaRestrictionsAlgorithm({boundaries:this.boundaries,imageSize:this.imageSize,imageRestriction:this.imageRestriction,visibleArea:e,type:r})},getAspectRatio:function(t){var e,n,r=this.stencilProps,o=r.aspectRatio,s=r.minAspectRatio,a=r.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(o)?s:o),ie(n)&&(n=ie(o)?a:o),!t&&(ie(e)||ie(n))){var l=this.getStencilSize(),u=l?j(l):null;ie(e)&&(e=Fr(u)?u:void 0),ie(n)&&(n=Fr(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,r=t.aspectRatio,zn(j(o=it(n)?n({boundaries:e,aspectRatio:r}):n),r)&&(o=Oe({sizeRestrictions:{maxWidth:e.width,maxHeight:e.height,minWidth:0,minHeight:0},width:o.width,height:o.height,aspectRatio:{minimum:r.minimum,maximum:r.maximum}})),(o.width>e.width||o.height>e.height)&&(o=Oe({sizeRestrictions:{maxWidth:e.width,maxHeight:e.height,minWidth:0,minHeight:0},width:o.width,height:o.height,aspectRatio:{minimum:j(o),maximum:j(o)}})),o;var t,e,n,r,o},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({},qr)},flip:function(t,e){var n=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{},r=n.transitions,o=r===void 0||r;if(!this.transitionsActive){o&&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(),o&&this.debouncedDisableTransitions()}},rotate:function(t){var e=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},n=e.transitions,r=n===void 0||n;if(!this.transitionsActive){r&&this.enableTransitions();var o=W({},this.imageSize);this.appliedImageTransforms.rotate+=t;var s=lc({visibleArea:this.visibleArea,coordinates:this.coordinates,previousImageSize:o,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(),r&&this.debouncedDisableTransitions()}}},emits:["change","error","ready"]},Cc={key:0,ref:"canvas",style:{display:"none"}},Sc={key:1,ref:"sourceCanvas",style:{display:"none"}};ro.render=function(t,e,n,r,o,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:o.imageAttributes.crossOrigin,src:o.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:o.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,o.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"},oo=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,r=e,o=S.S.Cropper.Cropper(),s=i.ref(n.defaultRatio);o.ratio=s.value;const a=async()=>{s.value===0?o.ratio=0:o.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();o.ratio===0&&(s.value=c.value.width/c.value.height),g&&g.canvas.toBlob(p=>{var E;r("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(ro),{ref_key:"cropperRef",ref:h,src:i.unref(o).src,"stencil-props":{aspectRatio:i.unref(o).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,r=e,o=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&&r("after-close")});const h=()=>{r("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 r("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(o)]),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"]]),so=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),r=e,o=s=>{n.value=!n.value,r("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=>o(h)},null,8,["text","onClick"]))),128)),i.createVNode(l,{type:"admin",color:"blue",text:"Сбросить",onClick:a[0]||(a[0]=h=>o(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"},ao=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"},lo=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=r=>{e.value=r};return i.watch(()=>t.initActiveIdx,()=>{n(t.initActiveIdx)}),{changeActiveId:n,activeIdx:e}}});function Pc(t,e,n,r,o,s){return i.openBlock(),i.createElementBlock("div",null,[i.renderSlot(t.$slots,"default",{activeIdx:t.activeIdx,changeActiveId:t.changeActiveId})])}const co=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"),r=()=>{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:r}}}),Vc=["for"],Tc={class:"inside-icon"};function Fc(t,e,n,r,o,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 uo=x(zc,[["render",Fc],["__scopeId","data-v-0ea9a95f"]]),Dc={class:"tab"},Oc={class:"rotate"},ho=x(i.defineComponent({__name:"VerticalCollapseContainer",setup(t){const e=i.ref(!1),n=async()=>{e.value=!e.value};return(r,o)=>{const s=i.resolveComponent("ArrowRight"),a=i.resolveComponent("ArrowLeft");return i.openBlock(),i.createElementBlock(i.Fragment,null,[i.createElementVNode("div",Dc,[i.renderSlot(r.$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(r.$slots,"inside-content-left",{},void 0,!0)],4),i.createElementVNode("div",{class:"arrow-bar",onClick:n},[i.createElementVNode("div",Oc,[i.renderSlot(r.$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(r.$slots,"inside-content-right",{},void 0,!0)],4)]),i.createVNode(a),i.createVNode(s)],64)}}}),[["__scopeId","data-v-4ccaade5"]]),Lc={class:"add-block_body"},fo=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 r=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(r,{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"]]),mo=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"},po=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 r=i.resolveComponent("PSticky"),o=i.resolveComponent("PContainer");return i.openBlock(),i.createBlock(o,{background:t.background,margin:t.margin,padding:t.padding},{default:i.withCtx(()=>[i.createVNode(r,{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"},go=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"},yo=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,r=i.ref(!1),o=e,s=i.computed(()=>n.GetButtons()),a=async c=>{if(console.log(c),!c.submit)return n.SetStatus(c.GetStatus());const l=n.Validate();if(l.length>0){S.UI.Notify.Error(l.join(", "));return}o("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(r),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-cab1e7ef"]]),wo=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,r=e,o=a=>{a.key==="Escape"&&s()};i.onMounted(()=>{document.body.addEventListener("keydown",o)}),i.onBeforeUnmount(()=>{document.body.removeEventListener("keydown",o)});const s=()=>{n.closable&&r("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"],bo=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,r=e,o=i.ref(window.innerWidth),s=i.ref(),a=i.ref(Number(n.tabHeight.replace(/[^+\d]/g,""))),c=()=>{o.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),r("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 r=new Be;return r.id=n??ve.UUID(),r.originalName=e.name,r.file=e.blob,r.fileSystemPath=ve.UUID(),r}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 r="";return n&&(r=`@/assets/img/${n}`),new URL(r,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,r=e,o=S.H.Id.GUID(),s=S.H.Id.GUID(),a=()=>{const u=document.getElementById(o);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),r("upload",n.fileInfo)}},c=()=>{n.fileInfo.clearFile(),r("remove",n.fileInfo)};i.onMounted(()=>{const u=document.getElementById(s);u&&(u.onclick=()=>{var h;return(h=document.getElementById(o))==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(o),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)}}}),Co=x(Qc,[["__scopeId","data-v-cacad4ae"]]),Kc={class:"bg"},_n=x(i.defineComponent({__name:"AuthPage",setup(t){const e=async()=>{await S.S.Auth.Login()};return(n,r)=>{const o=i.resolveComponent("AuthForm");return i.openBlock(),i.createElementBlock("div",Kc,[i.createVNode(o,{width:"760px",margin:"0 auto",onSubmit:e})])}}}),[["__scopeId","data-v-0f012ef7"]]),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"},rd={key:0,class:"result"},od={class:"list"},sd=["onClick"],So=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,r=t,o=i.ref(r.modelValue),s=i.ref([]);async function a(){n("input",o.value),await c()}async function c(){r.searchFunc&&(s.value=await r.searchFunc(o.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(o),"onUpdate:modelValue":h[0]||(h[0]=g=>i.isRef(o)?o.value=g:null),placeholder:"Найти",onInput:a},{right:i.withCtx(()=>[i.createVNode(f)]),_:1},8,["modelValue"]),i.unref(o)?(i.openBlock(),i.createElementBlock("div",rd,[i.createElementVNode("ul",od,[(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"},ko=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,r)=>{const o=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(o,{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:r[0]||(r[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:r[1]||(r[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"]]),Eo=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(r,o)=>{const s=i.resolveComponent("PInput");return i.openBlock(),i.createElementBlock(i.Fragment,null,[i.createVNode(s,{modelValue:e.value.number,"onUpdate:modelValue":o[0]||(o[0]=a=>e.value.number=a),onBlur:n},null,8,["modelValue"]),i.createVNode(s,{modelValue:e.value.description,"onUpdate:modelValue":o[1]||(o[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 vo=x(ld,[["render",cd],["__scopeId","data-v-0f1f2f84"]]),xo=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,r)=>{const o=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(o,{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},Bo=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,r=g=>g?"active":"neutral",o=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:o(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:r(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:r(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:r(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:o(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"]]),Mo=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,r=e,o=i.ref(n.modelValue),s=i.ref(),a=S.S.Search.SearchModel();i.watch(()=>n.focus,()=>{n.focus&&setTimeout(()=>{s.value.focus(),o.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=>{r("select",h),o.value=""},u=h=>{r("input",h),h.length===0&&r("input","")};return(h,f)=>{const m=i.resolveComponent("PAutocomplete");return i.openBlock(),i.createBlock(m,{ref_key:"searchForm",ref:s,modelValue:i.unref(o),"onUpdate:modelValue":f[0]||(f[0]=g=>i.isRef(o)?o.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"},Io=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"},Ro=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,r=e,o=i.ref(!1);i.watch(()=>n.toggle,()=>{o.value=!o.value});const s=a=>{o.value=!o.value,r("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(o)?`calc(${t.sliderOffWidth} - ${t.sliderOnWidth})`:"0",width:t.sliderOnWidth})},[i.createElementVNode("div",{class:"click-line",onClick:c[0]||(c[0]=u=>s(!i.unref(o)))},[i.unref(o)?(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(o)?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"},$o=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,r=e,o=i.ref(!1),s=i.ref(window.matchMedia("(max-width: 768px)").matches),a=l=>{r("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}),o.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"],Ao=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]:"Матрица с несколькими выборами"},r=e,o=s=>{r("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:o},{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"},No=x(i.defineComponent({__name:"SingleNameToggleForm",props:{withName:{type:Object,required:!0}},emits:["submit"],setup(t,{emit:e}){const n=t,r=e,o=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),o.value=!o.value,r("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:o.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 Po(t,e){const n=[],r=e||Me.Asc,o=r===Me.Asc?Me.Desc:Me.Asc;return Object.values(t).forEach(s=>{n.push(s(r)),n.push(s(o))}),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=Po(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"],zo=x(i.defineComponent({__name:"SortList",props:{maxWidth:{type:[Number,String],default:250}},emits:["load"],setup(t,{emit:e}){const n=i.ref(!1),r=e,o=i.ref();i.onBeforeMount(()=>{n.value=!0,o.value=ze.GetDefault(),S.H.FTSP.Get().setSortModel(o.value)});const s=async c=>{o.value=c??ze.GetDefault(),S.H.FTSP.Get().setSortModel(o.value),S.H.FTSP.Get().p.drop(),r("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(o),"onUpdate:modelValue":l[0]||(l[0]=f=>i.isRef(o)?o.value=f:null),"popper-append-to-body":!1,clearable:!((h=i.unref(o))!=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"],Vo=x(i.defineComponent({__name:"SortSelect",props:{maxWidth:{type:[Number,String],default:250}},emits:["load"],setup(t,{emit:e}){const n=e,r=i.ref();i.onBeforeMount(()=>{r.value=ze.GetDefault()});const o=async a=>{a||(r.value=ze.GetDefault()),S.H.FTSP.Get().setSortModel(r.value),S.H.FTSP.Get().p.drop(),n("load")},s=async a=>{await o(a)};return(a,c)=>{var u;const l=i.resolveComponent("PSelect");return i.openBlock(),i.createBlock(l,{modelValue:i.unref(r),"onUpdate:modelValue":c[0]||(c[0]=h=>i.isRef(r)?r.value=h:null),"popper-append-to-body":!1,clearable:!((u=i.unref(r))!=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"},To=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,r={background:"inherit",border:"1px solid #c4c4c4"},o=()=>n.firstModel.valueEq(u.value)?void 0:r,s=()=>u.value?r:void 0,a=()=>n.secondModel.valueEq(u.value)?void 0:r,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(o()),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 Fo=x(Ad,[["render",Pd],["__scopeId","data-v-5023d414"]]),Do=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),r=e,o=async()=>{r("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:o},{"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:o})]),_: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"},Oo=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,r=e,o=i.ref(!0);i.watch(()=>n.toggle,()=>{o.value=!o.value});const s=a=>{o.value=!o.value,r("toggle",a)};return(a,c)=>(i.openBlock(),i.createElementBlock(i.Fragment,null,[i.unref(o)?i.createCommentVNode("",!0):(i.openBlock(),i.createElementBlock("div",{key:0,class:"blur",onClick:[c[0]||(c[0]=i.withModifiers(l=>o.value=!0,["prevent"])),c[1]||(c[1]=i.withModifiers(()=>{},["stop"]))]})),i.createElementVNode("div",{class:"top-slider",style:i.normalizeStyle({marginTop:i.unref(o)?`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(o)))},[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,r){const o=new Xt;return o.src=e,o.id=r,n&&(o.ratio=n),o}}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"],Lo=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,r=e,o=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(()=>{o.value=void 0,c.value.clearFiles(),r("removeFile")})},h=w=>{n.fileInfo.setFile(w),n.fileInfo.fileSystemPath&&(o.value=n.fileInfo),a.value=!1,r("crop")};i.onBeforeMount(()=>{n.fileInfo.fileSystemPath&&(o.value=n.fileInfo,o.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),o.value=w,n.fileInfo.uploadNewFile(w),l(o.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(o)?(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(o).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(o)))}),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,r,o){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=r,this.action=n,o!==void 0&&(this.condition=o)}static Primary(e,n,r){return new Ze(e,n,ce.Primary,r)}static Success(e,n,r){return new Ze(e,n,ce.Success,r)}static Warning(e,n,r){return new Ze(e,n,ce.Warning,r)}static Error(e,n,r){return new Ze(e,n,ce.Error,r)}}class Ho 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 Ho{constructor(){super(...arguments);d(this,"id","auth-button-login");d(this,"text","Войти");d(this,"isSubmit",!1);d(this,"disabled",!1)}};class qo extends Ho{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 Uo{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 Uo);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 _o extends Jt{constructor(){super(...arguments);d(this,"label","Повторите пароль");d(this,"id","field-auth-password-repeat")}}const Wo={[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 qo,new jn],fields:[new Yt,new Qt,new _o],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",Wo);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(r=>{r.value&&n.set(r.name,r.value)}),Object.fromEntries(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 jo{constructor(){d(this,"visible",!1)}hide(){this.visible=!1}show(){this.hide(),this.visible=!0}IsVisible(){return this.visible}}class Go extends jo{constructor(){super(...arguments);d(this,"type",ce.Success);d(this,"text","");d(this,"title","")}showMessage(n,r){this.hide(),this.type=r,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 r="<strong>Проверьте правильность введенных данных:</strong><ul>";for(const o of Object.keys(n))n[o][0]&&n[o][0].message&&(r+=`<li>${n[o][0].message}</li>`);return r+="</ul>",r}}class Gn{static Get(e,n,r="-"){return!e||!n?"":`${e}${r}${n}`}static In(e,n,r){return e>=n&&e<=r}static Intersects(e,n,r,o){return e===r||n===o||e>r&&e<o||n>r&&n<o||n>o&&e<r}}const Zo=1e3,Xo=60*Zo,Zn=60*Xo;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 Zo*e}static M(e){return Xo*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 r=new Date,o=q.SplitHM(e);r.setHours(o[0],o[1],0,0);const s=new Date(r.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,r,o){return q.HMtoM(e)>=q.HMtoM(r)&&q.HMtoM(n)<=q.HMtoM(o)}static PeriodsIntersects(e,n,r,o){return Gn.Intersects(q.HMtoM(e),q.HMtoM(n),q.HMtoM(r),q.HMtoM(o))}}class St{static Wait(e,n){return new Promise(r=>setTimeout(()=>r(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 Go{constructor(){super(...arguments);d(this,"duration",q.S(3))}showMessage(n,r){super.showMessage(n,r),typeof n!="string"&&(this.duration=n.duration??this.duration),St.Wait(this.GetDuration()).then(()=>super.hide())}GetDuration(){return this.duration}Dev(){const n="В режиме разработки",r=ce.Warning;super.showMessage(n,r)}Save(){const n="Изменения успешно сохранены",r=ce.Success;super.showMessage(n,r)}}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.tokens.actualize(),this.tokens.getAccessToken()){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 Jo=new Qd;class Kd extends Jt{constructor(){super(...arguments);d(this,"label","Логин");d(this,"name","login");d(this,"validator",new Uo);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 Yo{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,r=Me.Asc,o,s){const a=new en;return a.model=e.GetClassName(),a.col=n??"",a.order=r??Me.Asc,a.label=o??"",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}"`:"",r=this.order?`"order":"${this.order}"`:"";return[e,n,r].toString()}async fromUrlQuery(){const e=window.location.search,n=e.substring(e.indexOf("s=")+2,e.indexOf("|")),r=new URLSearchParams(decodeURIComponent(n));this.model=r.get("model")??"",this.col=r.get("col")??"",this.label=r.get("label")??"",this.default=!!r.get("default"),this.order=r.get("order")??""}asc(){this.order=Me.Asc}desc(){this.order=Me.Desc}}const eu=Object.freeze(Object.defineProperty({__proto__:null,Auth:Jo,AuthButtonLogin:jn,AuthButtonRegister:qo,AuthFormSettings:Wo,AuthFormStatuses:pe,AuthMethods:at,Email:Xe,EmailField:Yt,FileInfo:Be,Human:Yo,LoginField:Kd,PasswordField:Qt,PasswordRepeatField:_o,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}"`:"",r=this.value&&typeof this.value.toISOString=="function"?this.value.toISOString():this.value,o=r?`"value":"${r}"`:"",s=this.model?`"model":"${this.model}"`:"",a=`"initial":${this.initial}`;return[e,n,o,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,r){this.cursor.value=e,this.cursor.initial=!1,this.cursor.operation=de.Gt,this.cursor.column=n,this.cursor.tableName=r,this.cursorMode=!0}setLoadMoreV2(e,n,r){this.cursor.value=e,this.cursor.initial=!1,this.cursor.operation=de.Gt,this.cursor.column=n,this.cursor.model=r,this.cursorMode=!0,this.version="v2"}setOffset(e){this.offset=e}toUrlQuery(){const e=`"offset":${this.offset}`,n=`"limit":${this.limit}`,r=`"cursorMode":${this.cursorMode}`,o=`"append":${this.append}`,s=`"allLoaded":${this.allLoaded}`,a=`"cursor":{${this.cursor.toUrlQuery()}}`;return[e,n,r,o,s,a].toString()}fromUrlQuery(){const e=window.location.search,n=e.substring(e.indexOf("p=")+2,e.lastIndexOf("|")),r=new URLSearchParams(decodeURIComponent(n));this.offset=Number(r.get("offset")),this.limit=Number(r.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 r=new nn;return r.model=e.GetClassName(),r.cols=n,r}}var nu=Object.defineProperty,rn=(t,e,n,r)=>{for(var o=void 0,s=t.length-1,a;s>=0;s--)(a=t[s])&&(o=a(e,n,o)||o);return o&&nu(e,n,o),o};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 r=Object.entries(e).filter(([o,s])=>o!=="label"&&s!==""&&s!==null);return Object.fromEntries(r)}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(r=>r.eq(e));T.RemoveFromClassByIndex(n,this.f)}reset(){this.f=[],this.s=[],this.p=new tn}resetF(){this.f=[]}},d(ye,"instance"),ye);rn([T.GetClassConstructor(ur)],Et.prototype,"f"),rn([T.GetClassConstructor(en)],Et.prototype,"s"),rn([T.GetClassConstructor(tn)],Et.prototype,"p"),rn([T.GetClassConstructor(nn)],Et.prototype,"t");let Qo=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 Ko(t,e){return function(){return t.apply(e,arguments)}}const{toString:iu}=Object.prototype,{getPrototypeOf:Xn}=Object,on=(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=>on(e)===t),sn=t=>e=>typeof e===t,{isArray:lt}=Array,vt=sn("undefined");function ru(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 ou(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(on(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=on(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 r,o;if(typeof t!="object"&&(t=[t]),lt(t))for(r=0,o=t.length;r<o;r++)e.call(null,t[r],r,t);else{const s=n?Object.getOwnPropertyNames(t):Object.keys(t),a=s.length;let c;for(r=0;r<a;r++)c=s[r],e.call(null,t[c],c,t)}}function ns(t,e){e=e.toLowerCase();const n=Object.keys(t);let r=n.length,o;for(;r-- >0;)if(o=n[r],e===o.toLowerCase())return o;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=(r,o)=>{const s=t&&ns(e,o)||o;ln(e[s])&&ln(r)?e[s]=Jn(e[s],r):ln(r)?e[s]=Jn({},r):lt(r)?e[s]=r.slice():e[s]=r};for(let r=0,o=arguments.length;r<o;r++)arguments[r]&&xt(arguments[r],n);return e}const Cu=(t,e,n,{allOwnKeys:r}={})=>(xt(e,(o,s)=>{n&&ge(o)?t[s]=Ko(o,n):t[s]=o},{allOwnKeys:r}),t),Su=t=>(t.charCodeAt(0)===65279&&(t=t.slice(1)),t),ku=(t,e,n,r)=>{t.prototype=Object.create(e.prototype,r),t.prototype.constructor=t,Object.defineProperty(t,"super",{value:e.prototype}),n&&Object.assign(t.prototype,n)},Eu=(t,e,n,r)=>{let o,s,a;const c={};if(e=e||{},t==null)return e;do{for(o=Object.getOwnPropertyNames(t),s=o.length;s-- >0;)a=o[s],(!r||r(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 r=t.indexOf(e,n);return r!==-1&&r===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 r=(t&&t[Symbol.iterator]).call(t);let o;for(;(o=r.next())&&!o.done;){const s=o.value;e.call(t,s[0],s[1])}},Iu=(t,e)=>{let n;const r=[];for(;(n=t.exec(e))!==null;)r.push(n);return r},Ru=Re("HTMLFormElement"),$u=t=>t.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g,function(n,r,o){return r.toUpperCase()+o}),rs=(({hasOwnProperty:t})=>(e,n)=>t.call(e,n))(Object.prototype),Au=Re("RegExp"),os=(t,e)=>{const n=Object.getOwnPropertyDescriptors(t),r={};xt(n,(o,s)=>{let a;(a=e(o,s,t))!==!1&&(r[s]=a||o)}),Object.defineProperties(t,r)},Nu=t=>{os(t,(e,n)=>{if(ge(t)&&["arguments","caller","callee"].indexOf(n)!==-1)return!1;const r=t[n];if(ge(r)){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={},r=o=>{o.forEach(s=>{n[s]=!0})};return lt(t)?r(t):r(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:r}=e;for(;t--;)n+=e[Math.random()*r|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=(r,o)=>{if(an(r)){if(e.indexOf(r)>=0)return;if(!("toJSON"in r)){e[o]=r;const s=lt(r)?[]:{};return xt(r,(a,c)=>{const l=n(a,o+1);!vt(l)&&(s[c]=l)}),e[o]=void 0,s}}return r};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,r)=>(Ye.addEventListener("message",({source:o,data:s})=>{o===Ye&&s===n&&r.length&&r.shift()()},!1),o=>{r.push(o),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:ru,isFormData:fu,isArrayBufferView:ou,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:on,kindOfTest:Re,endsWith:vu,toArray:xu,forEachEntry:Mu,matchAll:Iu,isHTMLForm:Ru,hasOwnProperty:rs,hasOwnProp:rs,reduceDescriptors:os,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,r,o){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),r&&(this.request=r),o&&(this.response=o,this.status=o.status?o.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,r,o,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,r,o),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(o,s){return o=us(o),!n&&s?"["+o+"]":o}).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 r=n.metaTokens,o=n.visitor||h,s=n.dots,a=n.indexes,l=(n.Blob||typeof Blob<"u"&&Blob)&&C.isSpecCompliantForm(e);if(!C.isFunction(o))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=r?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)&&o.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(r){return e[r]})}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(r){return e.call(this,r,fs)}:fs;return this._pairs.map(function(o){return n(o[0])+"="+n(o[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 r=n&&n.encode||Wu,o=n&&n.serialize;let s;if(o?s=o(e,n):s=C.isURLSearchParams(e)?e.toString():new Kn(e,n).toString(r),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,r){return this.handlers.push({fulfilled:e,rejected:n,synchronous:r?r.synchronous:!1,runWhen:r?r.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(r){r!==null&&e(r)})}}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,r,o,s){return fe.isNode&&C.isBuffer(n)?(this.append(r,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 r;const o=n.length;let s;for(r=0;r<o;r++)s=n[r],e[s]=t[s];return e}function ws(t){function e(n,r,o,s){let a=n[s++];if(a==="__proto__")return!0;const c=Number.isFinite(+a),l=s>=n.length;return a=!a&&C.isArray(o)?o.length:a,l?(C.hasOwnProp(o,a)?o[a]=[o[a],r]:o[a]=r,!c):((!o[a]||!C.isObject(o[a]))&&(o[a]=[]),e(n,r,o[a],s)&&C.isArray(o[a])&&(o[a]=Qu(o[a])),!c)}if(C.isFormData(t)&&C.isFunction(t.entries)){const n={};return C.forEachEntry(t,(r,o)=>{e(Yu(r),o,n,0)}),n}return null}function Ku(t,e,n){if(C.isString(t))try{return(e||JSON.parse)(t),C.trim(t)}catch(r){if(r.name!=="SyntaxError")throw r}return(0,JSON.stringify)(t)}const Bt={transitional:ys,adapter:["xhr","http","fetch"],transformRequest:[function(e,n){const r=n.getContentType()||"",o=r.indexOf("application/json")>-1,s=C.isObject(e);if(s&&C.isHTMLForm(e)&&(e=new FormData(e)),C.isFormData(e))return o?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(r.indexOf("application/x-www-form-urlencoded")>-1)return Ju(e,this.formSerializer).toString();if((c=C.isFileList(e))||r.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||o?(n.setContentType("application/json",!1),Ku(e)):e}],transformResponse:[function(e){const n=this.transitional||Bt.transitional,r=n&&n.forcedJSONParsing,o=this.responseType==="json";if(C.isResponse(e)||C.isReadableStream(e))return e;if(e&&C.isString(e)&&(r&&!this.responseType||o)){const a=!(n&&n.silentJSONParsing)&&o;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,r,o;return t&&t.split(`
34
34
  `).forEach(function(a){o=a.indexOf(":"),n=a.substring(0,o).trim().toLowerCase(),r=a.substring(o+1).trim(),!(!n||e[n]&&eh[n])&&(n==="set-cookie"?e[n]?e[n].push(r):e[n]=[r]:e[n]=e[n]?e[n]+", "+r:r)}),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 r;for(;r=n.exec(t);)e[r[1]]=r[2];return e}const ih=t=>/^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(t.trim());function ni(t,e,n,r,o){if(C.isFunction(r))return r.call(this,e,n);if(o&&(e=n),!!C.isString(e)){if(C.isString(r))return e.indexOf(r)!==-1;if(C.isRegExp(r))return r.test(e)}}function rh(t){return t.trim().toLowerCase().replace(/([a-z\d])(\w*)/g,(e,n,r)=>n.toUpperCase()+r)}function oh(t,e){const n=C.toCamelCase(" "+e);["get","set","has"].forEach(r=>{Object.defineProperty(t,r+n,{value:function(o,s,a){return this[r].call(this,e,o,s,a)},configurable:!0})})}class me{constructor(e){e&&this.set(e)}set(e,n,r){const o=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(o,h);(!f||o[f]===void 0||u===!0||u===void 0&&o[f]!==!1)&&(o[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,r);else e!=null&&s(n,e,r);return this}get(e,n){if(e=Mt(e),e){const r=C.findKey(this,e);if(r){const o=this[r];if(!n)return o;if(n===!0)return nh(o);if(C.isFunction(n))return n.call(this,o,r);if(C.isRegExp(n))return n.exec(o);throw new TypeError("parser must be boolean|regexp|function")}}}has(e,n){if(e=Mt(e),e){const r=C.findKey(this,e);return!!(r&&this[r]!==void 0&&(!n||ni(this,this[r],r,n)))}return!1}delete(e,n){const r=this;let o=!1;function s(a){if(a=Mt(a),a){const c=C.findKey(r,a);c&&(!n||ni(r,r[c],c,n))&&(delete r[c],o=!0)}}return C.isArray(e)?e.forEach(s):s(e),o}clear(e){const n=Object.keys(this);let r=n.length,o=!1;for(;r--;){const s=n[r];(!e||ni(this,this[s],s,e,!0))&&(delete this[s],o=!0)}return o}normalize(e){const n=this,r={};return C.forEach(this,(o,s)=>{const a=C.findKey(r,s);if(a){n[a]=dn(o),delete n[s];return}const c=e?rh(s):String(s).trim();c!==s&&delete n[s],n[c]=dn(o),r[c]=!0}),this}concat(...e){return this.constructor.concat(this,...e)}toJSON(e){const n=Object.create(null);return C.forEach(this,(r,o)=>{r!=null&&r!==!1&&(n[o]=e&&C.isArray(r)?r.join(", "):r)}),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 r=new this(e);return n.forEach(o=>r.set(o)),r}static accessor(e){const r=(this[bs]=this[bs]={accessors:{}}).accessors,o=this.prototype;function s(a){const c=Mt(a);r[c]||(oh(o,a),r[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(r){this[n]=r}}}),C.freezeMethods(me);function ii(t,e){const n=this||Bt,r=e||n,o=me.from(r.headers);let s=r.data;return C.forEach(t,function(c){s=c.call(n,s,o.normalize(),e?e.status:void 0)}),o.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 r=n.config.validateStatus;!n.status||!r||r(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),r=new Array(t);let o=0,s=0,a;return e=e!==void 0?e:1e3,function(l){const u=Date.now(),h=r[s];a||(a=u),n[o]=l,r[o]=u;let f=s,m=0;for(;f!==o;)m+=n[f++],f=f%t;if(o=(o+1)%t,o===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,r=1e3/e,o,s;const a=(u,h=Date.now())=>{n=h,o=null,s&&(clearTimeout(s),s=null),t.apply(null,u)};return[(...u)=>{const h=Date.now(),f=h-n;f>=r?a(u,h):(o=u,s||(s=setTimeout(()=>{s=null,a(o)},r-f)))},()=>o&&a(o)]}const un=(t,e,n=3)=>{let r=0;const o=ah(50,250);return lh(s=>{const a=s.loaded,c=s.lengthComputable?s.total:void 0,l=a-r,u=o(l),h=a<=c;r=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[r=>e[0]({lengthComputable:n,total:t,loaded:r}),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 r;function o(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 r=o(window.location.href),function(a){const c=C.isString(a)?o(a):a;return c.protocol===r.protocol&&c.host===r.host}}():function(){return function(){return!0}}(),dh=fe.hasStandardBrowserEnv?{write(t,e,n,r,o,s){const a=[t+"="+encodeURIComponent(e)];C.isNumber(n)&&a.push("expires="+new Date(n).toGMTString()),C.isString(r)&&a.push("path="+r),C.isString(o)&&a.push("domain="+o),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 r(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 o(u,h,f){if(C.isUndefined(h)){if(!C.isUndefined(u))return r(void 0,u,f)}else return r(u,h,f)}function s(u,h){if(!C.isUndefined(h))return r(void 0,h)}function a(u,h){if(C.isUndefined(h)){if(!C.isUndefined(u))return r(void 0,u)}else return r(void 0,h)}function c(u,h,f){if(f in e)return r(u,h);if(f in t)return r(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)=>o(xs(u),xs(h),!0)};return C.forEach(Object.keys(Object.assign({},t,e)),function(h){const f=l[h]||o,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:r,xsrfHeaderName:o,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&&(r&&C.isFunction(r)&&(r=r(e)),r||r!==!1&&ch(e.url))){const u=o&&s&&dh.read(s);u&&a.set(o,u)}return e},fh=typeof XMLHttpRequest<"u"&&function(t){return new Promise(function(n,r){const o=Bs(t);let s=o.data;const a=me.from(o.headers).normalize();let{responseType:c,onUploadProgress:l,onDownloadProgress:u}=o,h,f,m,g,p;function E(){g&&g(),p&&p(),o.cancelToken&&o.cancelToken.unsubscribe(h),o.signal&&o.signal.removeEventListener("abort",h)}let w=new XMLHttpRequest;w.open(o.method.toUpperCase(),o.url,!0),w.timeout=o.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){r(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&&(r(new D("Request aborted",D.ECONNABORTED,t,w)),w=null)},w.onerror=function(){r(new D("Network Error",D.ERR_NETWORK,t,w)),w=null},w.ontimeout=function(){let F=o.timeout?"timeout of "+o.timeout+"ms exceeded":"timeout exceeded";const z=o.transitional||ys;o.timeoutErrorMessage&&(F=o.timeoutErrorMessage),r(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(o.withCredentials)||(w.withCredentials=!!o.withCredentials),c&&c!=="json"&&(w.responseType=o.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)),(o.cancelToken||o.signal)&&(h=L=>{w&&(r(!L||L.type?new ct(null,t,w):L),w.abort(),w=null)},o.cancelToken&&o.cancelToken.subscribe(h),o.signal&&(o.signal.aborted?h():o.signal.addEventListener("abort",h)));const O=sh(o.url);if(O&&fe.protocols.indexOf(O)===-1){r(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 r=new AbortController,o;const s=function(u){if(!o){o=!0,c();const h=u instanceof Error?u:this.reason;r.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}=r;return l.unsubscribe=()=>C.asap(c),l}},ph=function*(t,e){let n=t.byteLength;if(n<e){yield t;return}let r=0,o;for(;r<n;)o=r+e,yield t.slice(r,o),r=o},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:r}=await e.read();if(n)break;yield r}}finally{await e.cancel()}},Ms=(t,e,n,r)=>{const o=gh(t,e);let s=0,a,c=l=>{a||(a=!0,r&&r(l))};return new ReadableStream({async pull(l){try{const{done:u,value:h}=await o.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),o.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,ri=Is&&Rs(()=>C.isReadableStream(new Response("").body)),fn={stream:ri&&(t=>t.body)};hn&&(t=>{["text","arrayBuffer","blob","formData","stream"].forEach(e=>{!fn[e]&&(fn[e]=C.isFunction(t[e])?n=>n[e]():(n,r)=>{throw new D(`Response type '${e}' is not supported`,D.ERR_NOT_SUPPORT,r)})})})(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)},oi={http:qu,xhr:fh,fetch:hn&&(async t=>{let{url:e,method:n,data:r,signal:o,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([o,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,r))!==0){let z=new Request(e,{method:"POST",body:r,duplex:"half"}),we;if(C.isFormData(r)&&(we=z.headers.get("content-type"))&&h.setContentType(we),z.body){const[ke,je]=ks(w,un(Es(l)));r=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:r,duplex:"half",credentials:M?f:void 0});let O=await fetch(p);const L=ri&&(u==="stream"||u==="response");if(ri&&(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(oi,(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,r;const o={};for(let s=0;s<e;s++){n=t[s];let a;if(r=n,!kh(n)&&(r=oi[(a=String(n)).toLowerCase()],r===void 0))throw new D(`Unknown adapter '${a}'`);if(r)break;o[a||"#"+s]=r}if(!r){const s=Object.entries(o).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
@@ -2,7 +2,7 @@
2
2
  "name": "sprof",
3
3
  "description": "components for the designer and uikit",
4
4
  "author": "Stanislav Lushnikov, Daniil Gaivoronskiy",
5
- "version": "0.0.101",
5
+ "version": "0.0.102",
6
6
  "private": false,
7
7
  "type": "module",
8
8
  "main": "./dist/sprof.umd.cjs",