@dnb/eufemia 9.35.0 → 9.36.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (49) hide show
  1. package/CHANGELOG.md +18 -0
  2. package/cjs/components/space/Space.js +2 -2
  3. package/cjs/components/space/SpacingUtils.d.ts +14 -9
  4. package/cjs/components/space/SpacingUtils.js +59 -45
  5. package/cjs/components/step-indicator/StepIndicatorSidebar.js +5 -1
  6. package/cjs/elements/Element.d.ts +1 -1
  7. package/cjs/shared/Eufemia.js +1 -1
  8. package/cjs/shared/MediaQueryUtils.d.ts +1 -5
  9. package/cjs/shared/MediaQueryUtils.js +1 -7
  10. package/cjs/shared/SpacingHelper.d.ts +6 -1
  11. package/cjs/shared/useMedia.js +1 -2
  12. package/cjs/shared/useMediaQuery.js +4 -2
  13. package/components/space/Space.js +2 -2
  14. package/components/space/SpacingUtils.d.ts +14 -9
  15. package/components/space/SpacingUtils.js +57 -44
  16. package/components/step-indicator/StepIndicatorSidebar.js +3 -1
  17. package/elements/Element.d.ts +1 -1
  18. package/es/components/space/Space.js +2 -2
  19. package/es/components/space/SpacingUtils.d.ts +14 -9
  20. package/es/components/space/SpacingUtils.js +44 -36
  21. package/es/components/step-indicator/StepIndicatorSidebar.js +3 -1
  22. package/es/elements/Element.d.ts +1 -1
  23. package/es/shared/Eufemia.js +1 -1
  24. package/es/shared/MediaQueryUtils.d.ts +1 -5
  25. package/es/shared/MediaQueryUtils.js +1 -6
  26. package/es/shared/SpacingHelper.d.ts +6 -1
  27. package/es/shared/useMedia.js +1 -2
  28. package/es/shared/useMediaQuery.js +4 -2
  29. package/esm/dnb-ui-basis.min.mjs +5 -0
  30. package/esm/dnb-ui-components.min.mjs +17 -0
  31. package/esm/dnb-ui-elements.min.mjs +16 -0
  32. package/esm/dnb-ui-extensions.min.mjs +17 -0
  33. package/esm/dnb-ui-icons.min.mjs +1 -0
  34. package/esm/dnb-ui-lib.min.mjs +2 -2
  35. package/esm/dnb-ui-web-components.min.mjs +17 -0
  36. package/package.json +1 -1
  37. package/shared/Eufemia.js +1 -1
  38. package/shared/MediaQueryUtils.d.ts +1 -5
  39. package/shared/MediaQueryUtils.js +1 -7
  40. package/shared/SpacingHelper.d.ts +6 -1
  41. package/shared/useMedia.js +1 -2
  42. package/shared/useMediaQuery.js +4 -2
  43. package/umd/dnb-ui-basis.min.js +12 -0
  44. package/umd/dnb-ui-components.min.js +24 -0
  45. package/umd/dnb-ui-elements.min.js +23 -0
  46. package/umd/dnb-ui-extensions.min.js +24 -0
  47. package/umd/dnb-ui-icons.min.js +1 -0
  48. package/umd/dnb-ui-lib.min.js +2 -2
  49. package/umd/dnb-ui-web-components.min.js +24 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dnb/eufemia",
3
- "version": "9.35.0",
3
+ "version": "9.36.0",
4
4
  "description": "DNB Eufemia Design System UI Library",
5
5
  "license": "SEE LICENSE IN LICENSE FILE",
6
6
  "author": "DNB Team & Tobias Høegh",
