homebridge-config-ui-x 5.0.0-beta.5 → 5.0.0-beta.50
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/CHANGELOG.md +315 -21
- package/CONTRIBUTING.md +5 -4
- package/LICENSE +1 -1
- package/config.schema.json +34 -144
- package/dist/bin/fork.js +17 -7
- package/dist/bin/fork.js.map +1 -1
- package/dist/bin/hb-service.d.ts +2 -2
- package/dist/bin/hb-service.js +68 -57
- package/dist/bin/hb-service.js.map +1 -1
- package/dist/bin/platforms/win32.js +4 -2
- package/dist/bin/platforms/win32.js.map +1 -1
- package/dist/bin/standalone.js +18 -7
- package/dist/bin/standalone.js.map +1 -1
- package/dist/core/auth/auth.controller.d.ts +2 -2
- package/dist/core/auth/auth.controller.js.map +1 -1
- package/dist/core/auth/auth.module.js +1 -1
- package/dist/core/auth/auth.module.js.map +1 -1
- package/dist/core/auth/auth.service.js +10 -10
- package/dist/core/auth/auth.service.js.map +1 -1
- package/dist/core/auth/jwt.strategy.d.ts +3 -1
- package/dist/core/config/config.service.d.ts +4 -6
- package/dist/core/config/config.service.js +6 -9
- package/dist/core/config/config.service.js.map +1 -1
- package/dist/core/config/config.startup.js +2 -2
- package/dist/core/config/config.startup.js.map +1 -1
- package/dist/core/homebridge-ipc/homebridge-ipc.service.js +3 -3
- package/dist/core/homebridge-ipc/homebridge-ipc.service.js.map +1 -1
- package/dist/index.js +6 -67
- package/dist/index.js.map +1 -1
- package/dist/main.js +1 -1
- package/dist/main.js.map +1 -1
- package/dist/modules/accessories/accessories.controller.js +5 -5
- package/dist/modules/accessories/accessories.controller.js.map +1 -1
- package/dist/modules/accessories/accessories.service.js +7 -6
- package/dist/modules/accessories/accessories.service.js.map +1 -1
- package/dist/modules/backup/backup.controller.js +7 -7
- package/dist/modules/backup/backup.controller.js.map +1 -1
- package/dist/modules/backup/backup.service.js +18 -78
- package/dist/modules/backup/backup.service.js.map +1 -1
- package/dist/modules/child-bridges/child-bridges.service.js +0 -7
- package/dist/modules/child-bridges/child-bridges.service.js.map +1 -1
- package/dist/modules/config-editor/config-editor.controller.d.ts +1 -1
- package/dist/modules/config-editor/config-editor.controller.js +8 -8
- package/dist/modules/config-editor/config-editor.controller.js.map +1 -1
- package/dist/modules/config-editor/config-editor.service.d.ts +1 -1
- package/dist/modules/config-editor/config-editor.service.js +6 -6
- package/dist/modules/config-editor/config-editor.service.js.map +1 -1
- package/dist/modules/custom-plugins/plugins-settings-ui/plugins-settings-ui.service.js +11 -9
- package/dist/modules/custom-plugins/plugins-settings-ui/plugins-settings-ui.service.js.map +1 -1
- package/dist/modules/log/log.gateway.d.ts +2 -1
- package/dist/modules/log/log.gateway.js.map +1 -1
- package/dist/modules/log/log.service.js +3 -3
- package/dist/modules/log/log.service.js.map +1 -1
- package/dist/modules/platform-tools/docker/docker.controller.js +3 -3
- package/dist/modules/platform-tools/docker/docker.controller.js.map +1 -1
- package/dist/modules/platform-tools/docker/docker.service.js +1 -1
- package/dist/modules/platform-tools/docker/docker.service.js.map +1 -1
- package/dist/modules/platform-tools/hb-service/hb-service.controller.js +3 -3
- package/dist/modules/platform-tools/hb-service/hb-service.controller.js.map +1 -1
- package/dist/modules/platform-tools/hb-service/hb-service.service.js +6 -6
- package/dist/modules/platform-tools/hb-service/hb-service.service.js.map +1 -1
- package/dist/modules/platform-tools/linux/linux.controller.js +2 -2
- package/dist/modules/platform-tools/linux/linux.controller.js.map +1 -1
- package/dist/modules/platform-tools/linux/linux.service.js +2 -2
- package/dist/modules/platform-tools/linux/linux.service.js.map +1 -1
- package/dist/modules/platform-tools/terminal/terminal.gateway.d.ts +2 -1
- package/dist/modules/platform-tools/terminal/terminal.gateway.js.map +1 -1
- package/dist/modules/platform-tools/terminal/terminal.service.js +2 -2
- package/dist/modules/platform-tools/terminal/terminal.service.js.map +1 -1
- package/dist/modules/plugins/plugins.controller.js +4 -4
- package/dist/modules/plugins/plugins.controller.js.map +1 -1
- package/dist/modules/plugins/plugins.service.d.ts +3 -1
- package/dist/modules/plugins/plugins.service.js +127 -83
- package/dist/modules/plugins/plugins.service.js.map +1 -1
- package/dist/modules/server/server.controller.d.ts +22 -2
- package/dist/modules/server/server.controller.js +86 -18
- package/dist/modules/server/server.controller.js.map +1 -1
- package/dist/modules/server/server.service.d.ts +24 -6
- package/dist/modules/server/server.service.js +165 -66
- package/dist/modules/server/server.service.js.map +1 -1
- package/dist/modules/status/status.controller.d.ts +0 -1
- package/dist/modules/status/status.controller.js +3 -4
- package/dist/modules/status/status.controller.js.map +1 -1
- package/dist/modules/status/status.gateway.d.ts +1 -1
- package/dist/modules/status/status.service.d.ts +1 -1
- package/dist/modules/status/status.service.js +17 -41
- package/dist/modules/status/status.service.js.map +1 -1
- package/dist/modules/users/users.controller.js +7 -7
- package/dist/modules/users/users.controller.js.map +1 -1
- package/dist/self-check.js +6 -6
- package/dist/self-check.js.map +1 -1
- package/package.json +42 -40
- package/public/3rdpartylicenses.txt +87 -61
- package/public/assets/hap-icons/airpurifier.svg +49 -16
- package/public/assets/hap-icons/airquality.svg +24 -13
- package/public/assets/hap-icons/contactsensor-closed.svg +35 -2
- package/public/assets/hap-icons/contactsensor-open.svg +80 -2
- package/public/assets/hap-icons/door-closed.svg +32 -2
- package/public/assets/hap-icons/door-open.svg +48 -2
- package/public/assets/hap-icons/fan-off.svg +24 -13
- package/public/assets/hap-icons/fan-on.svg +24 -13
- package/public/assets/hap-icons/garagedoor.svg +24 -13
- package/public/assets/hap-icons/humidity.svg +24 -13
- package/public/assets/hap-icons/irrigation-system.svg +47 -18
- package/public/assets/hap-icons/leaksensor.svg +52 -2
- package/public/assets/hap-icons/light.svg +47 -28
- package/public/assets/hap-icons/lightbulb.svg +24 -13
- package/public/assets/hap-icons/lock-locked.svg +24 -13
- package/public/assets/hap-icons/lock-unlocked.svg +24 -13
- package/public/assets/hap-icons/motionsensor.svg +100 -2
- package/public/assets/hap-icons/occupancysensor.svg +97 -2
- package/public/assets/hap-icons/outlet.svg +24 -13
- package/public/assets/hap-icons/securitysystem-active.svg +102 -2
- package/public/assets/hap-icons/securitysystem-off.svg +68 -2
- package/public/assets/hap-icons/smokesensor.svg +42 -9
- package/public/assets/hap-icons/speaker.svg +29 -13
- package/public/assets/hap-icons/statelessprogrammableswitch.svg +51 -2
- package/public/assets/hap-icons/switch.svg +24 -13
- package/public/assets/hap-icons/television.svg +15 -4
- package/public/assets/hap-icons/temperature.svg +24 -13
- package/public/assets/hap-icons/unknown.svg +24 -13
- package/public/assets/hap-icons/valve-generic.svg +27 -16
- package/public/assets/hap-icons/valve-irrigation.svg +37 -21
- package/public/assets/hap-icons/valve-showerhead.svg +52 -0
- package/public/assets/hap-icons/valve-waterfaucet.svg +21 -0
- package/public/assets/hap-icons/window-closed.svg +85 -2
- package/public/assets/hap-icons/window-open.svg +136 -2
- package/public/assets/hap-icons/windowcovering-closed.svg +45 -49
- package/public/assets/hap-icons/windowcovering-open.svg +40 -44
- package/public/assets/homebridge-color-round.svg +36 -1
- package/public/assets/homebridge-logo.svg +11 -1
- package/public/assets/mask-icon.svg +5 -1
- package/public/chunk-276OSEZQ.js +7 -0
- package/public/chunk-2WHZVNIL.js +1 -0
- package/public/chunk-4ZL63DAS.js +1 -0
- package/public/chunk-56RER65C.js +1 -0
- package/public/chunk-5MSINJOP.js +1 -0
- package/public/chunk-5ONHAKZR.js +1 -0
- package/public/{chunk-NW6AFAD7.js → chunk-5V64KILF.js} +1 -1
- package/public/chunk-6GXK647W.js +1 -0
- package/public/chunk-6MPSM5D6.js +1 -0
- package/public/chunk-6RK4ITUO.js +1 -0
- package/public/chunk-75KPAY3Q.js +1 -0
- package/public/{chunk-5S4H26Y6.js → chunk-AENRYLWF.js} +1 -1
- package/public/chunk-AJYKZAH3.js +1 -0
- package/public/chunk-AU2REXCU.js +5 -0
- package/public/chunk-AZJVWGE5.js +1 -0
- package/public/chunk-BRK3WB3H.js +1 -0
- package/public/chunk-BULYN7ZO.js +1 -0
- package/public/chunk-DSIAGWN2.js +20 -0
- package/public/chunk-F2FNCF5K.js +1 -0
- package/public/chunk-G6ROSMJ3.js +1 -0
- package/public/chunk-GHKR2EZU.js +14 -0
- package/public/chunk-GUS2LV3D.js +1 -0
- package/public/chunk-H444L7G2.js +1 -0
- package/public/chunk-HG2QB6Y6.js +1 -0
- package/public/chunk-HNFETLSU.js +23 -0
- package/public/chunk-HPUZDM2V.js +32 -0
- package/public/{chunk-6TCHCTXZ.js → chunk-HRPNY45F.js} +1 -1
- package/public/chunk-HYGERTMR.js +2 -0
- package/public/{chunk-D6RX5SPU.js → chunk-I7SLBIH6.js} +2 -2
- package/public/chunk-IEZLZCA6.js +1 -0
- package/public/chunk-IH2OXT2T.js +1 -0
- package/public/{chunk-WHJSVGC7.js → chunk-J77TCJAI.js} +1 -1
- package/public/chunk-JDXSF4VD.js +1 -0
- package/public/chunk-JJFCKMHJ.js +6 -0
- package/public/chunk-K7IKFAZN.js +1 -0
- package/public/chunk-KAFQN55U.js +1 -0
- package/public/chunk-KAPE7X2V.js +1 -0
- package/public/chunk-KQATISYN.js +1 -0
- package/public/{chunk-JZZQRLNW.js → chunk-LMNTZZKY.js} +1 -1
- package/public/chunk-LZIWKREV.js +1 -0
- package/public/chunk-M2ZTMXK6.js +1 -0
- package/public/chunk-MDBWULHP.js +1 -0
- package/public/chunk-MF3MK5NW.js +1 -0
- package/public/{chunk-QE7DO6J3.js → chunk-MFNVTZHA.js} +2 -2
- package/public/chunk-MNEDGYZ3.js +1 -0
- package/public/chunk-MQWX6PSO.js +1 -0
- package/public/chunk-NAMO762C.js +1 -0
- package/public/chunk-NF5SPN5X.js +1 -0
- package/public/chunk-NINDI35B.js +1 -0
- package/public/chunk-NYUJXXQS.js +1 -0
- package/public/chunk-O7H2IFCY.js +1 -0
- package/public/chunk-OKZF7N6P.js +1 -0
- package/public/chunk-OO3HYTGF.js +1 -0
- package/public/chunk-OPWJCA7K.js +1 -0
- package/public/chunk-OQDRBWFU.js +1 -0
- package/public/{chunk-BKUGARB4.js → chunk-OR3OTNZX.js} +1 -1
- package/public/chunk-OU5BBEVP.js +1 -0
- package/public/{chunk-SJHJKPSQ.js → chunk-OW57Y4JF.js} +1 -1
- package/public/chunk-OXRKLTFO.js +1 -0
- package/public/{chunk-CCUID66K.js → chunk-P2G4VWRA.js} +1 -1
- package/public/chunk-PEIQT4KX.js +1 -0
- package/public/chunk-PEPPIHCS.js +1 -0
- package/public/{chunk-WNWWUCCZ.js → chunk-PW5JY4GF.js} +1 -1
- package/public/chunk-QKWW5YEX.js +1 -0
- package/public/chunk-QPC23WSW.js +1 -0
- package/public/chunk-QR2MNMQY.js +1 -0
- package/public/{chunk-EA5J2VEJ.js → chunk-R6O55HPN.js} +1 -1
- package/public/chunk-RDUPRTJ7.js +1 -0
- package/public/chunk-RIAD7LOL.js +1 -0
- package/public/{chunk-7EUQWCP5.js → chunk-SKJSWOOW.js} +1 -1
- package/public/chunk-TL73FN75.js +1 -0
- package/public/chunk-TOHNQM4M.js +1 -0
- package/public/chunk-UQTGLBZN.js +1 -0
- package/public/chunk-V5KD6NYE.js +1 -0
- package/public/chunk-VOUY3YCM.js +1 -0
- package/public/chunk-XA36QX5R.js +1 -0
- package/public/chunk-XDJ55I6S.js +5 -0
- package/public/{chunk-GETFKFI6.js → chunk-XU7GHNFE.js} +1 -1
- package/public/chunk-XV7KL7UL.js +1 -0
- package/public/chunk-YIPVTR4W.js +1 -0
- package/public/chunk-YPVHF7R5.js +1 -0
- package/public/chunk-ZD564EAP.js +8 -0
- package/public/chunk-ZLL4TMOU.js +1 -0
- package/public/index.html +2 -2
- package/public/main-OCFNRSAL.js +1 -0
- package/public/media/fa-brands-400-Q3XCMWHQ.woff2 +0 -0
- package/public/media/{fa-brands-400-KOKGDU7E.ttf → fa-brands-400-R2XQZCET.ttf} +0 -0
- package/public/media/fa-regular-400-QSNYFYRT.woff2 +0 -0
- package/public/media/{fa-regular-400-IPMAEX5Y.ttf → fa-regular-400-XUOPSR7E.ttf} +0 -0
- package/public/media/fa-solid-900-5ZUYHGA7.woff2 +0 -0
- package/public/media/{fa-solid-900-SRFFQLRM.ttf → fa-solid-900-PJNKLK6W.ttf} +0 -0
- package/public/styles-CJ5TSDXW.css +1 -0
- package/scripts/upgrade-install-plugin.sh +1 -1
- package/public/chunk-3IX3CLER.js +0 -1
- package/public/chunk-3YKYXC2T.js +0 -1
- package/public/chunk-4DLA2ICF.js +0 -1
- package/public/chunk-4WTXJHZA.js +0 -5
- package/public/chunk-5HCG4CER.js +0 -1
- package/public/chunk-5XU3C2P2.js +0 -1
- package/public/chunk-6I6PSM5Y.js +0 -1
- package/public/chunk-72QXF2GF.js +0 -1
- package/public/chunk-74VT5JYS.js +0 -1
- package/public/chunk-7DTAFWJ7.js +0 -1
- package/public/chunk-7JR63ERC.js +0 -14
- package/public/chunk-7K5J3AOO.js +0 -1
- package/public/chunk-A7YWFX6I.js +0 -1
- package/public/chunk-BIDQZJXT.js +0 -1
- package/public/chunk-BNVAYTYZ.js +0 -8
- package/public/chunk-BPMSJ2VF.js +0 -1
- package/public/chunk-BVDMEFSJ.js +0 -1
- package/public/chunk-BVK7NCGF.js +0 -1
- package/public/chunk-CNJMINEX.js +0 -1
- package/public/chunk-DNLDZVVB.js +0 -1
- package/public/chunk-F3EORWUJ.js +0 -1
- package/public/chunk-G4CGNDAD.js +0 -1
- package/public/chunk-G4TRVUCL.js +0 -1
- package/public/chunk-HSJSWZHD.js +0 -1
- package/public/chunk-I544XQGS.js +0 -1
- package/public/chunk-J26JMISE.js +0 -20
- package/public/chunk-J3XWQZ5N.js +0 -1
- package/public/chunk-JBM7KQHD.js +0 -1
- package/public/chunk-KJHDP3ZC.js +0 -1
- package/public/chunk-KPVA6CSL.js +0 -1
- package/public/chunk-KQJ7ONUG.js +0 -1
- package/public/chunk-LBTLF3MZ.js +0 -6
- package/public/chunk-LQ6YDB4A.js +0 -1
- package/public/chunk-M3N7PSSC.js +0 -1
- package/public/chunk-MP3LZHQU.js +0 -1
- package/public/chunk-MSXXP7RE.js +0 -1
- package/public/chunk-NZNNTHFQ.js +0 -1
- package/public/chunk-ORPWYWCL.js +0 -5
- package/public/chunk-OZ6IXX3E.js +0 -1
- package/public/chunk-QHPDGSZ6.js +0 -1
- package/public/chunk-QOKEWT7C.js +0 -1
- package/public/chunk-RD4QIA6H.js +0 -1
- package/public/chunk-RN75UMGP.js +0 -1
- package/public/chunk-S3XAJEVU.js +0 -1
- package/public/chunk-SIQ2FHQL.js +0 -1
- package/public/chunk-TCSXGQNF.js +0 -1
- package/public/chunk-TWQP6XJT.js +0 -1
- package/public/chunk-TXOB7R5K.js +0 -7
- package/public/chunk-UC2NMLJ6.js +0 -1
- package/public/chunk-UCB7UE24.js +0 -1
- package/public/chunk-UFDZ4SFB.js +0 -1
- package/public/chunk-UG5DK2RQ.js +0 -2
- package/public/chunk-W4MTVPF3.js +0 -23
- package/public/chunk-WHJOLAED.js +0 -1
- package/public/chunk-WJNSNBGE.js +0 -1
- package/public/chunk-WRDG5DTE.js +0 -1
- package/public/chunk-XDGJOFX2.js +0 -1
- package/public/chunk-XEVIOBJR.js +0 -1
- package/public/chunk-XNCOF5TV.js +0 -1
- package/public/chunk-XXJO3JY3.js +0 -1
- package/public/chunk-YJ7ICNKX.js +0 -1
- package/public/chunk-Z7AUXG5E.js +0 -1
- package/public/chunk-ZBNZILWV.js +0 -1
- package/public/chunk-ZHMC7KSZ.js +0 -1
- package/public/chunk-ZJ4LBIOD.js +0 -32
- package/public/chunk-ZT23DWNL.js +0 -1
- package/public/chunk-ZYZBMA5E.js +0 -1
- package/public/main-TQOXBTSD.js +0 -1
- package/public/media/01-RQ3S2L53.png +0 -0
- package/public/media/02-VNCG2I2A.png +0 -0
- package/public/media/03-HI42L4ZG.png +0 -0
- package/public/media/04-FJLL55LZ.png +0 -0
- package/public/media/05-V3EO6SPT.png +0 -0
- package/public/media/06-EOJZCQZN.png +0 -0
- package/public/media/07-KMKB5PBD.png +0 -0
- package/public/media/08-UQJRF6B2.png +0 -0
- package/public/media/09-2DJQFRHH.png +0 -0
- package/public/media/arrow_left-CQT7FZM7.svg +0 -4
- package/public/media/arrow_right-SBUDRR2G.svg +0 -4
- package/public/media/fa-brands-400-6PJPV6JM.woff2 +0 -0
- package/public/media/fa-regular-400-OHB6J4OK.woff2 +0 -0
- package/public/media/fa-solid-900-ABTK6BNK.woff2 +0 -0
- package/public/scripts-6GVLYD7F.js +0 -62
- package/public/styles-EG5MFQEM.css +0 -1
- /package/public/assets/{bootstrap-4 → bootstrap-5}/cssframework/assets.json +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
import{
|
|
1
|
+
import{Ub as t,Vb as r,Wb as i,tb as a,wa as o}from"./chunk-276OSEZQ.js";var m=(()=>{class e{constructor(){}static \u0275fac=function(n){return new(n||e)};static \u0275cmp=a({type:e,selectors:[["app-spinner"]],decls:7,vars:0,consts:[[1,"app-spinner-container"],[1,"animate_loader"],["xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink","width","200px","height","200px","viewBox","0 0 100 100","preserveAspectRatio","xMidYMid",2,"margin","auto","display","block"],["cx","50","cy","50","r","32","stroke-width","8","stroke-dasharray","50.26548245743669 50.26548245743669","fill","none","stroke-linecap","round","transform","rotate(327.259 50 50)",1,"spinner_outer"],["attributeName","transform","type","rotate","dur","2s","repeatCount","indefinite","keyTimes","0;1","values","0 50 50;360 50 50"],["cx","50","cy","50","r","23","stroke-width","8","stroke","#f8b26a","stroke-dasharray","36.12831551628262 36.12831551628262","stroke-dashoffset","36.12831551628262","fill","none","stroke-linecap","round","transform","rotate(-327.259 50 50)",1,"spinner_inner"],["attributeName","transform","type","rotate","dur","2s","repeatCount","indefinite","keyTimes","0;1","values","0 50 50;-360 50 50"]],template:function(n,p){n&1&&(t(0,"div",0)(1,"div",1),o(),t(2,"svg",2)(3,"circle",3),i(4,"animateTransform",4),r(),t(5,"circle",5),i(6,"animateTransform",6),r()()()())},styles:[".app-spinner-container[_ngcontent-%COMP%]{position:absolute;top:0;bottom:0;left:0;right:0;display:flex;align-items:center;justify-content:center;z-index:1000}.animate_loader[_ngcontent-%COMP%] svg[_ngcontent-%COMP%]{position:absolute;top:0;right:0;bottom:0;left:0;margin:auto;width:200px;overflow:visible}"]})}return e})();export{m as a};
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import{$ as Ce,$a as Je,Ba as ce,Bb as qe,Cb as X,Da as O,Db as G,Ea as de,Eb as fe,H as _e,Hc as Ye,Ic as Ke,Ja as Ue,Ka as le,L as Le,La as Fe,Ma as I,Oa as ue,Oc as J,Pa as Be,Pc as He,Qc as Qe,Rc as R,S as oe,Ta as k,Ua as N,Va as _,Wa as ze,Xa as Ve,Ya as $e,Za as Xe,_a as Ge,_c as W,a as $,ab as We,b as Se,bb as P,da as g,ea as D,ga as m,ha as ie,hb as x,id as et,ja as v,jd as tt,k as Ie,kb as Ze,la as u,ld as pe,ma as w,na as ae,nd as Z,pa as ke,q as Ne,qa as xe,r as se,ra as je,ub as he,x as C}from"./chunk-276OSEZQ.js";var U=class{},Y=class{},S=class r{headers;normalizedNames=new Map;lazyInit;lazyUpdate=null;constructor(t){t?typeof t=="string"?this.lazyInit=()=>{this.headers=new Map,t.split(`
|
|
2
|
+
`).forEach(e=>{let n=e.indexOf(":");if(n>0){let s=e.slice(0,n),o=e.slice(n+1).trim();this.addHeaderEntry(s,o)}})}:typeof Headers<"u"&&t instanceof Headers?(this.headers=new Map,t.forEach((e,n)=>{this.addHeaderEntry(n,e)})):this.lazyInit=()=>{this.headers=new Map,Object.entries(t).forEach(([e,n])=>{this.setHeaderEntries(e,n)})}:this.headers=new Map}has(t){return this.init(),this.headers.has(t.toLowerCase())}get(t){this.init();let e=this.headers.get(t.toLowerCase());return e&&e.length>0?e[0]:null}keys(){return this.init(),Array.from(this.normalizedNames.values())}getAll(t){return this.init(),this.headers.get(t.toLowerCase())||null}append(t,e){return this.clone({name:t,value:e,op:"a"})}set(t,e){return this.clone({name:t,value:e,op:"s"})}delete(t,e){return this.clone({name:t,value:e,op:"d"})}maybeSetNormalizedName(t,e){this.normalizedNames.has(e)||this.normalizedNames.set(e,t)}init(){this.lazyInit&&(this.lazyInit instanceof r?this.copyFrom(this.lazyInit):this.lazyInit(),this.lazyInit=null,this.lazyUpdate&&(this.lazyUpdate.forEach(t=>this.applyUpdate(t)),this.lazyUpdate=null))}copyFrom(t){t.init(),Array.from(t.headers.keys()).forEach(e=>{this.headers.set(e,t.headers.get(e)),this.normalizedNames.set(e,t.normalizedNames.get(e))})}clone(t){let e=new r;return e.lazyInit=this.lazyInit&&this.lazyInit instanceof r?this.lazyInit:this,e.lazyUpdate=(this.lazyUpdate||[]).concat([t]),e}applyUpdate(t){let e=t.name.toLowerCase();switch(t.op){case"a":case"s":let n=t.value;if(typeof n=="string"&&(n=[n]),n.length===0)return;this.maybeSetNormalizedName(t.name,e);let s=(t.op==="a"?this.headers.get(e):void 0)||[];s.push(...n),this.headers.set(e,s);break;case"d":let o=t.value;if(!o)this.headers.delete(e),this.normalizedNames.delete(e);else{let i=this.headers.get(e);if(!i)return;i=i.filter(c=>o.indexOf(c)===-1),i.length===0?(this.headers.delete(e),this.normalizedNames.delete(e)):this.headers.set(e,i)}break}}addHeaderEntry(t,e){let n=t.toLowerCase();this.maybeSetNormalizedName(t,n),this.headers.has(n)?this.headers.get(n).push(e):this.headers.set(n,[e])}setHeaderEntries(t,e){let n=(Array.isArray(e)?e:[e]).map(o=>o.toString()),s=t.toLowerCase();this.headers.set(s,n),this.maybeSetNormalizedName(t,s)}forEach(t){this.init(),Array.from(this.normalizedNames.keys()).forEach(e=>t(this.normalizedNames.get(e),this.headers.get(e)))}};var ye=class{encodeKey(t){return nt(t)}encodeValue(t){return nt(t)}decodeKey(t){return decodeURIComponent(t)}decodeValue(t){return decodeURIComponent(t)}};function Ct(r,t){let e=new Map;return r.length>0&&r.replace(/^\?/,"").split("&").forEach(s=>{let o=s.indexOf("="),[i,c]=o==-1?[t.decodeKey(s),""]:[t.decodeKey(s.slice(0,o)),t.decodeValue(s.slice(o+1))],a=e.get(i)||[];a.push(c),e.set(i,a)}),e}var kt=/%(\d[a-f0-9])/gi,xt={40:"@","3A":":",24:"$","2C":",","3B":";","3D":"=","3F":"?","2F":"/"};function nt(r){return encodeURIComponent(r).replace(kt,(t,e)=>{var n;return(n=xt[e])!=null?n:t})}function q(r){return`${r}`}var A=class r{map;encoder;updates=null;cloneFrom=null;constructor(t={}){if(this.encoder=t.encoder||new ye,t.fromString){if(t.fromObject)throw new g(2805,!1);this.map=Ct(t.fromString,this.encoder)}else t.fromObject?(this.map=new Map,Object.keys(t.fromObject).forEach(e=>{let n=t.fromObject[e],s=Array.isArray(n)?n.map(q):[q(n)];this.map.set(e,s)})):this.map=null}has(t){return this.init(),this.map.has(t)}get(t){this.init();let e=this.map.get(t);return e?e[0]:null}getAll(t){return this.init(),this.map.get(t)||null}keys(){return this.init(),Array.from(this.map.keys())}append(t,e){return this.clone({param:t,value:e,op:"a"})}appendAll(t){let e=[];return Object.keys(t).forEach(n=>{let s=t[n];Array.isArray(s)?s.forEach(o=>{e.push({param:n,value:o,op:"a"})}):e.push({param:n,value:s,op:"a"})}),this.clone(e)}set(t,e){return this.clone({param:t,value:e,op:"s"})}delete(t,e){return this.clone({param:t,value:e,op:"d"})}toString(){return this.init(),this.keys().map(t=>{let e=this.encoder.encodeKey(t);return this.map.get(t).map(n=>e+"="+this.encoder.encodeValue(n)).join("&")}).filter(t=>t!=="").join("&")}clone(t){let e=new r({encoder:this.encoder});return e.cloneFrom=this.cloneFrom||this,e.updates=(this.updates||[]).concat(t),e}init(){this.map===null&&(this.map=new Map),this.cloneFrom!==null&&(this.cloneFrom.init(),this.cloneFrom.keys().forEach(t=>this.map.set(t,this.cloneFrom.map.get(t))),this.updates.forEach(t=>{switch(t.op){case"a":case"s":let e=(t.op==="a"?this.map.get(t.param):void 0)||[];e.push(q(t.value)),this.map.set(t.param,e);break;case"d":if(t.value!==void 0){let n=this.map.get(t.param)||[],s=n.indexOf(q(t.value));s!==-1&&n.splice(s,1),n.length>0?this.map.set(t.param,n):this.map.delete(t.param)}else{this.map.delete(t.param);break}}}),this.cloneFrom=this.updates=null)}};var ge=class{map=new Map;set(t,e){return this.map.set(t,e),this}get(t){return this.map.has(t)||this.map.set(t,t.defaultValue()),this.map.get(t)}delete(t){return this.map.delete(t),this}has(t){return this.map.has(t)}keys(){return this.map.keys()}};function jt(r){switch(r){case"DELETE":case"GET":case"HEAD":case"OPTIONS":case"JSONP":return!1;default:return!0}}function rt(r){return typeof ArrayBuffer<"u"&&r instanceof ArrayBuffer}function st(r){return typeof Blob<"u"&&r instanceof Blob}function ot(r){return typeof FormData<"u"&&r instanceof FormData}function Ut(r){return typeof URLSearchParams<"u"&&r instanceof URLSearchParams}var it="Content-Type",at="Accept",ht="X-Request-URL",ft="text/plain",pt="application/json",Ft=`${pt}, ${ft}, */*`,j=class r{url;body=null;headers;context;reportProgress=!1;withCredentials=!1;responseType="json";method;params;urlWithParams;transferCache;constructor(t,e,n,s){var i,c;this.url=e,this.method=t.toUpperCase();let o;if(jt(this.method)||s?(this.body=n!==void 0?n:null,o=s):o=n,o&&(this.reportProgress=!!o.reportProgress,this.withCredentials=!!o.withCredentials,o.responseType&&(this.responseType=o.responseType),o.headers&&(this.headers=o.headers),o.context&&(this.context=o.context),o.params&&(this.params=o.params),this.transferCache=o.transferCache),(i=this.headers)!=null||(this.headers=new S),(c=this.context)!=null||(this.context=new ge),!this.params)this.params=new A,this.urlWithParams=e;else{let a=this.params.toString();if(a.length===0)this.urlWithParams=e;else{let l=e.indexOf("?"),h=l===-1?"?":l<e.length-1?"&":"";this.urlWithParams=e+h+a}}}serializeBody(){return this.body===null?null:typeof this.body=="string"||rt(this.body)||st(this.body)||ot(this.body)||Ut(this.body)?this.body:this.body instanceof A?this.body.toString():typeof this.body=="object"||typeof this.body=="boolean"||Array.isArray(this.body)?JSON.stringify(this.body):this.body.toString()}detectContentTypeHeader(){return this.body===null||ot(this.body)?null:st(this.body)?this.body.type||null:rt(this.body)?null:typeof this.body=="string"?ft:this.body instanceof A?"application/x-www-form-urlencoded;charset=UTF-8":typeof this.body=="object"||typeof this.body=="number"||typeof this.body=="boolean"?pt:null}clone(t={}){var E,M,b,d;let e=t.method||this.method,n=t.url||this.url,s=t.responseType||this.responseType,o=(E=t.transferCache)!=null?E:this.transferCache,i=t.body!==void 0?t.body:this.body,c=(M=t.withCredentials)!=null?M:this.withCredentials,a=(b=t.reportProgress)!=null?b:this.reportProgress,l=t.headers||this.headers,h=t.params||this.params,p=(d=t.context)!=null?d:this.context;return t.setHeaders!==void 0&&(l=Object.keys(t.setHeaders).reduce((f,T)=>f.set(T,t.setHeaders[T]),l)),t.setParams&&(h=Object.keys(t.setParams).reduce((f,T)=>f.set(T,t.setParams[T]),h)),new r(e,n,i,{params:h,headers:l,context:p,reportProgress:a,responseType:s,withCredentials:c,transferCache:o})}},L=function(r){return r[r.Sent=0]="Sent",r[r.UploadProgress=1]="UploadProgress",r[r.ResponseHeader=2]="ResponseHeader",r[r.DownloadProgress=3]="DownloadProgress",r[r.Response=4]="Response",r[r.User=5]="User",r}(L||{}),F=class{headers;status;statusText;url;ok;type;constructor(t,e=200,n="OK"){this.headers=t.headers||new S,this.status=t.status!==void 0?t.status:e,this.statusText=t.statusText||n,this.url=t.url||null,this.ok=this.status>=200&&this.status<300}},ve=class r extends F{constructor(t={}){super(t)}type=L.ResponseHeader;clone(t={}){return new r({headers:t.headers||this.headers,status:t.status!==void 0?t.status:this.status,statusText:t.statusText||this.statusText,url:t.url||this.url||void 0})}},K=class r extends F{body;constructor(t={}){super(t),this.body=t.body!==void 0?t.body:null}type=L.Response;clone(t={}){return new r({body:t.body!==void 0?t.body:this.body,headers:t.headers||this.headers,status:t.status!==void 0?t.status:this.status,statusText:t.statusText||this.statusText,url:t.url||this.url||void 0})}},H=class extends F{name="HttpErrorResponse";message;error;ok=!1;constructor(t){super(t,0,"Unknown Error"),this.status>=200&&this.status<300?this.message=`Http failure during parsing for ${t.url||"(unknown url)"}`:this.message=`Http failure response for ${t.url||"(unknown url)"}: ${t.status} ${t.statusText}`,this.error=t.error||null}},Bt=200,zt=204;function me(r,t){return{body:t,headers:r.headers,context:r.context,observe:r.observe,params:r.params,reportProgress:r.reportProgress,responseType:r.responseType,withCredentials:r.withCredentials,transferCache:r.transferCache}}var Vt=(()=>{class r{handler;constructor(e){this.handler=e}request(e,n,s={}){let o;if(e instanceof j)o=e;else{let a;s.headers instanceof S?a=s.headers:a=new S(s.headers);let l;s.params&&(s.params instanceof A?l=s.params:l=new A({fromObject:s.params})),o=new j(e,n,s.body!==void 0?s.body:null,{headers:a,context:s.context,params:l,reportProgress:s.reportProgress,responseType:s.responseType||"json",withCredentials:s.withCredentials,transferCache:s.transferCache})}let i=se(o).pipe(Le(a=>this.handler.handle(a)));if(e instanceof j||s.observe==="events")return i;let c=i.pipe(_e(a=>a instanceof K));switch(s.observe||"body"){case"body":switch(o.responseType){case"arraybuffer":return c.pipe(C(a=>{if(a.body!==null&&!(a.body instanceof ArrayBuffer))throw new g(2806,!1);return a.body}));case"blob":return c.pipe(C(a=>{if(a.body!==null&&!(a.body instanceof Blob))throw new g(2807,!1);return a.body}));case"text":return c.pipe(C(a=>{if(a.body!==null&&typeof a.body!="string")throw new g(2808,!1);return a.body}));case"json":default:return c.pipe(C(a=>a.body))}case"response":return c;default:throw new g(2809,!1)}}delete(e,n={}){return this.request("DELETE",e,n)}get(e,n={}){return this.request("GET",e,n)}head(e,n={}){return this.request("HEAD",e,n)}jsonp(e,n){return this.request("JSONP",e,{params:new A().append(n,"JSONP_CALLBACK"),observe:"body",responseType:"json"})}options(e,n={}){return this.request("OPTIONS",e,n)}patch(e,n,s={}){return this.request("PATCH",e,me(s,n))}post(e,n,s={}){return this.request("POST",e,me(s,n))}put(e,n,s={}){return this.request("PUT",e,me(s,n))}static \u0275fac=function(n){return new(n||r)(u(U))};static \u0275prov=m({token:r,factory:r.\u0275fac})}return r})();var $t=new v("");function mt(r,t){return t(r)}function Xt(r,t){return(e,n)=>t.intercept(e,{handle:s=>r(s,n)})}function Gt(r,t,e){return(n,s)=>je(e,()=>t(n,o=>r(o,s)))}var Jt=new v(""),Ee=new v(""),Wt=new v(""),yt=new v("",{providedIn:"root",factory:()=>!0});function Zt(){let r=null;return(t,e)=>{var o;r===null&&(r=((o=w(Jt,{optional:!0}))!=null?o:[]).reduceRight(Xt,mt));let n=w(ce);if(w(yt)){let i=n.add();return r(t,e).pipe(oe(()=>n.remove(i)))}else return r(t,e)}}var ct=(()=>{class r extends U{backend;injector;chain=null;pendingTasks=w(ce);contributeToStability=w(yt);constructor(e,n){super(),this.backend=e,this.injector=n}handle(e){if(this.chain===null){let n=Array.from(new Set([...this.injector.get(Ee),...this.injector.get(Wt,[])]));this.chain=n.reduceRight((s,o)=>Gt(s,o,this.injector),mt)}if(this.contributeToStability){let n=this.pendingTasks.add();return this.chain(e,s=>this.backend.handle(s)).pipe(oe(()=>this.pendingTasks.remove(n)))}else return this.chain(e,n=>this.backend.handle(n))}static \u0275fac=function(n){return new(n||r)(u(Y),u(xe))};static \u0275prov=m({token:r,factory:r.\u0275fac})}return r})();var qt=/^\)\]\}',?\n/,Yt=RegExp(`^${ht}:`,"m");function Kt(r){return"responseURL"in r&&r.responseURL?r.responseURL:Yt.test(r.getAllResponseHeaders())?r.getResponseHeader(ht):null}var dt=(()=>{class r{xhrFactory;constructor(e){this.xhrFactory=e}handle(e){if(e.method==="JSONP")throw new g(-2800,!1);let n=this.xhrFactory;return(n.\u0275loadImpl?Ne(n.\u0275loadImpl()):se(null)).pipe(Ce(()=>new Ie(o=>{let i=n.build();if(i.open(e.method,e.urlWithParams),e.withCredentials&&(i.withCredentials=!0),e.headers.forEach((d,f)=>i.setRequestHeader(d,f.join(","))),e.headers.has(at)||i.setRequestHeader(at,Ft),!e.headers.has(it)){let d=e.detectContentTypeHeader();d!==null&&i.setRequestHeader(it,d)}if(e.responseType){let d=e.responseType.toLowerCase();i.responseType=d!=="json"?d:"text"}let c=e.serializeBody(),a=null,l=()=>{if(a!==null)return a;let d=i.statusText||"OK",f=new S(i.getAllResponseHeaders()),T=Kt(i)||e.url;return a=new ve({headers:f,status:i.status,statusText:d,url:T}),a},h=()=>{let{headers:d,status:f,statusText:T,url:Pe}=l(),y=null;f!==zt&&(y=typeof i.response>"u"?i.responseText:i.response),f===0&&(f=y?Bt:0);let re=f>=200&&f<300;if(e.responseType==="json"&&typeof y=="string"){let St=y;y=y.replace(qt,"");try{y=y!==""?JSON.parse(y):null}catch(It){y=St,re&&(re=!1,y={error:It,text:y})}}re?(o.next(new K({body:y,headers:d,status:f,statusText:T,url:Pe||void 0})),o.complete()):o.error(new H({error:y,headers:d,status:f,statusText:T,url:Pe||void 0}))},p=d=>{let{url:f}=l(),T=new H({error:d,status:i.status||0,statusText:i.statusText||"Unknown Error",url:f||void 0});o.error(T)},E=!1,M=d=>{E||(o.next(l()),E=!0);let f={type:L.DownloadProgress,loaded:d.loaded};d.lengthComputable&&(f.total=d.total),e.responseType==="text"&&i.responseText&&(f.partialText=i.responseText),o.next(f)},b=d=>{let f={type:L.UploadProgress,loaded:d.loaded};d.lengthComputable&&(f.total=d.total),o.next(f)};return i.addEventListener("load",h),i.addEventListener("error",p),i.addEventListener("timeout",p),i.addEventListener("abort",p),e.reportProgress&&(i.addEventListener("progress",M),c!==null&&i.upload&&i.upload.addEventListener("progress",b)),i.send(c),o.next({type:L.Sent}),()=>{i.removeEventListener("error",p),i.removeEventListener("abort",p),i.removeEventListener("load",h),i.removeEventListener("timeout",p),e.reportProgress&&(i.removeEventListener("progress",M),c!==null&&i.upload&&i.upload.removeEventListener("progress",b)),i.readyState!==i.DONE&&i.abort()}})))}static \u0275fac=function(n){return new(n||r)(u(Z))};static \u0275prov=m({token:r,factory:r.\u0275fac})}return r})(),gt=new v(""),Ht="XSRF-TOKEN",Qt=new v("",{providedIn:"root",factory:()=>Ht}),en="X-XSRF-TOKEN",tn=new v("",{providedIn:"root",factory:()=>en}),Q=class{},nn=(()=>{class r{doc;platform;cookieName;lastCookieString="";lastToken=null;parseCount=0;constructor(e,n,s){this.doc=e,this.platform=n,this.cookieName=s}getToken(){if(this.platform==="server")return null;let e=this.doc.cookie||"";return e!==this.lastCookieString&&(this.parseCount++,this.lastToken=W(e,this.cookieName),this.lastCookieString=e),this.lastToken}static \u0275fac=function(n){return new(n||r)(u(R),u(I),u(Qt))};static \u0275prov=m({token:r,factory:r.\u0275fac})}return r})();function rn(r,t){let e=r.url.toLowerCase();if(!w(gt)||r.method==="GET"||r.method==="HEAD"||e.startsWith("http://")||e.startsWith("https://"))return t(r);let n=w(Q).getToken(),s=w(tn);return n!=null&&!r.headers.has(s)&&(r=r.clone({headers:r.headers.set(s,n)})),t(r)}var vt=function(r){return r[r.Interceptors=0]="Interceptors",r[r.LegacyInterceptors=1]="LegacyInterceptors",r[r.CustomXsrfConfiguration=2]="CustomXsrfConfiguration",r[r.NoXsrfProtection=3]="NoXsrfProtection",r[r.JsonpSupport=4]="JsonpSupport",r[r.RequestsMadeViaParent=5]="RequestsMadeViaParent",r[r.Fetch=6]="Fetch",r}(vt||{});function sn(r,t){return{\u0275kind:r,\u0275providers:t}}function Hn(...r){let t=[Vt,dt,ct,{provide:U,useExisting:ct},{provide:Y,useFactory:()=>{var e;return(e=w($t,{optional:!0}))!=null?e:w(dt)}},{provide:Ee,useValue:rn,multi:!0},{provide:gt,useValue:!0},{provide:Q,useClass:nn}];for(let e of r)t.push(...e.\u0275providers);return ae(t)}var lt=new v("");function Qn(){return sn(vt.LegacyInterceptors,[{provide:lt,useFactory:Zt},{provide:Ee,useExisting:lt,multi:!0}])}var we=class extends Qe{supportsDOMEvents=!0},Re=class r extends we{static makeCurrent(){He(new r)}onAndCancel(t,e,n,s){return t.addEventListener(e,n,s),()=>{t.removeEventListener(e,n,s)}}dispatchEvent(t,e){t.dispatchEvent(e)}remove(t){t.remove()}createElement(t,e){return e=e||this.getDefaultDocument(),e.createElement(t)}createHtmlDocument(){return document.implementation.createHTMLDocument("fakeTitle")}getDefaultDocument(){return document}isElementNode(t){return t.nodeType===Node.ELEMENT_NODE}isShadowRoot(t){return t instanceof DocumentFragment}getGlobalEventTarget(t,e){return e==="window"?window:e==="document"?t:e==="body"?t.body:null}getBaseHref(t){let e=on();return e==null?null:an(e)}resetBaseElement(){B=null}getUserAgent(){return window.navigator.userAgent}getCookie(t){return W(document.cookie,t)}},B=null;function on(){return B=B||document.querySelector("base"),B?B.getAttribute("href"):null}function an(r){return new URL(r,document.baseURI).pathname}var be=class{addToWindow(t){D.getAngularTestability=(n,s=!0)=>{let o=t.findTestabilityInTree(n,s);if(o==null)throw new g(5103,!1);return o},D.getAllAngularTestabilities=()=>t.getAllTestabilities(),D.getAllAngularRootElements=()=>t.getAllRootElements();let e=n=>{let s=D.getAllAngularTestabilities(),o=s.length,i=function(){o--,o==0&&n()};s.forEach(c=>{c.whenStable(i)})};D.frameworkStabilizers||(D.frameworkStabilizers=[]),D.frameworkStabilizers.push(e)}findTestabilityInTree(t,e,n){if(e==null)return null;let s=t.getTestability(e);return s!=null?s:n?J().isShadowRoot(e)?this.findTestabilityInTree(t,e.host,!0):this.findTestabilityInTree(t,e.parentElement,!0):null}},cn=(()=>{class r{build(){return new XMLHttpRequest}static \u0275fac=function(n){return new(n||r)};static \u0275prov=m({token:r,factory:r.\u0275fac})}return r})(),Me=new v(""),Mt=(()=>{class r{_zone;_plugins;_eventNameToPlugin=new Map;constructor(e,n){this._zone=n,e.forEach(s=>{s.manager=this}),this._plugins=e.slice().reverse()}addEventListener(e,n,s,o){return this._findPluginFor(n).addEventListener(e,n,s,o)}getZone(){return this._zone}_findPluginFor(e){let n=this._eventNameToPlugin.get(e);if(n)return n;if(n=this._plugins.find(o=>o.supports(e)),!n)throw new g(5101,!1);return this._eventNameToPlugin.set(e,n),n}static \u0275fac=function(n){return new(n||r)(u(Me),u(O))};static \u0275prov=m({token:r,factory:r.\u0275fac})}return r})(),te=class{_doc;constructor(t){this._doc=t}manager},ee="ng-app-id";function Et(r){for(let t of r)t.remove()}function Tt(r,t){let e=t.createElement("style");return e.textContent=r,e}function dn(r,t,e,n){var o;let s=(o=r.head)==null?void 0:o.querySelectorAll(`style[${ee}="${t}"],link[${ee}="${t}"]`);if(s)for(let i of s)i.removeAttribute(ee),i instanceof HTMLLinkElement?n.set(i.href.slice(i.href.lastIndexOf("/")+1),{usage:0,elements:[i]}):i.textContent&&e.set(i.textContent,{usage:0,elements:[i]})}function De(r,t){let e=t.createElement("link");return e.setAttribute("rel","stylesheet"),e.setAttribute("href",r),e}var Dt=(()=>{class r{doc;appId;nonce;inline=new Map;external=new Map;hosts=new Set;isServer;constructor(e,n,s,o={}){this.doc=e,this.appId=n,this.nonce=s,this.isServer=pe(o),dn(e,n,this.inline,this.external),this.hosts.add(e.head)}addStyles(e,n){for(let s of e)this.addUsage(s,this.inline,Tt);n==null||n.forEach(s=>this.addUsage(s,this.external,De))}removeStyles(e,n){for(let s of e)this.removeUsage(s,this.inline);n==null||n.forEach(s=>this.removeUsage(s,this.external))}addUsage(e,n,s){let o=n.get(e);o?o.usage++:n.set(e,{usage:1,elements:[...this.hosts].map(i=>this.addElement(i,s(e,this.doc)))})}removeUsage(e,n){let s=n.get(e);s&&(s.usage--,s.usage<=0&&(Et(s.elements),n.delete(e)))}ngOnDestroy(){for(let[,{elements:e}]of[...this.inline,...this.external])Et(e);this.hosts.clear()}addHost(e){this.hosts.add(e);for(let[n,{elements:s}]of this.inline)s.push(this.addElement(e,Tt(n,this.doc)));for(let[n,{elements:s}]of this.external)s.push(this.addElement(e,De(n,this.doc)))}removeHost(e){this.hosts.delete(e)}addElement(e,n){return this.nonce&&n.setAttribute("nonce",this.nonce),this.isServer&&n.setAttribute(ee,this.appId),e.appendChild(n)}static \u0275fac=function(n){return new(n||r)(u(R),u(le),u(ue,8),u(I))};static \u0275prov=m({token:r,factory:r.\u0275fac})}return r})(),Te={svg:"http://www.w3.org/2000/svg",xhtml:"http://www.w3.org/1999/xhtml",xlink:"http://www.w3.org/1999/xlink",xml:"http://www.w3.org/XML/1998/namespace",xmlns:"http://www.w3.org/2000/xmlns/",math:"http://www.w3.org/1998/Math/MathML"},Oe=/%COMP%/g;var At="%COMP%",ln=`_nghost-${At}`,un=`_ngcontent-${At}`,hn=!0,fn=new v("",{providedIn:"root",factory:()=>hn});function pn(r){return un.replace(Oe,r)}function mn(r){return ln.replace(Oe,r)}function Ot(r,t){return t.map(e=>e.replace(Oe,r))}var wt=(()=>{class r{eventManager;sharedStylesHost;appId;removeStylesOnCompDestroy;doc;platformId;ngZone;nonce;tracingService;rendererByCompId=new Map;defaultRenderer;platformIsServer;constructor(e,n,s,o,i,c,a,l=null,h=null){this.eventManager=e,this.sharedStylesHost=n,this.appId=s,this.removeStylesOnCompDestroy=o,this.doc=i,this.platformId=c,this.ngZone=a,this.nonce=l,this.tracingService=h,this.platformIsServer=pe(c),this.defaultRenderer=new z(e,i,a,this.platformIsServer,this.tracingService)}createRenderer(e,n){if(!e||!n)return this.defaultRenderer;this.platformIsServer&&n.encapsulation===k.ShadowDom&&(n=Se($({},n),{encapsulation:k.Emulated}));let s=this.getOrCreateRenderer(e,n);return s instanceof ne?s.applyToHost(e):s instanceof V&&s.applyStyles(),s}getOrCreateRenderer(e,n){let s=this.rendererByCompId,o=s.get(n.id);if(!o){let i=this.doc,c=this.ngZone,a=this.eventManager,l=this.sharedStylesHost,h=this.removeStylesOnCompDestroy,p=this.platformIsServer,E=this.tracingService;switch(n.encapsulation){case k.Emulated:o=new ne(a,l,n,this.appId,h,i,c,p,E);break;case k.ShadowDom:return new Ae(a,l,e,n,i,c,this.nonce,p,E);default:o=new V(a,l,n,h,i,c,p,E);break}s.set(n.id,o)}return o}ngOnDestroy(){this.rendererByCompId.clear()}componentReplaced(e){this.rendererByCompId.delete(e)}static \u0275fac=function(n){return new(n||r)(u(Mt),u(Dt),u(le),u(fn),u(R),u(I),u(O),u(ue),u(Be,8))};static \u0275prov=m({token:r,factory:r.\u0275fac})}return r})(),z=class{eventManager;doc;ngZone;platformIsServer;tracingService;data=Object.create(null);throwOnSyntheticProps=!0;constructor(t,e,n,s,o){this.eventManager=t,this.doc=e,this.ngZone=n,this.platformIsServer=s,this.tracingService=o}destroy(){}destroyNode=null;createElement(t,e){return e?this.doc.createElementNS(Te[e]||e,t):this.doc.createElement(t)}createComment(t){return this.doc.createComment(t)}createText(t){return this.doc.createTextNode(t)}appendChild(t,e){(Rt(t)?t.content:t).appendChild(e)}insertBefore(t,e,n){t&&(Rt(t)?t.content:t).insertBefore(e,n)}removeChild(t,e){e.remove()}selectRootElement(t,e){let n=typeof t=="string"?this.doc.querySelector(t):t;if(!n)throw new g(-5104,!1);return e||(n.textContent=""),n}parentNode(t){return t.parentNode}nextSibling(t){return t.nextSibling}setAttribute(t,e,n,s){if(s){e=s+":"+e;let o=Te[s];o?t.setAttributeNS(o,e,n):t.setAttribute(e,n)}else t.setAttribute(e,n)}removeAttribute(t,e,n){if(n){let s=Te[n];s?t.removeAttributeNS(s,e):t.removeAttribute(`${n}:${e}`)}else t.removeAttribute(e)}addClass(t,e){t.classList.add(e)}removeClass(t,e){t.classList.remove(e)}setStyle(t,e,n,s){s&(x.DashCase|x.Important)?t.style.setProperty(e,n,s&x.Important?"important":""):t.style[e]=n}removeStyle(t,e,n){n&x.DashCase?t.style.removeProperty(e):t.style[e]=""}setProperty(t,e,n){t!=null&&(t[e]=n)}setValue(t,e){t.nodeValue=e}listen(t,e,n,s){if(typeof t=="string"&&(t=J().getGlobalEventTarget(this.doc,t),!t))throw new Error(`Unsupported event target ${t} for event ${e}`);let o=this.decoratePreventDefault(n);return this.tracingService!==null&&this.tracingService.wrapEventListener&&(o=this.tracingService.wrapEventListener(t,e,o)),this.eventManager.addEventListener(t,e,o,s)}decoratePreventDefault(t){return e=>{if(e==="__ngUnwrap__")return t;(this.platformIsServer?this.ngZone.runGuarded(()=>t(e)):t(e))===!1&&e.preventDefault()}}};function Rt(r){return r.tagName==="TEMPLATE"&&r.content!==void 0}var Ae=class extends z{sharedStylesHost;hostEl;shadowRoot;constructor(t,e,n,s,o,i,c,a,l){var M;super(t,o,i,a,l),this.sharedStylesHost=e,this.hostEl=n,this.shadowRoot=n.attachShadow({mode:"open"}),this.sharedStylesHost.addHost(this.shadowRoot);let h=s.styles;h=Ot(s.id,h);for(let b of h){let d=document.createElement("style");c&&d.setAttribute("nonce",c),d.textContent=b,this.shadowRoot.appendChild(d)}let p=(M=s.getExternalStyles)==null?void 0:M.call(s);if(p)for(let b of p){let d=De(b,o);c&&d.setAttribute("nonce",c),this.shadowRoot.appendChild(d)}}nodeOrShadowRoot(t){return t===this.hostEl?this.shadowRoot:t}appendChild(t,e){return super.appendChild(this.nodeOrShadowRoot(t),e)}insertBefore(t,e,n){return super.insertBefore(this.nodeOrShadowRoot(t),e,n)}removeChild(t,e){return super.removeChild(null,e)}parentNode(t){return this.nodeOrShadowRoot(super.parentNode(this.nodeOrShadowRoot(t)))}destroy(){this.sharedStylesHost.removeHost(this.shadowRoot)}},V=class extends z{sharedStylesHost;removeStylesOnCompDestroy;styles;styleUrls;constructor(t,e,n,s,o,i,c,a,l){var E;super(t,o,i,c,a),this.sharedStylesHost=e,this.removeStylesOnCompDestroy=s;let h=n.styles;this.styles=l?Ot(l,h):h,this.styleUrls=(E=n.getExternalStyles)==null?void 0:E.call(n,l)}applyStyles(){this.sharedStylesHost.addStyles(this.styles,this.styleUrls)}destroy(){this.removeStylesOnCompDestroy&&this.sharedStylesHost.removeStyles(this.styles,this.styleUrls)}},ne=class extends V{contentAttr;hostAttr;constructor(t,e,n,s,o,i,c,a,l){let h=s+"-"+n.id;super(t,e,n,o,i,c,a,l,h),this.contentAttr=pn(h),this.hostAttr=mn(h)}applyToHost(t){this.applyStyles(),this.setAttribute(t,this.hostAttr,"")}createElement(t,e){let n=super.createElement(t,e);return super.setAttribute(n,this.contentAttr,""),n}},yn=(()=>{class r extends te{constructor(e){super(e)}supports(e){return!0}addEventListener(e,n,s,o){return e.addEventListener(n,s,o),()=>this.removeEventListener(e,n,s,o)}removeEventListener(e,n,s,o){return e.removeEventListener(n,s,o)}static \u0275fac=function(n){return new(n||r)(u(R))};static \u0275prov=m({token:r,factory:r.\u0275fac})}return r})(),bt=["alt","control","meta","shift"],gn={"\b":"Backspace"," ":"Tab","\x7F":"Delete","\x1B":"Escape",Del:"Delete",Esc:"Escape",Left:"ArrowLeft",Right:"ArrowRight",Up:"ArrowUp",Down:"ArrowDown",Menu:"ContextMenu",Scroll:"ScrollLock",Win:"OS"},vn={alt:r=>r.altKey,control:r=>r.ctrlKey,meta:r=>r.metaKey,shift:r=>r.shiftKey},En=(()=>{class r extends te{constructor(e){super(e)}supports(e){return r.parseEventName(e)!=null}addEventListener(e,n,s,o){let i=r.parseEventName(n),c=r.eventCallback(i.fullKey,s,this.manager.getZone());return this.manager.getZone().runOutsideAngular(()=>J().onAndCancel(e,i.domEventName,c,o))}static parseEventName(e){let n=e.toLowerCase().split("."),s=n.shift();if(n.length===0||!(s==="keydown"||s==="keyup"))return null;let o=r._normalizeKey(n.pop()),i="",c=n.indexOf("code");if(c>-1&&(n.splice(c,1),i="code."),bt.forEach(l=>{let h=n.indexOf(l);h>-1&&(n.splice(h,1),i+=l+".")}),i+=o,n.length!=0||o.length===0)return null;let a={};return a.domEventName=s,a.fullKey=i,a}static matchEventFullKeyCode(e,n){let s=gn[e.key]||e.key,o="";return n.indexOf("code.")>-1&&(s=e.code,o="code."),s==null||!s?!1:(s=s.toLowerCase(),s===" "?s="space":s==="."&&(s="dot"),bt.forEach(i=>{if(i!==s){let c=vn[i];c(e)&&(o+=i+".")}}),o+=s,o===n)}static eventCallback(e,n,s){return o=>{r.matchEventFullKeyCode(o,e)&&s.runGuarded(()=>n(o))}}static _normalizeKey(e){return e==="esc"?"escape":e}static \u0275fac=function(n){return new(n||r)(u(R))};static \u0275prov=m({token:r,factory:r.\u0275fac})}return r})();function Tr(r,t){return Ke($({rootComponent:r},Tn(t)))}function Tn(r){var t;return{appProviders:[...Pt,...(t=r==null?void 0:r.providers)!=null?t:[]],platformProviders:Mn}}function wn(){Re.makeCurrent()}function Rn(){return new de}function bn(){return Ue(document),document}var Mn=[{provide:I,useValue:tt},{provide:Fe,useValue:wn,multi:!0},{provide:R,useFactory:bn,deps:[]}];var Dn=[{provide:X,useClass:be,deps:[]},{provide:qe,useClass:G,deps:[O,fe,X]},{provide:G,useClass:G,deps:[O,fe,X]}],Pt=[{provide:ke,useValue:"root"},{provide:de,useFactory:Rn,deps:[]},{provide:Me,useClass:yn,multi:!0,deps:[R]},{provide:Me,useClass:En,multi:!0,deps:[R]},wt,Dt,Mt,{provide:Ze,useExisting:wt},{provide:Z,useClass:cn,deps:[]},[]],wr=(()=>{class r{constructor(){}static \u0275fac=function(n){return new(n||r)};static \u0275mod=he({type:r});static \u0275inj=ie({providers:[...Pt,...Dn],imports:[et,Ye]})}return r})();var Rr=(()=>{class r{_doc;constructor(e){this._doc=e}getTitle(){return this._doc.title}setTitle(e){this._doc.title=e||""}static \u0275fac=function(n){return new(n||r)(u(R))};static \u0275prov=m({token:r,factory:r.\u0275fac,providedIn:"root"})}return r})();var An=(()=>{class r{static \u0275fac=function(n){return new(n||r)};static \u0275prov=m({token:r,factory:function(n){let s=null;return n?s=new(n||r):s=u(On),s},providedIn:"root"})}return r})(),On=(()=>{class r extends An{_doc;constructor(e){super(),this._doc=e}sanitize(e,n){if(n==null)return null;switch(e){case P.NONE:return n;case P.HTML:return _(n,"HTML")?N(n):We(this._doc,String(n)).toString();case P.STYLE:return _(n,"Style")?N(n):n;case P.SCRIPT:if(_(n,"Script"))return N(n);throw new g(5200,!1);case P.URL:return _(n,"URL")?N(n):Je(String(n));case P.RESOURCE_URL:if(_(n,"ResourceURL"))return N(n);throw new g(5201,!1);default:throw new g(5202,!1)}}bypassSecurityTrustHtml(e){return ze(e)}bypassSecurityTrustStyle(e){return Ve(e)}bypassSecurityTrustScript(e){return $e(e)}bypassSecurityTrustUrl(e){return Xe(e)}bypassSecurityTrustResourceUrl(e){return Ge(e)}static \u0275fac=function(n){return new(n||r)(u(R))};static \u0275prov=m({token:r,factory:r.\u0275fac,providedIn:"root"})}return r})();export{Y as a,A as b,L as c,K as d,Vt as e,Jt as f,Hn as g,Qn as h,wt as i,Tr as j,wr as k,Rr as l,An as m};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import{a as
|
|
1
|
+
import{a as P}from"./chunk-SKJSWOOW.js";import{a as O}from"./chunk-LMNTZZKY.js";import{c as y,e as E,l as k,y as $}from"./chunk-LZIWKREV.js";import{b as D}from"./chunk-OU5BBEVP.js";import{b as L}from"./chunk-2WHZVNIL.js";import{h as I,k as H}from"./chunk-5ONHAKZR.js";import{a as T}from"./chunk-TOHNQM4M.js";import{Kb as f,Pb as d,Ub as m,Vb as l,Wb as w,_b as g,bc as _,cc as a,gb as s,h as S,ma as r,mc as v,rc as b,sc as M,tb as x,tc as V,ua as c,va as p,w as C,zb as h}from"./chunk-276OSEZQ.js";function z(i,u){i&1&&w(0,"i",6)}function A(i,u){i&1&&w(0,"i",7)}function F(i,u){if(i&1){let t=g();m(0,"ngx-monaco-editor",10),_("onInit",function(e){c(t);let o=a();return p(o.onEditorInit(e))})("keydown.control.s",function(e){c(t);let o=a();return e.preventDefault(),p(o.onSave())})("keydown.meta.s",function(e){c(t);let o=a();return e.preventDefault(),p(o.onSave())}),l()}if(i&2){let t=a();f("options",t.editorOptions)("model",t.monacoEditorModel)}}function W(i,u){if(i&1){let t=g();m(0,"textarea",11),V("ngModelChange",function(e){c(t);let o=a();return M(o.startupScript,e)||(o.startupScript=e),p(e)}),v(1," "),l()}if(i&2){let t=a();b("ngModel",t.startupScript)}}var tt=(()=>{class i{$api=r(H);$md=r(O);$route=r(D);$settings=r(L);$toastr=r(I);$translate=r(T);startupScript;saveInProgress;isMobile=!1;options={printMargin:!1};monacoEditor;editorOptions;monacoEditorModel;lastHeight;visualViewPortEventCallback;constructor(){this.isMobile=this.$md.detect.mobile()}ngOnInit(){this.editorOptions={language:"shell",theme:this.$settings.actualLightingMode==="dark"?"vs-dark":"vs-light",automaticLayout:!0},this.visualViewPortEventCallback=()=>this.visualViewPortChanged(),this.lastHeight=window.innerHeight,window.visualViewport&&!this.isMobile&&(window.visualViewport.addEventListener("resize",this.visualViewPortEventCallback,!0),this.$md.disableTouchMove()),this.$route.data.subscribe(t=>{this.startupScript=t.startupScript.script}),this.monacoEditorModel={value:"",language:"shell"}}onEditorInit(t){this.monacoEditor=t,this.monacoEditor.getModel().setValue(this.startupScript)}onSave(){return S(this,null,function*(){if(!this.saveInProgress){if(this.saveInProgress=!0,this.isMobile||(yield this.monacoEditor.getAction("editor.action.formatDocument").run(),this.startupScript=this.monacoEditor.getModel().getValue()),!["#!/bin/sh","#!/bin/bash"].includes(this.startupScript.split(`
|
|
2
2
|
`)[0].trim())){this.$toastr.error(this.$translate.instant("platform.docker.must_use_hashbang"),this.$translate.instant("toast.title_error")),this.startupScript=`#!/bin/sh
|
|
3
3
|
|
|
4
|
-
${this.startupScript}`,this.isMobile||this.monacoEditor.getModel().setValue(this.startupScript),this.saveInProgress=!1;return}try{yield C(this.$api.put("/platform-tools/docker/startup-script",{script:this.startupScript})),this.$toastr.success(this.$translate.instant("platform.docker.restart_required"),this.$translate.instant("platform.docker.script_saved"))}catch(t){console.error(t),this.$toastr.error(t.message,this.$translate.instant("toast.title_error"))}this.saveInProgress=!1}})}visualViewPortChanged(){this.lastHeight<window.visualViewport.height&&document.activeElement.blur(),window.visualViewport.height<window.innerHeight?(this.$md.enableTouchMove(),this.lastHeight=window.visualViewport.height):window.visualViewport.height===window.innerHeight&&(this.$md.disableTouchMove(),this.lastHeight=window.visualViewport.height)}ngOnDestroy(){window.visualViewport&&(window.visualViewport.removeEventListener("resize",this.visualViewPortEventCallback,!0),this.$md.enableTouchMove()),this.monacoEditor&&this.monacoEditor.dispose()}static \u0275fac=function(n){return new(n||i)};static \u0275cmp=x({type:i,selectors:[["ng-component"]],decls:11,vars:5,consts:[[1,"flex-column","d-flex","align-items-stretch","h-100"],[1,"row","mb-3"],[1,"col-6"],[1,"primary-text","m-0","
|
|
4
|
+
${this.startupScript}`,this.isMobile||this.monacoEditor.getModel().setValue(this.startupScript),this.saveInProgress=!1;return}try{yield C(this.$api.put("/platform-tools/docker/startup-script",{script:this.startupScript})),this.$toastr.success(this.$translate.instant("platform.docker.restart_required"),this.$translate.instant("platform.docker.script_saved"))}catch(t){console.error(t),this.$toastr.error(t.message,this.$translate.instant("toast.title_error"))}this.saveInProgress=!1}})}visualViewPortChanged(){this.lastHeight<window.visualViewport.height&&document.activeElement.blur(),window.visualViewport.height<window.innerHeight?(this.$md.enableTouchMove(),this.lastHeight=window.visualViewport.height):window.visualViewport.height===window.innerHeight&&(this.$md.disableTouchMove(),this.lastHeight=window.visualViewport.height)}ngOnDestroy(){window.visualViewport&&(window.visualViewport.removeEventListener("resize",this.visualViewPortEventCallback,!0),this.$md.enableTouchMove()),this.monacoEditor&&this.monacoEditor.dispose()}static \u0275fac=function(n){return new(n||i)};static \u0275cmp=x({type:i,selectors:[["ng-component"]],decls:11,vars:5,consts:[[1,"flex-column","d-flex","align-items-stretch","h-100"],[1,"row","mb-3"],[1,"col-6"],[1,"primary-text","m-0","font-monospace"],[1,"col-6","text-end"],[1,"btn","btn-primary","waves-effect","m-0",3,"click","disabled"],[1,"fas","fa-fw","fa-floppy-disk"],[1,"fas","fa-fw","fa-spinner","fa-pulse"],[1,"flex-grow-1","h-100","w-100","my-2",3,"options","model"],["wrap","off","autocomplete","off","autocorrect","off","autocapitalize","off","spellcheck","false",1,"hb-plain-text-editor","align-self-end","h-100","w-100","my-2",3,"ngModel"],[1,"flex-grow-1","h-100","w-100","my-2",3,"onInit","keydown.control.s","keydown.meta.s","options","model"],["wrap","off","autocomplete","off","autocorrect","off","autocapitalize","off","spellcheck","false",1,"hb-plain-text-editor","align-self-end","h-100","w-100","my-2",3,"ngModelChange","ngModel"]],template:function(n,e){n&1&&(m(0,"div",0)(1,"div",1)(2,"div",2)(3,"h3",3),v(4,"startup.sh"),l()(),m(5,"div",4)(6,"button",5),_("click",function(){return e.onSave()}),h(7,z,1,0,"i",6)(8,A,1,0,"i",7),l()()(),h(9,F,1,2,"ngx-monaco-editor",8)(10,W,2,1,"textarea",9),l()),n&2&&(s(6),f("disabled",e.saveInProgress),s(),d(e.saveInProgress?-1:7),s(),d(e.saveInProgress?8:-1),s(),d(e.isMobile?-1:9),s(),d(e.isMobile?10:-1))},dependencies:[P,$,y,E,k],encapsulation:2})}return i})();export{tt as a};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{a as R}from"./chunk-I7SLBIH6.js";import"./chunk-M2ZTMXK6.js";import{c as S}from"./chunk-SKJSWOOW.js";import"./chunk-LMNTZZKY.js";import{q as d}from"./chunk-AU2REXCU.js";import{y as u,z as f}from"./chunk-LZIWKREV.js";import"./chunk-XU7GHNFE.js";import{d as C,g as m}from"./chunk-OU5BBEVP.js";import"./chunk-OW57Y4JF.js";import"./chunk-2WHZVNIL.js";import{h as v,k as g}from"./chunk-5ONHAKZR.js";import"./chunk-HYGERTMR.js";import{a as M,c as h}from"./chunk-TOHNQM4M.js";import{ga as c,h as p,ha as i,id as l,ma as e,ub as a,w as s}from"./chunk-276OSEZQ.js";var n=(()=>{class t{$api=e(g);$router=e(C);$toastr=e(v);$translate=e(M);constructor(){}resolve(){return p(this,null,function*(){try{return yield s(this.$api.get("/platform-tools/docker/startup-script"))}catch(r){console.error(r),this.$toastr.error(r.message,this.$translate.instant("toast.title_error")),this.$router.navigate(["/"])}})}static \u0275fac=function(o){return new(o||t)};static \u0275prov=c({token:t,factory:t.\u0275fac})}return t})();var j=[{path:"",redirectTo:"/",pathMatch:"full"},{path:"startup-script",loadComponent:()=>import("./chunk-75KPAY3Q.js").then(t=>t.StartupScriptComponent),resolve:{startupScript:n}},{path:"restart-container",loadComponent:()=>import("./chunk-QPC23WSW.js").then(t=>t.ContainerRestartComponent)}],$=(()=>{class t{static \u0275fac=function(o){return new(o||t)};static \u0275mod=a({type:t});static \u0275inj=i({imports:[m.forChild(j),m]})}return t})();var Q=(()=>{class t{static \u0275fac=function(o){return new(o||t)};static \u0275mod=a({type:t});static \u0275inj=i({providers:[n],imports:[l,u,f,S,d,h.forChild(),$,R]})}return t})();export{Q as DockerModule};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{b as a}from"./chunk-OKZF7N6P.js";import"./chunk-KQATISYN.js";import"./chunk-HG2QB6Y6.js";import"./chunk-LMNTZZKY.js";import"./chunk-AU2REXCU.js";import"./chunk-LZIWKREV.js";import"./chunk-XU7GHNFE.js";import"./chunk-OU5BBEVP.js";import"./chunk-OW57Y4JF.js";import"./chunk-2WHZVNIL.js";import"./chunk-5ONHAKZR.js";import"./chunk-HYGERTMR.js";import"./chunk-TOHNQM4M.js";import"./chunk-276OSEZQ.js";export{a as AccessoriesComponent};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{
|
|
1
|
+
import{ga as e,n as r}from"./chunk-276OSEZQ.js";var n=(()=>{class t{raspberryPiThrottled=new r;static \u0275fac=function(o){return new(o||t)};static \u0275prov=e({token:t,factory:t.\u0275fac,providedIn:"root"})}return t})();export{n as a};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import"./chunk-QR2MNMQY.js";import{q as p}from"./chunk-AU2REXCU.js";import{z as m}from"./chunk-LZIWKREV.js";import{g as i}from"./chunk-OU5BBEVP.js";import"./chunk-2WHZVNIL.js";import"./chunk-5ONHAKZR.js";import"./chunk-HYGERTMR.js";import{c as s}from"./chunk-TOHNQM4M.js";import{ha as t,id as n,ub as r}from"./chunk-276OSEZQ.js";var a=[{path:"",loadComponent:()=>import("./chunk-G6ROSMJ3.js").then(o=>o.PowerOptionsComponent)}],u=(()=>{class o{static \u0275fac=function(e){return new(e||o)};static \u0275mod=r({type:o});static \u0275inj=t({imports:[i.forChild(a),i]})}return o})();var j=(()=>{class o{static \u0275fac=function(e){return new(e||o)};static \u0275mod=r({type:o});static \u0275inj=t({imports:[n,u,p,m,s]})}return o})();export{j as PowerOptionsModule};
|