package/shared/Eufemia.js CHANGED
@@ -10,7 +10,7 @@ export function init() {
10
10
  _createClass(Eufemia, [{
11
11
  key: "version",
12
12
  get: function get() {
13
- return '__VERSION__';
13
+ return '9.36.0';
14
14
  }
15
15
  }]);
16
16
 
@@ -32,10 +32,6 @@ export declare type MediaQueryProperties = {
32
32
  * If set to true, no MediaQuery will be used.
33
33
  */
34
34
  disabled?: boolean;
35
- /**
36
- * If set to true, no Eufemia warning will be shown when window.matchMedia is undefined
37
- */
38
- dismissWarning?: boolean;
39
35
  /**
40
36
  * For debugging
41
37
  */
@@ -84,7 +80,7 @@ export declare const isMatchMediaSupported: () => boolean;
84
80
  * @property {boolean} log - print used query to console
85
81
  * @returns MediaQueryList type
86
82
  */
87
- export declare function makeMediaQueryList({ query, when, not, log, disabled, dismissWarning, }?: MediaQueryProperties, breakpoints?: MediaQueryBreakpoints): MediaQueryList;
83
+ export declare function makeMediaQueryList({ query, when, not, log, disabled, }?: MediaQueryProperties, breakpoints?: MediaQueryBreakpoints): MediaQueryList;
88
84
  /**
89
85
  * Adds a listener to the window.matchMedia Browser API
90
86
  *
@@ -72,18 +72,12 @@ export function makeMediaQueryList() {
72
72
  _ref2$log = _ref2.log,
73
73
  log = _ref2$log === void 0 ? false : _ref2$log,
74
74
  _ref2$disabled = _ref2.disabled,
75
- disabled = _ref2$disabled === void 0 ? false : _ref2$disabled,
76
- _ref2$dismissWarning = _ref2.dismissWarning,
77
- dismissWarning = _ref2$dismissWarning === void 0 ? false : _ref2$dismissWarning;
75
+ disabled = _ref2$disabled === void 0 ? false : _ref2$disabled;
78
76
 
79
77
  var breakpoints = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null;
80
78
  var isSupported = isMatchMediaSupported();
81
79
 
82
80
  if (disabled || !isSupported) {
83
- if (!dismissWarning && !isSupported) {
84
- warn('window.matchMedia is "undefined"');
85
- }
86
-
87
81
  return null;
88
82
  }
89
83
 
@@ -1 +1,6 @@
1
- export const SpacingHelper: (props: any) => {};
1
+ export const SpacingHelper: (props: (Record<string, unknown> | import("./types").SpacingProps) & {
2
+ maxWidth?: string;
3
+ maxHeight?: string;
4
+ width?: string;
5
+ height?: string;
6
+ }) => {};
@@ -77,8 +77,7 @@ export default function useMedia() {
77
77
  var mediaQueryList = makeMediaQueryList({
78
78
  when: when,
79
79
  disabled: disabled,
80
- log: log,
81
- dismissWarning: true
80
+ log: log
82
81
  }, context.breakpoints);
83
82
  var event = createMediaQueryListener(mediaQueryList, function (match) {
84
83
  if (!disabledRef.current && match) {
@@ -37,9 +37,11 @@ export default function useMediaQuery(props) {
37
37
  }
38
38
 
39
39
  if (typeof listenerRef.current === 'function') {
40
+ var _mediaQueryList$curre2;
41
+
40
42
  listenerRef.current();
41
43
  mediaQueryList.current = makeMediaQueryList(props, context.breakpoints);
42
- matchUpdate(mediaQueryList.current.matches);
44
+ matchUpdate((_mediaQueryList$curre2 = mediaQueryList.current) === null || _mediaQueryList$curre2 === void 0 ? void 0 : _mediaQueryList$curre2.matches);
43
45
  }
44
46
 
45
47
  listenerRef.current = createMediaQueryListener(mediaQueryList.current, function (match) {
@@ -47,5 +49,5 @@ export default function useMediaQuery(props) {
47
49
  });
48
50
  return listenerRef.current;
49
51
  }, [query, when, not, disabled]);
50
- return match;
52
+ return Boolean(match);
51
53
  }
@@ -0,0 +1,12 @@
1
+ !function(t,e){"object"==typeof exports&&"undefined"!=typeof module?e(exports,require("react")):"function"==typeof define&&define.amd?define(["exports","react"],e):e((t="undefined"!=typeof globalThis?globalThis:t||self).dnbBasis={})}(this,(function(t){"use strict";var e="undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{};"function"==typeof e.setTimeout&&setTimeout,"function"==typeof e.clearTimeout&&clearTimeout;function n(t,e){this.fun=t,this.array=e}n.prototype.run=function(){this.fun.apply(null,this.array)};var r=e.performance||{};r.now||r.mozNow||r.msNow||r.oNow||r.webkitNow;new Date;var o=function(t){return t&&t.Math==Math&&t},i=o("object"==typeof globalThis&&globalThis)||o("object"==typeof window&&window)||o("object"==typeof self&&self)||o("object"==typeof i&&i)||function(){return this}()||Function("return this")(),u={},a=function(t){try{return!!t()}catch(t){return!0}},c=!a((function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]})),f=Function.prototype.call,s=f.bind?f.bind(f):function(){return f.apply(f,arguments)},l={},d={}.propertyIsEnumerable,p=Object.getOwnPropertyDescriptor,h=p&&!d.call({1:2},1);l.f=h?function(t){var e=p(this,t);return!!e&&e.enumerable}:d;var v,g,y=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}},m=Function.prototype,w=m.bind,b=m.call,x=w&&w.bind(b),E=w?function(t){return t&&x(b,t)}:function(t){return t&&function(){return b.apply(t,arguments)}},O=E,S=O({}.toString),L=O("".slice),k=function(t){return L(S(t),8,-1)},j=E,A=a,P=k,R=i.Object,T=j("".split),C=A((function(){return!R("z").propertyIsEnumerable(0)}))?function(t){return"String"==P(t)?T(t,""):R(t)}:R,I=i.TypeError,_=function(t){if(null==t)throw I("Can't call method on "+t);return t},M=C,N=_,F=function(t){return M(N(t))},D=function(t){return"function"==typeof t},G=D,$=function(t){return"object"==typeof t?null!==t:G(t)},U=i,B=D,Y=function(t){return B(t)?t:void 0},K=function(t,e){return arguments.length<2?Y(U[t]):U[t]&&U[t][e]},W=E({}.isPrototypeOf),z=i,H=K("navigator","userAgent")||"",V=z.process,X=z.Deno,q=V&&V.versions||X&&X.version,J=q&&q.v8;J&&(g=(v=J.split("."))[0]>0&&v[0]<4?1:+(v[0]+v[1])),!g&&H&&(!(v=H.match(/Edge\/(\d+)/))||v[1]>=74)&&(v=H.match(/Chrome\/(\d+)/))&&(g=+v[1]);var Q=g,Z=Q,tt=a,et=!!Object.getOwnPropertySymbols&&!tt((function(){var t=Symbol();return!String(t)||!(Object(t)instanceof Symbol)||!Symbol.sham&&Z&&Z<41})),nt=et&&!Symbol.sham&&"symbol"==typeof Symbol.iterator,rt=K,ot=D,it=W,ut=nt,at=i.Object,ct=ut?function(t){return"symbol"==typeof t}:function(t){var e=rt("Symbol");return ot(e)&&it(e.prototype,at(t))},ft=i.String,st=function(t){try{return ft(t)}catch(t){return"Object"}},lt=D,dt=st,pt=i.TypeError,ht=function(t){if(lt(t))return t;throw pt(dt(t)+" is not a function")},vt=ht,gt=function(t,e){var n=t[e];return null==n?void 0:vt(n)},yt=s,mt=D,wt=$,bt=i.TypeError,xt={exports:{}},Et=i,Ot=Object.defineProperty,St=function(t,e){try{Ot(Et,t,{value:e,configurable:!0,writable:!0})}catch(n){Et[t]=e}return e},Lt=St,kt="__core-js_shared__",jt=i[kt]||Lt(kt,{}),At=jt;(xt.exports=function(t,e){return At[t]||(At[t]=void 0!==e?e:{})})("versions",[]).push({version:"3.19.1",mode:"global",copyright:"© 2021 Denis Pushkarev (zloirock.ru)"});var Pt=_,Rt=i.Object,Tt=function(t){return Rt(Pt(t))},Ct=Tt,It=E({}.hasOwnProperty),_t=Object.hasOwn||function(t,e){return It(Ct(t),e)},Mt=E,Nt=0,Ft=Math.random(),Dt=Mt(1..toString),Gt=function(t){return"Symbol("+(void 0===t?"":t)+")_"+Dt(++Nt+Ft,36)},$t=i,Ut=xt.exports,Bt=_t,Yt=Gt,Kt=et,Wt=nt,zt=Ut("wks"),Ht=$t.Symbol,Vt=Ht&&Ht.for,Xt=Wt?Ht:Ht&&Ht.withoutSetter||Yt,qt=function(t){if(!Bt(zt,t)||!Kt&&"string"!=typeof zt[t]){var e="Symbol."+t;Kt&&Bt(Ht,t)?zt[t]=Ht[t]:zt[t]=Wt&&Vt?Vt(e):Xt(e)}return zt[t]},Jt=s,Qt=$,Zt=ct,te=gt,ee=function(t,e){var n,r;if("string"===e&&mt(n=t.toString)&&!wt(r=yt(n,t)))return r;if(mt(n=t.valueOf)&&!wt(r=yt(n,t)))return r;if("string"!==e&&mt(n=t.toString)&&!wt(r=yt(n,t)))return r;throw bt("Can't convert object to primitive value")},ne=qt,re=i.TypeError,oe=ne("toPrimitive"),ie=function(t,e){if(!Qt(t)||Zt(t))return t;var n,r=te(t,oe);if(r){if(void 0===e&&(e="default"),n=Jt(r,t,e),!Qt(n)||Zt(n))return n;throw re("Can't convert object to primitive value")}return void 0===e&&(e="number"),ee(t,e)},ue=ct,ae=function(t){var e=ie(t,"string");return ue(e)?e:e+""},ce=$,fe=i.document,se=ce(fe)&&ce(fe.createElement),le=function(t){return se?fe.createElement(t):{}},de=le,pe=!c&&!a((function(){return 7!=Object.defineProperty(de("div"),"a",{get:function(){return 7}}).a})),he=c,ve=s,ge=l,ye=y,me=F,we=ae,be=_t,xe=pe,Ee=Object.getOwnPropertyDescriptor;u.f=he?Ee:function(t,e){if(t=me(t),e=we(e),xe)try{return Ee(t,e)}catch(t){}if(be(t,e))return ye(!ve(ge.f,t,e),t[e])};var Oe={},Se=i,Le=$,ke=Se.String,je=Se.TypeError,Ae=function(t){if(Le(t))return t;throw je(ke(t)+" is not an object")},Pe=c,Re=pe,Te=Ae,Ce=ae,Ie=i.TypeError,_e=Object.defineProperty;Oe.f=Pe?_e:function(t,e,n){if(Te(t),e=Ce(e),Te(n),Re)try{return _e(t,e,n)}catch(t){}if("get"in n||"set"in n)throw Ie("Accessors not supported");return"value"in n&&(t[e]=n.value),t};var Me=Oe,Ne=y,Fe=c?function(t,e,n){return Me.f(t,e,Ne(1,n))}:function(t,e,n){return t[e]=n,t},De={exports:{}},Ge=D,$e=jt,Ue=E(Function.toString);Ge($e.inspectSource)||($e.inspectSource=function(t){return Ue(t)});var Be,Ye,Ke,We=$e.inspectSource,ze=D,He=We,Ve=i.WeakMap,Xe=ze(Ve)&&/native code/.test(He(Ve)),qe=xt.exports,Je=Gt,Qe=qe("keys"),Ze=function(t){return Qe[t]||(Qe[t]=Je(t))},tn={},en=Xe,nn=i,rn=E,on=$,un=Fe,an=_t,cn=jt,fn=Ze,sn=tn,ln="Object already initialized",dn=nn.TypeError,pn=nn.WeakMap;if(en||cn.state){var hn=cn.state||(cn.state=new pn),vn=rn(hn.get),gn=rn(hn.has),yn=rn(hn.set);Be=function(t,e){if(gn(hn,t))throw new dn(ln);return e.facade=t,yn(hn,t,e),e},Ye=function(t){return vn(hn,t)||{}},Ke=function(t){return gn(hn,t)}}else{var mn=fn("state");sn[mn]=!0,Be=function(t,e){if(an(t,mn))throw new dn(ln);return e.facade=t,un(t,mn,e),e},Ye=function(t){return an(t,mn)?t[mn]:{}},Ke=function(t){return an(t,mn)}}var wn={set:Be,get:Ye,has:Ke,enforce:function(t){return Ke(t)?Ye(t):Be(t,{})},getterFor:function(t){return function(e){var n;if(!on(e)||(n=Ye(e)).type!==t)throw dn("Incompatible receiver, "+t+" required");return n}}},bn=c,xn=_t,En=Function.prototype,On=bn&&Object.getOwnPropertyDescriptor,Sn=xn(En,"name"),Ln={EXISTS:Sn,PROPER:Sn&&"something"===function(){}.name,CONFIGURABLE:Sn&&(!bn||bn&&On(En,"name").configurable)},kn=i,jn=D,An=_t,Pn=Fe,Rn=St,Tn=We,Cn=Ln.CONFIGURABLE,In=wn.get,_n=wn.enforce,Mn=String(String).split("String");(De.exports=function(t,e,n,r){var o,i=!!r&&!!r.unsafe,u=!!r&&!!r.enumerable,a=!!r&&!!r.noTargetGet,c=r&&void 0!==r.name?r.name:e;jn(n)&&("Symbol("===String(c).slice(0,7)&&(c="["+String(c).replace(/^Symbol\(([^)]*)\)/,"$1")+"]"),(!An(n,"name")||Cn&&n.name!==c)&&Pn(n,"name",c),(o=_n(n)).source||(o.source=Mn.join("string"==typeof c?c:""))),t!==kn?(i?!a&&t[e]&&(u=!0):delete t[e],u?t[e]=n:Pn(t,e,n)):u?t[e]=n:Rn(e,n)})(Function.prototype,"toString",(function(){return jn(this)&&In(this).source||Tn(this)}));var Nn={},Fn=Math.ceil,Dn=Math.floor,Gn=function(t){var e=+t;return e!=e||0===e?0:(e>0?Dn:Fn)(e)},$n=Gn,Un=Math.max,Bn=Math.min,Yn=function(t,e){var n=$n(t);return n<0?Un(n+e,0):Bn(n,e)},Kn=Gn,Wn=Math.min,zn=function(t){return t>0?Wn(Kn(t),9007199254740991):0},Hn=zn,Vn=function(t){return Hn(t.length)},Xn=F,qn=Yn,Jn=Vn,Qn=function(t){return function(e,n,r){var o,i=Xn(e),u=Jn(i),a=qn(r,u);if(t&&n!=n){for(;u>a;)if((o=i[a++])!=o)return!0}else for(;u>a;a++)if((t||a in i)&&i[a]===n)return t||a||0;return!t&&-1}},Zn={includes:Qn(!0),indexOf:Qn(!1)},tr=_t,er=F,nr=Zn.indexOf,rr=tn,or=E([].push),ir=function(t,e){var n,r=er(t),o=0,i=[];for(n in r)!tr(rr,n)&&tr(r,n)&&or(i,n);for(;e.length>o;)tr(r,n=e[o++])&&(~nr(i,n)||or(i,n));return i},ur=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"],ar=ir,cr=ur.concat("length","prototype");Nn.f=Object.getOwnPropertyNames||function(t){return ar(t,cr)};var fr={};fr.f=Object.getOwnPropertySymbols;var sr=K,lr=Nn,dr=fr,pr=Ae,hr=E([].concat),vr=sr("Reflect","ownKeys")||function(t){var e=lr.f(pr(t)),n=dr.f;return n?hr(e,n(t)):e},gr=_t,yr=vr,mr=u,wr=Oe,br=a,xr=D,Er=/#|\.prototype\./,Or=function(t,e){var n=Lr[Sr(t)];return n==jr||n!=kr&&(xr(e)?br(e):!!e)},Sr=Or.normalize=function(t){return String(t).replace(Er,".").toLowerCase()},Lr=Or.data={},kr=Or.NATIVE="N",jr=Or.POLYFILL="P",Ar=Or,Pr=i,Rr=u.f,Tr=Fe,Cr=De.exports,Ir=St,_r=function(t,e){for(var n=yr(e),r=wr.f,o=mr.f,i=0;i<n.length;i++){var u=n[i];gr(t,u)||r(t,u,o(e,u))}},Mr=Ar,Nr=function(t,e){var n,r,o,i,u,a=t.target,c=t.global,f=t.stat;if(n=c?Pr:f?Pr[a]||Ir(a,{}):(Pr[a]||{}).prototype)for(r in e){if(i=e[r],o=t.noTargetGet?(u=Rr(n,r))&&u.value:n[r],!Mr(c?r:a+(f?".":"#")+r,t.forced)&&void 0!==o){if(typeof i==typeof o)continue;_r(i,o)}(t.sham||o&&o.sham)&&Tr(i,"sham",!0),Cr(n,r,i,t)}},Fr=Function.prototype,Dr=Fr.apply,Gr=Fr.bind,$r=Fr.call,Ur="object"==typeof Reflect&&Reflect.apply||(Gr?$r.bind(Dr):function(){return $r.apply(Dr,arguments)}),Br=k,Yr=Array.isArray||function(t){return"Array"==Br(t)},Kr={};Kr[qt("toStringTag")]="z";var Wr,zr="[object z]"===String(Kr),Hr=i,Vr=zr,Xr=D,qr=k,Jr=qt("toStringTag"),Qr=Hr.Object,Zr="Arguments"==qr(function(){return arguments}()),to=Vr?qr:function(t){var e,n,r;return void 0===t?"Undefined":null===t?"Null":"string"==typeof(n=function(t,e){try{return t[e]}catch(t){}}(e=Qr(t),Jr))?n:Zr?qr(e):"Object"==(r=qr(e))&&Xr(e.callee)?"Arguments":r},eo=to,no=i.String,ro=function(t){if("Symbol"===eo(t))throw TypeError("Cannot convert a Symbol value to a string");return no(t)},oo=ir,io=ur,uo=Object.keys||function(t){return oo(t,io)},ao=Oe,co=Ae,fo=F,so=uo,lo=c?Object.defineProperties:function(t,e){co(t);for(var n,r=fo(e),o=so(e),i=o.length,u=0;i>u;)ao.f(t,n=o[u++],r[n]);return t},po=K("document","documentElement"),ho=Ae,vo=lo,go=ur,yo=tn,mo=po,wo=le,bo=Ze("IE_PROTO"),xo=function(){},Eo=function(t){return"<script>"+t+"</"+"script>"},Oo=function(t){t.write(Eo("")),t.close();var e=t.parentWindow.Object;return t=null,e},So=function(){try{Wr=new ActiveXObject("htmlfile")}catch(t){}var t,e;So="undefined"!=typeof document?document.domain&&Wr?Oo(Wr):((e=wo("iframe")).style.display="none",mo.appendChild(e),e.src=String("javascript:"),(t=e.contentWindow.document).open(),t.write(Eo("document.F=Object")),t.close(),t.F):Oo(Wr);for(var n=go.length;n--;)delete So.prototype[go[n]];return So()};yo[bo]=!0;var Lo=Object.create||function(t,e){var n;return null!==t?(xo.prototype=ho(t),n=new xo,xo.prototype=null,n[bo]=t):n=So(),void 0===e?n:vo(n,e)},ko={},jo=E([].slice),Ao=k,Po=F,Ro=Nn.f,To=jo,Co="object"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[];ko.f=function(t){return Co&&"Window"==Ao(t)?function(t){try{return Ro(t)}catch(t){return To(Co)}}(t):Ro(Po(t))};var Io={},_o=qt;Io.f=_o;var Mo=i,No=_t,Fo=Io,Do=Oe.f,Go=Oe.f,$o=_t,Uo=qt("toStringTag"),Bo=function(t,e,n){t&&!$o(t=n?t:t.prototype,Uo)&&Go(t,Uo,{configurable:!0,value:e})},Yo=ht,Ko=E(E.bind),Wo=function(t,e){return Yo(t),void 0===e?t:Ko?Ko(t,e):function(){return t.apply(e,arguments)}},zo=E,Ho=a,Vo=D,Xo=to,qo=We,Jo=function(){},Qo=[],Zo=K("Reflect","construct"),ti=/^\s*(?:class|function)\b/,ei=zo(ti.exec),ni=!ti.exec(Jo),ri=function(t){if(!Vo(t))return!1;try{return Zo(Jo,Qo,t),!0}catch(t){return!1}},oi=!Zo||Ho((function(){var t;return ri(ri.call)||!ri(Object)||!ri((function(){t=!0}))||t}))?function(t){if(!Vo(t))return!1;switch(Xo(t)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}return ni||!!ei(ti,qo(t))}:ri,ii=i,ui=Yr,ai=oi,ci=$,fi=qt("species"),si=ii.Array,li=function(t){var e;return ui(t)&&(e=t.constructor,(ai(e)&&(e===si||ui(e.prototype))||ci(e)&&null===(e=e[fi]))&&(e=void 0)),void 0===e?si:e},di=function(t,e){return new(li(t))(0===e?0:e)},pi=Wo,hi=C,vi=Tt,gi=Vn,yi=di,mi=E([].push),wi=function(t){var e=1==t,n=2==t,r=3==t,o=4==t,i=6==t,u=7==t,a=5==t||i;return function(c,f,s,l){for(var d,p,h=vi(c),v=hi(h),g=pi(f,s),y=gi(v),m=0,w=l||yi,b=e?w(c,y):n||u?w(c,0):void 0;y>m;m++)if((a||m in v)&&(p=g(d=v[m],m,h),t))if(e)b[m]=p;else if(p)switch(t){case 3:return!0;case 5:return d;case 6:return m;case 2:mi(b,d)}else switch(t){case 4:return!1;case 7:mi(b,d)}return i?-1:r||o?o:b}},bi={forEach:wi(0),map:wi(1),filter:wi(2),some:wi(3),every:wi(4),find:wi(5),findIndex:wi(6),filterReject:wi(7)},xi=Nr,Ei=i,Oi=K,Si=Ur,Li=s,ki=E,ji=c,Ai=et,Pi=a,Ri=_t,Ti=Yr,Ci=D,Ii=$,_i=W,Mi=ct,Ni=Ae,Fi=Tt,Di=F,Gi=ae,$i=ro,Ui=y,Bi=Lo,Yi=uo,Ki=Nn,Wi=ko,zi=fr,Hi=u,Vi=Oe,Xi=l,qi=jo,Ji=De.exports,Qi=xt.exports,Zi=tn,tu=Gt,eu=qt,nu=Io,ru=function(t){var e=Mo.Symbol||(Mo.Symbol={});No(e,t)||Do(e,t,{value:Fo.f(t)})},ou=Bo,iu=wn,uu=bi.forEach,au=Ze("hidden"),cu="Symbol",fu=eu("toPrimitive"),su=iu.set,lu=iu.getterFor(cu),du=Object.prototype,pu=Ei.Symbol,hu=pu&&pu.prototype,vu=Ei.TypeError,gu=Ei.QObject,yu=Oi("JSON","stringify"),mu=Hi.f,wu=Vi.f,bu=Wi.f,xu=Xi.f,Eu=ki([].push),Ou=Qi("symbols"),Su=Qi("op-symbols"),Lu=Qi("string-to-symbol-registry"),ku=Qi("symbol-to-string-registry"),ju=Qi("wks"),Au=!gu||!gu.prototype||!gu.prototype.findChild,Pu=ji&&Pi((function(){return 7!=Bi(wu({},"a",{get:function(){return wu(this,"a",{value:7}).a}})).a}))?function(t,e,n){var r=mu(du,e);r&&delete du[e],wu(t,e,n),r&&t!==du&&wu(du,e,r)}:wu,Ru=function(t,e){var n=Ou[t]=Bi(hu);return su(n,{type:cu,tag:t,description:e}),ji||(n.description=e),n},Tu=function(t,e,n){t===du&&Tu(Su,e,n),Ni(t);var r=Gi(e);return Ni(n),Ri(Ou,r)?(n.enumerable?(Ri(t,au)&&t[au][r]&&(t[au][r]=!1),n=Bi(n,{enumerable:Ui(0,!1)})):(Ri(t,au)||wu(t,au,Ui(1,{})),t[au][r]=!0),Pu(t,r,n)):wu(t,r,n)},Cu=function(t,e){Ni(t);var n=Di(e),r=Yi(n).concat(Nu(n));return uu(r,(function(e){ji&&!Li(Iu,n,e)||Tu(t,e,n[e])})),t},Iu=function(t){var e=Gi(t),n=Li(xu,this,e);return!(this===du&&Ri(Ou,e)&&!Ri(Su,e))&&(!(n||!Ri(this,e)||!Ri(Ou,e)||Ri(this,au)&&this[au][e])||n)},_u=function(t,e){var n=Di(t),r=Gi(e);if(n!==du||!Ri(Ou,r)||Ri(Su,r)){var o=mu(n,r);return!o||!Ri(Ou,r)||Ri(n,au)&&n[au][r]||(o.enumerable=!0),o}},Mu=function(t){var e=bu(Di(t)),n=[];return uu(e,(function(t){Ri(Ou,t)||Ri(Zi,t)||Eu(n,t)})),n},Nu=function(t){var e=t===du,n=bu(e?Su:Di(t)),r=[];return uu(n,(function(t){!Ri(Ou,t)||e&&!Ri(du,t)||Eu(r,Ou[t])})),r};(Ai||(pu=function(){if(_i(hu,this))throw vu("Symbol is not a constructor");var t=arguments.length&&void 0!==arguments[0]?$i(arguments[0]):void 0,e=tu(t),n=function(t){this===du&&Li(n,Su,t),Ri(this,au)&&Ri(this[au],e)&&(this[au][e]=!1),Pu(this,e,Ui(1,t))};return ji&&Au&&Pu(du,e,{configurable:!0,set:n}),Ru(e,t)},Ji(hu=pu.prototype,"toString",(function(){return lu(this).tag})),Ji(pu,"withoutSetter",(function(t){return Ru(tu(t),t)})),Xi.f=Iu,Vi.f=Tu,Hi.f=_u,Ki.f=Wi.f=Mu,zi.f=Nu,nu.f=function(t){return Ru(eu(t),t)},ji&&(wu(hu,"description",{configurable:!0,get:function(){return lu(this).description}}),Ji(du,"propertyIsEnumerable",Iu,{unsafe:!0}))),xi({global:!0,wrap:!0,forced:!Ai,sham:!Ai},{Symbol:pu}),uu(Yi(ju),(function(t){ru(t)})),xi({target:cu,stat:!0,forced:!Ai},{for:function(t){var e=$i(t);if(Ri(Lu,e))return Lu[e];var n=pu(e);return Lu[e]=n,ku[n]=e,n},keyFor:function(t){if(!Mi(t))throw vu(t+" is not a symbol");if(Ri(ku,t))return ku[t]},useSetter:function(){Au=!0},useSimple:function(){Au=!1}}),xi({target:"Object",stat:!0,forced:!Ai,sham:!ji},{create:function(t,e){return void 0===e?Bi(t):Cu(Bi(t),e)},defineProperty:Tu,defineProperties:Cu,getOwnPropertyDescriptor:_u}),xi({target:"Object",stat:!0,forced:!Ai},{getOwnPropertyNames:Mu,getOwnPropertySymbols:Nu}),xi({target:"Object",stat:!0,forced:Pi((function(){zi.f(1)}))},{getOwnPropertySymbols:function(t){return zi.f(Fi(t))}}),yu)&&xi({target:"JSON",stat:!0,forced:!Ai||Pi((function(){var t=pu();return"[null]"!=yu([t])||"{}"!=yu({a:t})||"{}"!=yu(Object(t))}))},{stringify:function(t,e,n){var r=qi(arguments),o=e;if((Ii(e)||void 0!==t)&&!Mi(t))return Ti(e)||(e=function(t,e){if(Ci(o)&&(e=Li(o,this,t,e)),!Mi(e))return e}),r[1]=e,Si(yu,null,r)}});if(!hu[fu]){var Fu=hu.valueOf;Ji(hu,fu,(function(t){return Li(Fu,this)}))}ou(pu,cu),Zi[au]=!0;var Du=Nr,Gu=a,$u=F,Uu=u.f,Bu=c,Yu=Gu((function(){Uu(1)}));Du({target:"Object",stat:!0,forced:!Bu||Yu,sham:!Bu},{getOwnPropertyDescriptor:function(t,e){return Uu($u(t),e)}});var Ku=ae,Wu=Oe,zu=y,Hu=function(t,e,n){var r=Ku(e);r in t?Wu.f(t,r,zu(0,n)):t[r]=n},Vu=vr,Xu=F,qu=u,Ju=Hu;function Qu(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function Zu(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}function ta(t,e,n){return e&&Zu(t.prototype,e),n&&Zu(t,n),t}function ea(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}Nr({target:"Object",stat:!0,sham:!c},{getOwnPropertyDescriptors:function(t){for(var e,n,r=Xu(t),o=qu.f,i=Vu(r),u={},a=0;i.length>a;)void 0!==(n=o(r,e=i[a++]))&&Ju(u,e,n);return u}});var na=Ae,ra=function(){var t=na(this),e="";return t.global&&(e+="g"),t.ignoreCase&&(e+="i"),t.multiline&&(e+="m"),t.dotAll&&(e+="s"),t.unicode&&(e+="u"),t.sticky&&(e+="y"),e},oa={},ia=a,ua=i.RegExp;oa.UNSUPPORTED_Y=ia((function(){var t=ua("a","y");return t.lastIndex=2,null!=t.exec("abcd")})),oa.BROKEN_CARET=ia((function(){var t=ua("^r","gy");return t.lastIndex=2,null!=t.exec("str")}));var aa=a,ca=i.RegExp,fa=aa((function(){var t=ca(".","s");return!(t.dotAll&&t.exec("\n")&&"s"===t.flags)})),sa=a,la=i.RegExp,da=sa((function(){var t=la("(?<a>b)","g");return"b"!==t.exec("b").groups.a||"bc"!=="b".replace(t,"$<a>c")})),pa=s,ha=E,va=ro,ga=ra,ya=oa,ma=xt.exports,wa=Lo,ba=wn.get,xa=fa,Ea=da,Oa=ma("native-string-replace",String.prototype.replace),Sa=RegExp.prototype.exec,La=Sa,ka=ha("".charAt),ja=ha("".indexOf),Aa=ha("".replace),Pa=ha("".slice),Ra=function(){var t=/a/,e=/b*/g;return pa(Sa,t,"a"),pa(Sa,e,"a"),0!==t.lastIndex||0!==e.lastIndex}(),Ta=ya.UNSUPPORTED_Y||ya.BROKEN_CARET,Ca=void 0!==/()??/.exec("")[1];(Ra||Ca||Ta||xa||Ea)&&(La=function(t){var e,n,r,o,i,u,a,c=this,f=ba(c),s=va(t),l=f.raw;if(l)return l.lastIndex=c.lastIndex,e=pa(La,l,s),c.lastIndex=l.lastIndex,e;var d=f.groups,p=Ta&&c.sticky,h=pa(ga,c),v=c.source,g=0,y=s;if(p&&(h=Aa(h,"y",""),-1===ja(h,"g")&&(h+="g"),y=Pa(s,c.lastIndex),c.lastIndex>0&&(!c.multiline||c.multiline&&"\n"!==ka(s,c.lastIndex-1))&&(v="(?: "+v+")",y=" "+y,g++),n=new RegExp("^(?:"+v+")",h)),Ca&&(n=new RegExp("^"+v+"$(?!\\s)",h)),Ra&&(r=c.lastIndex),o=pa(Sa,p?n:c,y),p?o?(o.input=Pa(o.input,g),o[0]=Pa(o[0],g),o.index=c.lastIndex,c.lastIndex+=o[0].length):c.lastIndex=0:Ra&&o&&(c.lastIndex=c.global?o.index+o[0].length:r),Ca&&o&&o.length>1&&pa(Oa,o[0],n,(function(){for(i=1;i<arguments.length-2;i++)void 0===arguments[i]&&(o[i]=void 0)})),o&&d)for(o.groups=u=wa(null),i=0;i<d.length;i++)u[(a=d[i])[0]]=o[a[1]];return o});var Ia=La;Nr({target:"RegExp",proto:!0,forced:/./.exec!==Ia},{exec:Ia});var _a=E,Ma=De.exports,Na=Ia,Fa=a,Da=qt,Ga=Fe,$a=Da("species"),Ua=RegExp.prototype,Ba=function(t,e,n,r){var o=Da(t),i=!Fa((function(){var e={};return e[o]=function(){return 7},7!=""[t](e)})),u=i&&!Fa((function(){var e=!1,n=/a/;return"split"===t&&((n={}).constructor={},n.constructor[$a]=function(){return n},n.flags="",n[o]=/./[o]),n.exec=function(){return e=!0,null},n[o](""),!e}));if(!i||!u||n){var a=_a(/./[o]),c=e(o,""[t],(function(t,e,n,r,o){var u=_a(t),c=e.exec;return c===Na||c===Ua.exec?i&&!o?{done:!0,value:a(e,n,r)}:{done:!0,value:u(n,e,r)}:{done:!1}}));Ma(String.prototype,t,c[0]),Ma(Ua,o,c[1])}r&&Ga(Ua[o],"sham",!0)},Ya=E,Ka=Gn,Wa=ro,za=_,Ha=Ya("".charAt),Va=Ya("".charCodeAt),Xa=Ya("".slice),qa=function(t){return function(e,n){var r,o,i=Wa(za(e)),u=Ka(n),a=i.length;return u<0||u>=a?t?"":void 0:(r=Va(i,u))<55296||r>56319||u+1===a||(o=Va(i,u+1))<56320||o>57343?t?Ha(i,u):r:t?Xa(i,u,u+2):o-56320+(r-55296<<10)+65536}},Ja={codeAt:qa(!1),charAt:qa(!0)},Qa=Ja.charAt,Za=function(t,e,n){return e+(n?Qa(t,e).length:1)},tc=s,ec=Ae,nc=D,rc=k,oc=Ia,ic=i.TypeError,uc=function(t,e){var n=t.exec;if(nc(n)){var r=tc(n,t,e);return null!==r&&ec(r),r}if("RegExp"===rc(t))return tc(oc,t,e);throw ic("RegExp#exec called on incompatible receiver")},ac=s,cc=Ae,fc=zn,sc=ro,lc=_,dc=gt,pc=Za,hc=uc;Ba("match",(function(t,e,n){return[function(e){var n=lc(this),r=null==e?void 0:dc(e,t);return r?ac(r,e,n):new RegExp(e)[t](sc(n))},function(t){var r=cc(this),o=sc(t),i=n(e,r,o);if(i.done)return i.value;if(!r.global)return hc(r,o);var u=r.unicode;r.lastIndex=0;for(var a,c=[],f=0;null!==(a=hc(r,o));){var s=sc(a[0]);c[f]=s,""===s&&(r.lastIndex=pc(o,fc(r.lastIndex),u)),f++}return 0===f?null:c}]}));var vc=i,gc=D,yc=vc.String,mc=vc.TypeError,wc=E,bc=Ae,xc=function(t){if("object"==typeof t||gc(t))return t;throw mc("Can't set "+yc(t)+" as a prototype")},Ec=Object.setPrototypeOf||("__proto__"in{}?function(){var t,e=!1,n={};try{(t=wc(Object.getOwnPropertyDescriptor(Object.prototype,"__proto__").set))(n,[]),e=n instanceof Array}catch(t){}return function(n,r){return bc(n),xc(r),e?t(n,r):n.__proto__=r,n}}():void 0),Oc=D,Sc=$,Lc=Ec,kc=$,jc=k,Ac=qt("match"),Pc=function(t){var e;return kc(t)&&(void 0!==(e=t[Ac])?!!e:"RegExp"==jc(t))},Rc=K,Tc=Oe,Cc=c,Ic=qt("species"),_c=c,Mc=i,Nc=E,Fc=Ar,Dc=function(t,e,n){var r,o;return Lc&&Oc(r=e.constructor)&&r!==n&&Sc(o=r.prototype)&&o!==n.prototype&&Lc(t,o),t},Gc=Fe,$c=Oe.f,Uc=Nn.f,Bc=W,Yc=Pc,Kc=ro,Wc=ra,zc=oa,Hc=De.exports,Vc=a,Xc=_t,qc=wn.enforce,Jc=function(t){var e=Rc(t),n=Tc.f;Cc&&e&&!e[Ic]&&n(e,Ic,{configurable:!0,get:function(){return this}})},Qc=fa,Zc=da,tf=qt("match"),ef=Mc.RegExp,nf=ef.prototype,rf=Mc.SyntaxError,of=Nc(Wc),uf=Nc(nf.exec),af=Nc("".charAt),cf=Nc("".replace),ff=Nc("".indexOf),sf=Nc("".slice),lf=/^\?<[^\s\d!#%&*+<=>@^][^\s!#%&*+<=>@^]*>/,df=/a/g,pf=/a/g,hf=new ef(df)!==df,vf=zc.UNSUPPORTED_Y,gf=_c&&(!hf||vf||Qc||Zc||Vc((function(){return pf[tf]=!1,ef(df)!=df||ef(pf)==pf||"/a/i"!=ef(df,"i")})));if(Fc("RegExp",gf)){for(var yf=function(t,e){var n,r,o,i,u,a,c=Bc(nf,this),f=Yc(t),s=void 0===e,l=[],d=t;if(!c&&f&&s&&t.constructor===yf)return t;if((f||Bc(nf,t))&&(t=t.source,s&&(e="flags"in d?d.flags:of(d))),t=void 0===t?"":Kc(t),e=void 0===e?"":Kc(e),d=t,Qc&&"dotAll"in df&&(r=!!e&&ff(e,"s")>-1)&&(e=cf(e,/s/g,"")),n=e,vf&&"sticky"in df&&(o=!!e&&ff(e,"y")>-1)&&(e=cf(e,/y/g,"")),Zc&&(i=function(t){for(var e,n=t.length,r=0,o="",i=[],u={},a=!1,c=!1,f=0,s="";r<=n;r++){if("\\"===(e=af(t,r)))e+=af(t,++r);else if("]"===e)a=!1;else if(!a)switch(!0){case"["===e:a=!0;break;case"("===e:uf(lf,sf(t,r+1))&&(r+=2,c=!0),o+=e,f++;continue;case">"===e&&c:if(""===s||Xc(u,s))throw new rf("Invalid capture group name");u[s]=!0,i[i.length]=[s,f],c=!1,s="";continue}c?s+=e:o+=e}return[o,i]}(t),t=i[0],l=i[1]),u=Dc(ef(t,e),c?this:nf,yf),(r||o||l.length)&&(a=qc(u),r&&(a.dotAll=!0,a.raw=yf(function(t){for(var e,n=t.length,r=0,o="",i=!1;r<=n;r++)"\\"!==(e=af(t,r))?i||"."!==e?("["===e?i=!0:"]"===e&&(i=!1),o+=e):o+="[\\s\\S]":o+=e+af(t,++r);return o}(t),n)),o&&(a.sticky=!0),l.length&&(a.groups=l)),t!==d)try{Gc(u,"source",""===d?"(?:)":d)}catch(t){}return u},mf=function(t){t in yf||$c(yf,t,{configurable:!0,get:function(){return ef[t]},set:function(e){ef[t]=e}})},wf=Uc(ef),bf=0;wf.length>bf;)mf(wf[bf++]);nf.constructor=yf,yf.prototype=nf,Hc(Mc,"RegExp",yf)}Jc("RegExp");var xf=E,Ef=Ln.PROPER,Of=De.exports,Sf=Ae,Lf=W,kf=ro,jf=a,Af=ra,Pf="toString",Rf=RegExp.prototype,Tf=Rf.toString,Cf=xf(Af),If=jf((function(){return"/a/b"!=Tf.call({source:"a",flags:"b"})})),_f=Ef&&Tf.name!=Pf;(If||_f)&&Of(RegExp.prototype,Pf,(function(){var t=Sf(this),e=kf(t.source),n=t.flags;return"/"+e+"/"+kf(void 0===n&&Lf(Rf,t)&&!("flags"in Rf)?Cf(t):n)}),{unsafe:!0});var Mf=to,Nf=zr?{}.toString:function(){return"[object "+Mf(this)+"]"},Ff=zr,Df=De.exports,Gf=Nf;Ff||Df(Object.prototype,"toString",Gf,{unsafe:!0});var $f=le("span").classList,Uf=$f&&$f.constructor&&$f.constructor.prototype,Bf=Uf===Object.prototype?void 0:Uf,Yf=a,Kf=function(t,e){var n=[][t];return!!n&&Yf((function(){n.call(null,e||function(){throw 1},1)}))},Wf=bi.forEach,zf=Kf("forEach")?[].forEach:function(t){return Wf(this,t,arguments.length>1?arguments[1]:void 0)},Hf=i,Vf={CSSRuleList:0,CSSStyleDeclaration:0,CSSValueList:0,ClientRectList:0,DOMRectList:0,DOMStringList:0,DOMTokenList:1,DataTransferItemList:0,FileList:0,HTMLAllCollection:0,HTMLCollection:0,HTMLFormElement:0,HTMLSelectElement:0,MediaList:0,MimeTypeArray:0,NamedNodeMap:0,NodeList:1,PaintRequestList:0,Plugin:0,PluginArray:0,SVGLengthList:0,SVGNumberList:0,SVGPathSegList:0,SVGPointList:0,SVGStringList:0,SVGTransformList:0,SourceBufferList:0,StyleSheetList:0,TextTrackCueList:0,TextTrackList:0,TouchList:0},Xf=Bf,qf=zf,Jf=Fe,Qf=function(t){if(t&&t.forEach!==qf)try{Jf(t,"forEach",qf)}catch(e){t.forEach=qf}};for(var Zf in Vf)Vf[Zf]&&Qf(Hf[Zf]&&Hf[Zf].prototype);Qf(Xf);var ts=c,es=E,ns=uo,rs=F,os=es(l.f),is=es([].push),us=function(t){return function(e){for(var n,r=rs(e),o=ns(r),i=o.length,u=0,a=[];i>u;)n=o[u++],ts&&!os(r,n)||is(a,t?[n,r[n]]:r[n]);return a}},as={entries:us(!0),values:us(!1)}.entries;Nr({target:"Object",stat:!0},{entries:function(t){return as(t)}});var cs=a,fs=Q,ss=qt("species"),ls=function(t){return fs>=51||!cs((function(){var e=[];return(e.constructor={})[ss]=function(){return{foo:1}},1!==e[t](Boolean).foo}))},ds=bi.filter;Nr({target:"Array",proto:!0,forced:!ls("filter")},{filter:function(t){return ds(this,t,arguments.length>1?arguments[1]:void 0)}});var ps=bi.map;Nr({target:"Array",proto:!0,forced:!ls("map")},{map:function(t){return ps(this,t,arguments.length>1?arguments[1]:void 0)}});var hs=Nr,vs=Yr,gs=E([].reverse),ys=[1,2];hs({target:"Array",proto:!0,forced:String(ys)===String(ys.reverse())},{reverse:function(){return vs(this)&&(this.length=this.length),gs(this)}});var ms=Lo,ws=Oe,bs=qt("unscopables"),xs=Array.prototype;null==xs[bs]&&ws.f(xs,bs,{configurable:!0,value:ms(null)});var Es=Zn.includes,Os=function(t){xs[bs][t]=!0};Nr({target:"Array",proto:!0},{includes:function(t){return Es(this,t,arguments.length>1?arguments[1]:void 0)}}),Os("includes");var Ss=Pc,Ls=i.TypeError,ks=qt("match"),js=Nr,As=function(t){if(Ss(t))throw Ls("The method doesn't accept regular expressions");return t},Ps=_,Rs=ro,Ts=function(t){var e=/./;try{"/./"[t](e)}catch(n){try{return e[ks]=!1,"/./"[t](e)}catch(t){}}return!1},Cs=E("".indexOf);js({target:"String",proto:!0,forced:!Ts("includes")},{includes:function(t){return!!~Cs(Rs(Ps(this)),Rs(As(t)),arguments.length>1?arguments[1]:void 0)}});var Is=a((function(){if("function"==typeof ArrayBuffer){var t=new ArrayBuffer(8);Object.isExtensible(t)&&Object.defineProperty(t,"a",{value:8})}})),_s=Nr,Ms=a,Ns=$,Fs=k,Ds=Is,Gs=Object.isFrozen;_s({target:"Object",stat:!0,forced:Ms((function(){Gs(1)}))||Ds},{isFrozen:function(t){return!Ns(t)||(!(!Ds||"ArrayBuffer"!=Fs(t))||!!Gs&&Gs(t))}});var $s=ht,Us=Tt,Bs=C,Ys=Vn,Ks=i.TypeError,Ws=function(t){return function(e,n,r,o){$s(n);var i=Us(e),u=Bs(i),a=Ys(i),c=t?a-1:0,f=t?-1:1;if(r<2)for(;;){if(c in u){o=u[c],c+=f;break}if(c+=f,t?c<0:a<=c)throw Ks("Reduce of empty array with no initial value")}for(;t?c>=0:a>c;c+=f)c in u&&(o=n(o,u[c],c,i));return o}},zs={left:Ws(!1),right:Ws(!0)},Hs="process"==k(i.process),Vs=zs.left,Xs=Q,qs=Hs;Nr({target:"Array",proto:!0,forced:!Kf("reduce")||!qs&&Xs>79&&Xs<83},{reduce:function(t){var e=arguments.length;return Vs(this,t,e,e>1?arguments[1]:void 0)}});var Js=Nr,Qs=C,Zs=F,tl=Kf,el=E([].join),nl=Qs!=Object,rl=tl("join",",");Js({target:"Array",proto:!0,forced:nl||!rl},{join:function(t){return el(Zs(this),void 0===t?",":t)}});var ol=Tt,il=uo;Nr({target:"Object",stat:!0,forced:a((function(){il(1)}))},{keys:function(t){return il(ol(t))}});var ul=E,al=Tt,cl=Math.floor,fl=ul("".charAt),sl=ul("".replace),ll=ul("".slice),dl=/\$([$&'`]|\d{1,2}|<[^>]*>)/g,pl=/\$([$&'`]|\d{1,2})/g,hl=Ur,vl=s,gl=E,yl=Ba,ml=a,wl=Ae,bl=D,xl=Gn,El=zn,Ol=ro,Sl=_,Ll=Za,kl=gt,jl=function(t,e,n,r,o,i){var u=n+t.length,a=r.length,c=pl;return void 0!==o&&(o=al(o),c=dl),sl(i,c,(function(i,c){var f;switch(fl(c,0)){case"$":return"$";case"&":return t;case"`":return ll(e,0,n);case"'":return ll(e,u);case"<":f=o[ll(c,1,-1)];break;default:var s=+c;if(0===s)return i;if(s>a){var l=cl(s/10);return 0===l?i:l<=a?void 0===r[l-1]?fl(c,1):r[l-1]+fl(c,1):i}f=r[s-1]}return void 0===f?"":f}))},Al=uc,Pl=qt("replace"),Rl=Math.max,Tl=Math.min,Cl=gl([].concat),Il=gl([].push),_l=gl("".indexOf),Ml=gl("".slice),Nl="$0"==="a".replace(/./,"$0"),Fl=!!/./[Pl]&&""===/./[Pl]("a","$0");yl("replace",(function(t,e,n){var r=Fl?"$":"$0";return[function(t,n){var r=Sl(this),o=null==t?void 0:kl(t,Pl);return o?vl(o,t,r,n):vl(e,Ol(r),t,n)},function(t,o){var i=wl(this),u=Ol(t);if("string"==typeof o&&-1===_l(o,r)&&-1===_l(o,"$<")){var a=n(e,i,u,o);if(a.done)return a.value}var c=bl(o);c||(o=Ol(o));var f=i.global;if(f){var s=i.unicode;i.lastIndex=0}for(var l=[];;){var d=Al(i,u);if(null===d)break;if(Il(l,d),!f)break;""===Ol(d[0])&&(i.lastIndex=Ll(u,El(i.lastIndex),s))}for(var p,h="",v=0,g=0;g<l.length;g++){for(var y=Ol((d=l[g])[0]),m=Rl(Tl(xl(d.index),u.length),0),w=[],b=1;b<d.length;b++)Il(w,void 0===(p=d[b])?p:String(p));var x=d.groups;if(c){var E=Cl([y],w,m,u);void 0!==x&&Il(E,x);var O=Ol(hl(o,void 0,E))}else O=jl(y,u,m,w,x,o);m>=v&&(h+=Ml(u,v,m)+O,v=m+y.length)}return h+Ml(u,v)}]}),!!ml((function(){var t=/./;return t.exec=function(){var t=[];return t.groups={a:"7"},t},"7"!=="".replace(t,"$<a>")}))||!Nl||Fl);var Dl=oi,Gl=st,$l=i.TypeError,Ul=Ae,Bl=function(t){if(Dl(t))return t;throw $l(Gl(t)+" is not a constructor")},Yl=qt("species"),Kl=function(t,e){var n,r=Ul(t).constructor;return void 0===r||null==(n=Ul(r)[Yl])?e:Bl(n)},Wl=Ur,zl=s,Hl=E,Vl=Ba,Xl=Pc,ql=Ae,Jl=_,Ql=Kl,Zl=Za,td=zn,ed=ro,nd=gt,rd=jo,od=uc,id=Ia,ud=a,ad=oa.UNSUPPORTED_Y,cd=4294967295,fd=Math.min,sd=[].push,ld=Hl(/./.exec),dd=Hl(sd),pd=Hl("".slice),hd=!ud((function(){var t=/(?:)/,e=t.exec;t.exec=function(){return e.apply(this,arguments)};var n="ab".split(t);return 2!==n.length||"a"!==n[0]||"b"!==n[1]}));Vl("split",(function(t,e,n){var r;return r="c"=="abbc".split(/(b)*/)[1]||4!="test".split(/(?:)/,-1).length||2!="ab".split(/(?:ab)*/).length||4!=".".split(/(.?)(.?)/).length||".".split(/()()/).length>1||"".split(/.?/).length?function(t,n){var r=ed(Jl(this)),o=void 0===n?cd:n>>>0;if(0===o)return[];if(void 0===t)return[r];if(!Xl(t))return zl(e,r,t,o);for(var i,u,a,c=[],f=(t.ignoreCase?"i":"")+(t.multiline?"m":"")+(t.unicode?"u":"")+(t.sticky?"y":""),s=0,l=new RegExp(t.source,f+"g");(i=zl(id,l,r))&&!((u=l.lastIndex)>s&&(dd(c,pd(r,s,i.index)),i.length>1&&i.index<r.length&&Wl(sd,c,rd(i,1)),a=i[0].length,s=u,c.length>=o));)l.lastIndex===i.index&&l.lastIndex++;return s===r.length?!a&&ld(l,"")||dd(c,""):dd(c,pd(r,s)),c.length>o?rd(c,0,o):c}:"0".split(void 0,0).length?function(t,n){return void 0===t&&0===n?[]:zl(e,this,t,n)}:e,[function(e,n){var o=Jl(this),i=null==e?void 0:nd(e,t);return i?zl(i,e,o,n):zl(r,ed(o),e,n)},function(t,o){var i=ql(this),u=ed(t),a=n(r,i,u,o,r!==e);if(a.done)return a.value;var c=Ql(i,RegExp),f=i.unicode,s=(i.ignoreCase?"i":"")+(i.multiline?"m":"")+(i.unicode?"u":"")+(ad?"g":"y"),l=new c(ad?"^(?:"+i.source+")":i,s),d=void 0===o?cd:o>>>0;if(0===d)return[];if(0===u.length)return null===od(l,u)?[u]:[];for(var p=0,h=0,v=[];h<u.length;){l.lastIndex=ad?0:h;var g,y=od(l,ad?pd(u,h):u);if(null===y||(g=fd(td(l.lastIndex+(ad?h:0)),u.length))===p)h=Zl(u,h,f);else{if(dd(v,pd(u,p,h)),v.length===d)return v;for(var m=1;m<=y.length-1;m++)if(dd(v,y[m]),v.length===d)return v;h=p=g}}return dd(v,pd(u,p)),v}]}),!hd,ad);var vd=Nr,gd=i,yd=Yr,md=oi,wd=$,bd=Yn,xd=Vn,Ed=F,Od=Hu,Sd=qt,Ld=jo,kd=ls("slice"),jd=Sd("species"),Ad=gd.Array,Pd=Math.max;vd({target:"Array",proto:!0,forced:!kd},{slice:function(t,e){var n,r,o,i=Ed(this),u=xd(i),a=bd(t,u),c=bd(void 0===e?u:e,u);if(yd(i)&&(n=i.constructor,(md(n)&&(n===Ad||yd(n.prototype))||wd(n)&&null===(n=n[jd]))&&(n=void 0),n===Ad||void 0===n))return Ld(i,a,c);for(r=new(void 0===n?Ad:n)(Pd(c-a,0)),o=0;a<c;a++,o++)a in i&&Od(r,o,i[a]);return r.length=o,r}});var Rd,Td,Cd,Id=!a((function(){function t(){}return t.prototype.constructor=null,Object.getPrototypeOf(new t)!==t.prototype})),_d=i,Md=_t,Nd=D,Fd=Tt,Dd=Id,Gd=Ze("IE_PROTO"),$d=_d.Object,Ud=$d.prototype,Bd=Dd?$d.getPrototypeOf:function(t){var e=Fd(t);if(Md(e,Gd))return e[Gd];var n=e.constructor;return Nd(n)&&e instanceof n?n.prototype:e instanceof $d?Ud:null},Yd=a,Kd=D,Wd=Bd,zd=De.exports,Hd=qt("iterator"),Vd=!1;[].keys&&("next"in(Cd=[].keys())?(Td=Wd(Wd(Cd)))!==Object.prototype&&(Rd=Td):Vd=!0);var Xd=null==Rd||Yd((function(){var t={};return Rd[Hd].call(t)!==t}));Xd&&(Rd={}),Kd(Rd[Hd])||zd(Rd,Hd,(function(){return this}));var qd={IteratorPrototype:Rd,BUGGY_SAFARI_ITERATORS:Vd},Jd={},Qd=qd.IteratorPrototype,Zd=Lo,tp=y,ep=Bo,np=Jd,rp=function(){return this},op=function(t,e,n){var r=e+" Iterator";return t.prototype=Zd(Qd,{next:tp(1,n)}),ep(t,r,!1),np[r]=rp,t},ip=Nr,up=i,ap=s,cp=E,fp=op,sp=_,lp=zn,dp=ro,pp=Ae,hp=W,vp=Pc,gp=ra,yp=gt,mp=De.exports,wp=a,bp=Kl,xp=Za,Ep=uc,Op=wn,Sp=qt("matchAll"),Lp="RegExp String",kp="RegExp String Iterator",jp=Op.set,Ap=Op.getterFor(kp),Pp=RegExp.prototype,Rp=up.TypeError,Tp=cp(gp),Cp=cp("".indexOf),Ip=cp("".matchAll),_p=!!Ip&&!wp((function(){Ip("a",/./)})),Mp=fp((function(t,e,n,r){jp(this,{type:kp,regexp:t,string:e,global:n,unicode:r,done:!1})}),Lp,(function(){var t=Ap(this);if(t.done)return{value:void 0,done:!0};var e=t.regexp,n=t.string,r=Ep(e,n);return null===r?{value:void 0,done:t.done=!0}:t.global?(""===dp(r[0])&&(e.lastIndex=xp(n,lp(e.lastIndex),t.unicode)),{value:r,done:!1}):(t.done=!0,{value:r,done:!1})})),Np=function(t){var e,n,r,o,i,u,a=pp(this),c=dp(t);return e=bp(a,RegExp),void 0===(n=a.flags)&&hp(Pp,a)&&!("flags"in Pp)&&(n=Tp(a)),r=void 0===n?"":dp(n),o=new e(e===RegExp?a.source:a,r),i=!!~Cp(r,"g"),u=!!~Cp(r,"u"),o.lastIndex=lp(a.lastIndex),new Mp(o,c,i,u)};ip({target:"String",proto:!0,forced:_p},{matchAll:function(t){var e,n,r,o=sp(this);if(null!=t){if(vp(t)&&(e=dp(sp("flags"in Pp?t.flags:Tp(t))),!~Cp(e,"g")))throw Rp("`.matchAll` does not allow non-global regexes");if(_p)return Ip(o,t);if(r=yp(t,Sp))return ap(r,t,o)}else if(_p)return Ip(o,t);return n=dp(o),new RegExp(t,"g")[Sp](n)}}),Sp in Pp||mp(Pp,Sp,Np);var Fp=s,Dp=Ae,Gp=gt,$p=Ae,Up=function(t,e,n){var r,o;Dp(t);try{if(!(r=Gp(t,"return"))){if("throw"===e)throw n;return n}r=Fp(r,t)}catch(t){o=!0,r=t}if("throw"===e)throw n;if(o)throw r;return Dp(r),n},Bp=Jd,Yp=qt("iterator"),Kp=Array.prototype,Wp=to,zp=gt,Hp=Jd,Vp=qt("iterator"),Xp=function(t){if(null!=t)return zp(t,Vp)||zp(t,"@@iterator")||Hp[Wp(t)]},qp=s,Jp=ht,Qp=Ae,Zp=st,th=Xp,eh=i.TypeError,nh=Wo,rh=s,oh=Tt,ih=function(t,e,n,r){try{return r?e($p(n)[0],n[1]):e(n)}catch(e){Up(t,"throw",e)}},uh=function(t){return void 0!==t&&(Bp.Array===t||Kp[Yp]===t)},ah=oi,ch=Vn,fh=Hu,sh=function(t,e){var n=arguments.length<2?th(t):e;if(Jp(n))return Qp(qp(n,t));throw eh(Zp(t)+" is not iterable")},lh=Xp,dh=i.Array,ph=qt("iterator"),hh=!1;try{var vh=0,gh={next:function(){return{done:!!vh++}},return:function(){hh=!0}};gh[ph]=function(){return this},Array.from(gh,(function(){throw 2}))}catch(t){}var yh=function(t){var e=oh(t),n=ah(this),r=arguments.length,o=r>1?arguments[1]:void 0,i=void 0!==o;i&&(o=nh(o,r>2?arguments[2]:void 0));var u,a,c,f,s,l,d=lh(e),p=0;if(!d||this==dh&&uh(d))for(u=ch(e),a=n?new this(u):dh(u);u>p;p++)l=i?o(e[p],p):e[p],fh(a,p,l);else for(s=(f=sh(e,d)).next,a=n?new this:[];!(c=rh(s,f)).done;p++)l=i?ih(f,o,[c.value,p],!0):c.value,fh(a,p,l);return a.length=p,a},mh=function(t,e){if(!e&&!hh)return!1;var n=!1;try{var r={};r[ph]=function(){return{next:function(){return{done:n=!0}}}},t(r)}catch(t){}return n};Nr({target:"Array",stat:!0,forced:!mh((function(t){Array.from(t)}))},{from:yh});var wh=Nr,bh=s,xh=Ln,Eh=D,Oh=op,Sh=Bd,Lh=Ec,kh=Bo,jh=Fe,Ah=De.exports,Ph=Jd,Rh=xh.PROPER,Th=xh.CONFIGURABLE,Ch=qd.IteratorPrototype,Ih=qd.BUGGY_SAFARI_ITERATORS,_h=qt("iterator"),Mh="keys",Nh="values",Fh="entries",Dh=function(){return this},Gh=Ja.charAt,$h=ro,Uh=wn,Bh=function(t,e,n,r,o,i,u){Oh(n,e,r);var a,c,f,s=function(t){if(t===o&&v)return v;if(!Ih&&t in p)return p[t];switch(t){case Mh:case Nh:case Fh:return function(){return new n(this,t)}}return function(){return new n(this)}},l=e+" Iterator",d=!1,p=t.prototype,h=p[_h]||p["@@iterator"]||o&&p[o],v=!Ih&&h||s(o),g="Array"==e&&p.entries||h;if(g&&(a=Sh(g.call(new t)))!==Object.prototype&&a.next&&(Sh(a)!==Ch&&(Lh?Lh(a,Ch):Eh(a[_h])||Ah(a,_h,Dh)),kh(a,l,!0)),Rh&&o==Nh&&h&&h.name!==Nh&&(Th?jh(p,"name",Nh):(d=!0,v=function(){return bh(h,this)})),o)if(c={values:s(Nh),keys:i?v:s(Mh),entries:s(Fh)},u)for(f in c)(Ih||d||!(f in p))&&Ah(p,f,c[f]);else wh({target:e,proto:!0,forced:Ih||d},c);return p[_h]!==v&&Ah(p,_h,v,{name:o}),Ph[e]=v,c},Yh="String Iterator",Kh=Uh.set,Wh=Uh.getterFor(Yh);Bh(String,"String",(function(t){Kh(this,{type:Yh,string:$h(t),index:0})}),(function(){var t,e=Wh(this),n=e.string,r=e.index;return r>=n.length?{value:void 0,done:!0}:(t=Gh(n,r),e.index+=t.length,{value:t,done:!1})}));var zh="\t\n\v\f\r                 \u2028\u2029\ufeff",Hh=_,Vh=ro,Xh=E("".replace),qh="[\t\n\v\f\r                 \u2028\u2029\ufeff]",Jh=RegExp("^"+qh+qh+"*"),Qh=RegExp(qh+qh+"*$"),Zh=function(t){return function(e){var n=Vh(Hh(e));return 1&t&&(n=Xh(n,Jh,"")),2&t&&(n=Xh(n,Qh,"")),n}},tv={start:Zh(1),end:Zh(2),trim:Zh(3)},ev=Ln.PROPER,nv=a,rv=zh,ov=tv.trim;Nr({target:"String",proto:!0,forced:function(t){return nv((function(){return!!rv[t]()||"​…᠎"!=="​…᠎"[t]()||ev&&rv[t].name!==t}))}("trim")},{trim:function(){return ov(this)}});var iv={exports:{}};!function(t,e){function n(t){if(t&&"object"==typeof t){var e=t.which||t.keyCode||t.charCode;e&&(t=e)}if("number"==typeof t)return u[t];var n,i=String(t);return(n=r[i.toLowerCase()])?n:(n=o[i.toLowerCase()])||(1===i.length?i.charCodeAt(0):void 0)}n.isEventKey=function(t,e){if(t&&"object"==typeof t){var n=t.which||t.keyCode||t.charCode;if(null==n)return!1;if("string"==typeof e){var i;if(i=r[e.toLowerCase()])return i===n;if(i=o[e.toLowerCase()])return i===n}else if("number"==typeof e)return e===n;return!1}};var r=(e=t.exports=n).code=e.codes={backspace:8,tab:9,enter:13,shift:16,ctrl:17,alt:18,"pause/break":19,"caps lock":20,esc:27,space:32,"page up":33,"page down":34,end:35,home:36,left:37,up:38,right:39,down:40,insert:45,delete:46,command:91,"left command":91,"right command":93,"numpad *":106,"numpad +":107,"numpad -":109,"numpad .":110,"numpad /":111,"num lock":144,"scroll lock":145,"my computer":182,"my calculator":183,";":186,"=":187,",":188,"-":189,".":190,"/":191,"`":192,"[":219,"\\":220,"]":221,"'":222},o=e.aliases={windows:91,"⇧":16,"⌥":18,"⌃":17,"⌘":91,ctl:17,control:17,option:18,pause:19,break:19,caps:20,return:13,escape:27,spc:32,spacebar:32,pgup:33,pgdn:34,ins:45,del:46,cmd:91};
2
+ /*!
3
+ * Programatically add the following
4
+ */
5
+ for(i=97;i<123;i++)r[String.fromCharCode(i)]=i-32;for(var i=48;i<58;i++)r[i-48]=i;for(i=1;i<13;i++)r["f"+i]=i+111;for(i=0;i<10;i++)r["numpad "+i]=i+96;var u=e.names=e.title={};for(i in r)u[r[i]]=i;for(var a in o)r[a]=o[a]}(iv,iv.exports);var uv=iv.exports,av={exports:{}};
6
+ /**
7
+ * what-input - A global utility for tracking the current input method (mouse, keyboard or touch).
8
+ * @version v5.2.10
9
+ * @link https://github.com/ten1seven/what-input
10
+ * @license MIT
11
+ */
12
+ !function(t,e){var n;n=function(){return function(t){var e={};function n(r){if(e[r])return e[r].exports;var o=e[r]={exports:{},id:r,loaded:!1};return t[r].call(o.exports,o,o.exports,n),o.loaded=!0,o.exports}return n.m=t,n.c=e,n.p="",n(0)}([function(t,e){t.exports=function(){if("undefined"==typeof document||"undefined"==typeof window)return{ask:function(){return"initial"},element:function(){return null},ignoreKeys:function(){},specificKeys:function(){},registerOnChange:function(){},unRegisterOnChange:function(){}};var t=document.documentElement,e=null,n="initial",r=n,o=Date.now(),i="false",u=["button","input","select","textarea"],a=[],c=[16,17,18,91,93],f=[],s={keydown:"keyboard",keyup:"keyboard",mousedown:"mouse",mousemove:"mouse",MSPointerDown:"pointer",MSPointerMove:"pointer",pointerdown:"pointer",pointermove:"pointer",touchstart:"touch",touchend:"touch"},l=!1,d={x:null,y:null},p={2:"touch",3:"touch",4:"mouse"},h=!1;try{var v=Object.defineProperty({},"passive",{get:function(){h=!0}});window.addEventListener("test",null,v)}catch(t){}var g=function(){var t=!!h&&{passive:!0};document.addEventListener("DOMContentLoaded",y),window.PointerEvent?(window.addEventListener("pointerdown",m),window.addEventListener("pointermove",b)):window.MSPointerEvent?(window.addEventListener("MSPointerDown",m),window.addEventListener("MSPointerMove",b)):(window.addEventListener("mousedown",m),window.addEventListener("mousemove",b),"ontouchstart"in window&&(window.addEventListener("touchstart",m,t),window.addEventListener("touchend",m))),window.addEventListener(k(),b,t),window.addEventListener("keydown",m),window.addEventListener("keyup",m),window.addEventListener("focusin",x),window.addEventListener("focusout",E)},y=function(){if(i=!(t.getAttribute("data-whatpersist")||"false"===document.body.getAttribute("data-whatpersist")))try{window.sessionStorage.getItem("what-input")&&(n=window.sessionStorage.getItem("what-input")),window.sessionStorage.getItem("what-intent")&&(r=window.sessionStorage.getItem("what-intent"))}catch(t){}w("input"),w("intent")},m=function(t){var e=t.which,o=s[t.type];"pointer"===o&&(o=S(t));var i=!f.length&&-1===c.indexOf(e),a=f.length&&-1!==f.indexOf(e),l="keyboard"===o&&e&&(i||a)||"mouse"===o||"touch"===o;if(L(o)&&(l=!1),l&&n!==o&&(O("input",n=o),w("input")),l&&r!==o){var d=document.activeElement;d&&d.nodeName&&(-1===u.indexOf(d.nodeName.toLowerCase())||"button"===d.nodeName.toLowerCase()&&!P(d,"form"))&&(O("intent",r=o),w("intent"))}},w=function(e){t.setAttribute("data-what"+e,"input"===e?n:r),j(e)},b=function(t){var e=s[t.type];"pointer"===e&&(e=S(t)),A(t),(!l&&!L(e)||l&&"wheel"===t.type||"mousewheel"===t.type||"DOMMouseScroll"===t.type)&&r!==e&&(O("intent",r=e),w("intent"))},x=function(n){n.target.nodeName?(e=n.target.nodeName.toLowerCase(),t.setAttribute("data-whatelement",e),n.target.classList&&n.target.classList.length&&t.setAttribute("data-whatclasses",n.target.classList.toString().replace(" ",","))):E()},E=function(){e=null,t.removeAttribute("data-whatelement"),t.removeAttribute("data-whatclasses")},O=function(t,e){if(i)try{window.sessionStorage.setItem("what-"+t,e)}catch(t){}},S=function(t){return"number"==typeof t.pointerType?p[t.pointerType]:"pen"===t.pointerType?"touch":t.pointerType},L=function(t){var e=Date.now(),r="mouse"===t&&"touch"===n&&e-o<200;return o=e,r},k=function(){return"onwheel"in document.createElement("div")?"wheel":void 0!==document.onmousewheel?"mousewheel":"DOMMouseScroll"},j=function(t){for(var e=0,o=a.length;e<o;e++)a[e].type===t&&a[e].fn.call(void 0,"input"===t?n:r)},A=function(t){d.x!==t.screenX||d.y!==t.screenY?(l=!1,d.x=t.screenX,d.y=t.screenY):l=!0},P=function(t,e){var n=window.Element.prototype;if(n.matches||(n.matches=n.msMatchesSelector||n.webkitMatchesSelector),n.closest)return t.closest(e);do{if(t.matches(e))return t;t=t.parentElement||t.parentNode}while(null!==t&&1===t.nodeType);return null};return"addEventListener"in window&&Array.prototype.indexOf&&(s[k()]="mouse",g()),{ask:function(t){return"intent"===t?r:n},element:function(){return e},ignoreKeys:function(t){c=t},specificKeys:function(t){f=t},registerOnChange:function(t,e){a.push({fn:t,type:e||"input"})},unRegisterOnChange:function(t){var e=function(t){for(var e=0,n=a.length;e<n;e++)if(a[e].fn===t)return e}(t);(e||0===e)&&a.splice(e,1)},clearStorage:function(){window.sessionStorage.clear()}}}()}])},t.exports=n()}(av);var cv=av.exports;!function(t){var e=function(t){var e,n=Object.prototype,r=n.hasOwnProperty,o="function"==typeof Symbol?Symbol:{},i=o.iterator||"@@iterator",u=o.asyncIterator||"@@asyncIterator",a=o.toStringTag||"@@toStringTag";function c(t,e,n){return Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}),t[e]}try{c({},"")}catch(t){c=function(t,e,n){return t[e]=n}}function f(t,e,n,r){var o=e&&e.prototype instanceof g?e:g,i=Object.create(o.prototype),u=new A(r||[]);return i._invoke=function(t,e,n){var r=l;return function(o,i){if(r===p)throw new Error("Generator is already running");if(r===h){if("throw"===o)throw i;return R()}for(n.method=o,n.arg=i;;){var u=n.delegate;if(u){var a=L(u,n);if(a){if(a===v)continue;return a}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if(r===l)throw r=h,n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);r=p;var c=s(t,e,n);if("normal"===c.type){if(r=n.done?h:d,c.arg===v)continue;return{value:c.arg,done:n.done}}"throw"===c.type&&(r=h,n.method="throw",n.arg=c.arg)}}}(t,n,u),i}function s(t,e,n){try{return{type:"normal",arg:t.call(e,n)}}catch(t){return{type:"throw",arg:t}}}t.wrap=f;var l="suspendedStart",d="suspendedYield",p="executing",h="completed",v={};function g(){}function y(){}function m(){}var w={};c(w,i,(function(){return this}));var b=Object.getPrototypeOf,x=b&&b(b(P([])));x&&x!==n&&r.call(x,i)&&(w=x);var E=m.prototype=g.prototype=Object.create(w);function O(t){["next","throw","return"].forEach((function(e){c(t,e,(function(t){return this._invoke(e,t)}))}))}function S(t,e){function n(o,i,u,a){var c=s(t[o],t,i);if("throw"!==c.type){var f=c.arg,l=f.value;return l&&"object"==typeof l&&r.call(l,"__await")?e.resolve(l.__await).then((function(t){n("next",t,u,a)}),(function(t){n("throw",t,u,a)})):e.resolve(l).then((function(t){f.value=t,u(f)}),(function(t){return n("throw",t,u,a)}))}a(c.arg)}var o;this._invoke=function(t,r){function i(){return new e((function(e,o){n(t,r,e,o)}))}return o=o?o.then(i,i):i()}}function L(t,n){var r=t.iterator[n.method];if(r===e){if(n.delegate=null,"throw"===n.method){if(t.iterator.return&&(n.method="return",n.arg=e,L(t,n),"throw"===n.method))return v;n.method="throw",n.arg=new TypeError("The iterator does not provide a 'throw' method")}return v}var o=s(r,t.iterator,n.arg);if("throw"===o.type)return n.method="throw",n.arg=o.arg,n.delegate=null,v;var i=o.arg;return i?i.done?(n[t.resultName]=i.value,n.next=t.nextLoc,"return"!==n.method&&(n.method="next",n.arg=e),n.delegate=null,v):i:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,v)}function k(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function j(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function A(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(k,this),this.reset(!0)}function P(t){if(t){var n=t[i];if(n)return n.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var o=-1,u=function n(){for(;++o<t.length;)if(r.call(t,o))return n.value=t[o],n.done=!1,n;return n.value=e,n.done=!0,n};return u.next=u}}return{next:R}}function R(){return{value:e,done:!0}}return y.prototype=m,c(E,"constructor",m),c(m,"constructor",y),y.displayName=c(m,a,"GeneratorFunction"),t.isGeneratorFunction=function(t){var e="function"==typeof t&&t.constructor;return!!e&&(e===y||"GeneratorFunction"===(e.displayName||e.name))},t.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,m):(t.__proto__=m,c(t,a,"GeneratorFunction")),t.prototype=Object.create(E),t},t.awrap=function(t){return{__await:t}},O(S.prototype),c(S.prototype,u,(function(){return this})),t.AsyncIterator=S,t.async=function(e,n,r,o,i){void 0===i&&(i=Promise);var u=new S(f(e,n,r,o),i);return t.isGeneratorFunction(n)?u:u.next().then((function(t){return t.done?t.value:u.next()}))},O(E),c(E,a,"Generator"),c(E,i,(function(){return this})),c(E,"toString",(function(){return"[object Generator]"})),t.keys=function(t){var e=[];for(var n in t)e.push(n);return e.reverse(),function n(){for(;e.length;){var r=e.pop();if(r in t)return n.value=r,n.done=!1,n}return n.done=!0,n}},t.values=P,A.prototype={constructor:A,reset:function(t){if(this.prev=0,this.next=0,this.sent=this._sent=e,this.done=!1,this.delegate=null,this.method="next",this.arg=e,this.tryEntries.forEach(j),!t)for(var n in this)"t"===n.charAt(0)&&r.call(this,n)&&!isNaN(+n.slice(1))&&(this[n]=e)},stop:function(){this.done=!0;var t=this.tryEntries[0].completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(t){if(this.done)throw t;var n=this;function o(r,o){return a.type="throw",a.arg=t,n.next=r,o&&(n.method="next",n.arg=e),!!o}for(var i=this.tryEntries.length-1;i>=0;--i){var u=this.tryEntries[i],a=u.completion;if("root"===u.tryLoc)return o("end");if(u.tryLoc<=this.prev){var c=r.call(u,"catchLoc"),f=r.call(u,"finallyLoc");if(c&&f){if(this.prev<u.catchLoc)return o(u.catchLoc,!0);if(this.prev<u.finallyLoc)return o(u.finallyLoc)}else if(c){if(this.prev<u.catchLoc)return o(u.catchLoc,!0)}else{if(!f)throw new Error("try statement without catch or finally");if(this.prev<u.finallyLoc)return o(u.finallyLoc)}}}},abrupt:function(t,e){for(var n=this.tryEntries.length-1;n>=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev<o.finallyLoc){var i=o;break}}i&&("break"===t||"continue"===t)&&i.tryLoc<=e&&e<=i.finallyLoc&&(i=null);var u=i?i.completion:{};return u.type=t,u.arg=e,i?(this.method="next",this.next=i.finallyLoc,v):this.complete(u)},complete:function(t,e){if("throw"===t.type)throw t.arg;return"break"===t.type||"continue"===t.type?this.next=t.arg:"return"===t.type?(this.rval=this.arg=t.arg,this.method="return",this.next="end"):"normal"===t.type&&e&&(this.next=e),v},finish:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var n=this.tryEntries[e];if(n.finallyLoc===t)return this.complete(n.completion,n.afterLoc),j(n),v}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var n=this.tryEntries[e];if(n.tryLoc===t){var r=n.completion;if("throw"===r.type){var o=r.arg;j(n)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:P(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),v}},t}(t.exports);try{regeneratorRuntime=e}catch(t){"object"==typeof globalThis?globalThis.regeneratorRuntime=e:Function("r","regeneratorRuntime = r")(e)}}({exports:{}});var fv=Nr,sv=i,lv=a,dv=Yr,pv=$,hv=Tt,vv=Vn,gv=Hu,yv=di,mv=ls,wv=Q,bv=qt("isConcatSpreadable"),xv=9007199254740991,Ev="Maximum allowed index exceeded",Ov=sv.TypeError,Sv=wv>=51||!lv((function(){var t=[];return t[bv]=!1,t.concat()[0]!==t})),Lv=mv("concat"),kv=function(t){if(!pv(t))return!1;var e=t[bv];return void 0!==e?!!e:dv(t)};fv({target:"Array",proto:!0,forced:!Sv||!Lv},{concat:function(t){var e,n,r,o,i,u=hv(this),a=yv(u,0),c=0;for(e=-1,r=arguments.length;e<r;e++)if(kv(i=-1===e?u:arguments[e])){if(c+(o=vv(i))>xv)throw Ov(Ev);for(n=0;n<o;n++,c++)n in i&&gv(a,c,i[n])}else{if(c>=xv)throw Ov(Ev);gv(a,c++,i)}return a.length=c,a}});var jv,Av,Pv,Rv,Tv,Cv,Iv,_v,Mv="Mac|iPad|iPhone|iPod",Nv="Linux";"undefined"!=typeof navigator&&/edge/i.test(null===(jv=navigator)||void 0===jv?void 0:jv.userAgent),"undefined"!=typeof navigator&&new RegExp("iOS|iPhone|iPad|iPod","i").test(null===(Av=navigator)||void 0===Av?void 0:Av.platform),"undefined"!=typeof navigator&&/safari/i.test(null===(Pv=navigator)||void 0===Pv?void 0:Pv.userAgent)&&/chrome/i.test(null===(Rv=navigator)||void 0===Rv?void 0:Rv.userAgent),"undefined"!=typeof navigator&&new RegExp("Win","i").test(null===(Tv=navigator)||void 0===Tv?void 0:Tv.platform),"undefined"!=typeof navigator&&new RegExp("Android","i").test(null===(Cv=navigator)||void 0===Cv?void 0:Cv.userAgent),"undefined"!=typeof navigator&&new RegExp(Mv,"i").test(null===(Iv=navigator)||void 0===Iv?void 0:Iv.platform),"undefined"!=typeof navigator&&new RegExp(Nv,"i").test(null===(_v=navigator)||void 0===_v?void 0:_v.platform);function Fv(){var t=function t(){if("undefined"!=typeof document&&"undefined"!=typeof window&&"undefined"!=typeof navigator){try{"undefined"!=typeof window&&window.IS_TEST?document.documentElement.setAttribute("data-os","other"):null!==navigator.platform.match(new RegExp(Mv))?document.documentElement.setAttribute("data-os","mac"):null!==navigator.platform.match(new RegExp("Win"))?document.documentElement.setAttribute("data-os","win"):null!==navigator.platform.match(new RegExp(Nv))&&document.documentElement.setAttribute("data-os","linux")}catch(t){}document.removeEventListener("DOMContentLoaded",t)}};"undefined"!=typeof document&&"loading"===document.readyState?document.addEventListener("DOMContentLoaded",t):t()}!function(){if("undefined"!=typeof window){var t=function(){function t(){Qu(this,t)}return ta(t,[{key:"version",get:function(){return"9.36.0"}}]),t}();window.Eufemia=new t}}(),cv.specificKeys([9]),Fv(),function(){function t(e,n){var r=this,o=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};Qu(this,t),ea(this,"checkOutsideClick",(function(t){var e=t.event,n=t.ignoreElements,r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;try{var o=e.target;if("HTML"===(null==o?void 0:o.tagName)&&(e.pageX>document.documentElement.clientWidth-40||e.pageY>document.documentElement.clientHeight-40))return;if(Dv(o))return;for(var i,u=0,a=n.length;u<a;++u)if(i=o,n[u])do{if(i===n[u])return;i=i&&i.parentNode}while(i);"function"==typeof r&&r()}catch(t){}})),this.handleClickOutside||"undefined"==typeof document||"undefined"==typeof window||(Array.isArray(e)||(e=[e]),this.handleClickOutside=function(t){r.checkOutsideClick({event:t,ignoreElements:e},(function(){return"function"==typeof n&&n({event:t})}))},document.addEventListener("mousedown",this.handleClickOutside),this.keydownCallback=function(t){"esc"===uv(t)&&(window.removeEventListener("keydown",r.keydownCallback),"function"==typeof n&&n({event:t}))},window.addEventListener("keydown",this.keydownCallback),o.includedKeys&&(this.keyupCallback=function(t){var e=uv(t);o.includedKeys.includes(e)&&"function"==typeof r.handleClickOutside&&r.handleClickOutside(t,(function(){r.keyupCallback&&window.removeEventListener("keyup",r.keyupCallback)}))},window.addEventListener("keyup",this.keyupCallback)))}ta(t,[{key:"remove",value:function(){this.handleClickOutside&&"undefined"!=typeof document&&(document.removeEventListener("mousedown",this.handleClickOutside),this.handleClickOutside=null),this.keydownCallback&&"undefined"!=typeof window&&(window.removeEventListener("keydown",this.keydownCallback),this.keydownCallback=null),this.keyupCallback&&"undefined"!=typeof window&&(window.removeEventListener("keyup",this.keyupCallback),this.keyupCallback=null)}}])}();var Dv=function(t){return t&&(t.scrollHeight>t.offsetHeight||t.scrollWidth>t.offsetWidth)&&Gv(t)},Gv=function(t){var e="undefined"!=typeof window?window.getComputedStyle(t):{};return/scroll|auto/i.test((e.overflow||"")+(e.overflowX||"")+(e.overflowY||""))};t.defineNavigator=Fv,t.isTouchDevice=function(){if("undefined"!=typeof document){var t=!1;try{t=document.documentElement.getAttribute("data-whatintent")}catch(t){}return"touch"===t}return!1},Object.defineProperty(t,"__esModule",{value:!0})}));