homebridge-config-ui-x 5.0.0-beta.11 → 5.0.0-beta.111
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 +526 -31
- package/CONTRIBUTING.md +5 -4
- package/LICENSE +1 -1
- package/config.schema.json +55 -252
- package/dist/bin/hb-service.d.ts +2 -2
- package/dist/bin/hb-service.js +52 -51
- package/dist/bin/hb-service.js.map +1 -1
- package/dist/bin/platforms/darwin.js +3 -11
- package/dist/bin/platforms/darwin.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 +1 -0
- package/dist/bin/standalone.js.map +1 -1
- package/dist/core/auth/auth.controller.d.ts +35 -3
- 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 +50 -11
- package/dist/core/config/config.service.js +59 -20
- 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 -77
- package/dist/index.js.map +1 -1
- package/dist/main.js +3 -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 +8 -7
- package/dist/modules/accessories/accessories.service.js.map +1 -1
- package/dist/modules/backup/backup.controller.d.ts +1 -0
- package/dist/modules/backup/backup.controller.js +18 -7
- package/dist/modules/backup/backup.controller.js.map +1 -1
- package/dist/modules/backup/backup.service.d.ts +1 -0
- package/dist/modules/backup/backup.service.js +37 -83
- 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 +7 -1
- package/dist/modules/config-editor/config-editor.controller.js +36 -8
- package/dist/modules/config-editor/config-editor.controller.js.map +1 -1
- package/dist/modules/config-editor/config-editor.service.d.ts +5 -1
- package/dist/modules/config-editor/config-editor.service.js +133 -69
- package/dist/modules/config-editor/config-editor.service.js.map +1 -1
- package/dist/modules/custom-plugins/plugins-settings-ui/plugins-settings-ui.service.d.ts +1 -1
- package/dist/modules/custom-plugins/plugins-settings-ui/plugins-settings-ui.service.js +13 -11
- 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.d.ts +2 -0
- package/dist/modules/plugins/plugins.controller.js +5 -5
- package/dist/modules/plugins/plugins.controller.js.map +1 -1
- package/dist/modules/plugins/plugins.service.d.ts +10 -1
- package/dist/modules/plugins/plugins.service.js +287 -168
- package/dist/modules/plugins/plugins.service.js.map +1 -1
- package/dist/modules/server/server.controller.d.ts +33 -3
- package/dist/modules/server/server.controller.js +162 -20
- package/dist/modules/server/server.controller.js.map +1 -1
- package/dist/modules/server/server.service.d.ts +35 -6
- package/dist/modules/server/server.service.js +288 -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 +34 -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 +50 -43
- package/public/3rdpartylicenses.txt +246 -136
- package/public/assets/hap-icons/air-purifier.svg +50 -0
- package/public/assets/hap-icons/air-quality-sensor.svg +25 -0
- package/public/assets/hap-icons/carbon-dioxide-sensor.svg +72 -0
- package/public/assets/hap-icons/carbon-monoxide-sensor.svg +72 -0
- package/public/assets/hap-icons/contact-sensor-closed.svg +36 -0
- package/public/assets/hap-icons/contact-sensor-open.svg +81 -0
- 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/filter-maintenance.svg +26 -0
- package/public/assets/hap-icons/garage-door.svg +25 -0
- package/public/assets/hap-icons/humidity-sensor.svg +25 -0
- package/public/assets/hap-icons/irrigation-system.svg +47 -18
- package/public/assets/hap-icons/leak-sensor.svg +53 -0
- package/public/assets/hap-icons/light-bulb.svg +25 -0
- package/public/assets/hap-icons/light-sensor.svg +50 -0
- 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/motion-sensor.svg +101 -0
- package/public/assets/hap-icons/occupancy-sensor.svg +98 -0
- package/public/assets/hap-icons/outlet.svg +24 -13
- package/public/assets/hap-icons/security-system-active.svg +103 -0
- package/public/assets/hap-icons/security-system-off.svg +69 -0
- package/public/assets/hap-icons/security-system-triggered.svg +103 -0
- package/public/assets/hap-icons/smoke-sensor.svg +59 -0
- package/public/assets/hap-icons/speaker.svg +29 -13
- package/public/assets/hap-icons/stateless-programmable-switch.svg +52 -0
- 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-faucet.svg +21 -0
- 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-shower-head.svg +52 -0
- package/public/assets/hap-icons/window-closed.svg +85 -2
- package/public/assets/hap-icons/window-covering-closed.svg +49 -0
- package/public/assets/hap-icons/window-covering-open.svg +44 -0
- package/public/assets/hap-icons/window-open.svg +136 -2
- 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/assets/plugin-ui-utils/ui.js +3 -0
- package/public/assets/plugin-ui-utils/ui.js.map +1 -1
- package/public/chunk-2B6Z42D5.js +2 -0
- package/public/chunk-3KEVK4CU.js +1 -0
- package/public/{chunk-T5R3UG6Z.js → chunk-3TXUNOXT.js} +1 -1
- package/public/chunk-4G7W6MRL.js +1 -0
- package/public/chunk-4N7ZDOUO.js +1 -0
- package/public/chunk-5CIDMZGS.js +1 -0
- package/public/chunk-66VSEU25.js +5 -0
- package/public/chunk-7DSQ7XWE.js +1 -0
- package/public/{chunk-QE7DO6J3.js → chunk-7EQ4BJZB.js} +2 -2
- package/public/chunk-7GGXZ7OU.js +1 -0
- package/public/chunk-7QRMEOTO.js +8 -0
- package/public/chunk-7RKBTRXY.js +1 -0
- package/public/chunk-ABBL3RO7.js +1 -0
- package/public/chunk-BCMP25TC.js +1 -0
- package/public/chunk-BP5LQRNS.js +4 -0
- package/public/chunk-CF2ZN7LY.js +5 -0
- package/public/chunk-DSKSIOUV.js +1 -0
- package/public/chunk-EGCUYKRH.js +1 -0
- package/public/chunk-EL5XLLBH.js +1 -0
- package/public/chunk-EPA4YSLT.js +1 -0
- package/public/chunk-F3ERQJVG.js +1 -0
- package/public/{chunk-LM6S4A72.js → chunk-FFFA4Z4P.js} +1 -1
- package/public/chunk-FNE4UWIK.js +1 -0
- package/public/chunk-FXYQSGFB.js +1 -0
- package/public/{chunk-7EUQWCP5.js → chunk-GDFV4BMO.js} +2 -2
- package/public/chunk-GW2DVJRQ.js +1 -0
- package/public/chunk-HTQJEJW6.js +23 -0
- package/public/chunk-IN7NZAFJ.js +1 -0
- package/public/chunk-J6YDFLQQ.js +1 -0
- package/public/chunk-K6X6GPJI.js +1 -0
- package/public/chunk-KKNYWOLQ.js +20 -0
- package/public/chunk-L3KYADWL.js +1 -0
- package/public/chunk-LUNR4YXI.js +1 -0
- package/public/chunk-LXXELGX4.js +1 -0
- package/public/chunk-LZTR2JMZ.js +1 -0
- package/public/{chunk-JZZQRLNW.js → chunk-NGNQPAAK.js} +1 -1
- package/public/chunk-NH3ELE5E.js +4 -0
- package/public/chunk-OKTBHUEL.js +1 -0
- package/public/{chunk-5M6KOARX.js → chunk-ORZLF5HZ.js} +1 -1
- package/public/chunk-Q3UFAHWJ.js +1 -0
- package/public/{chunk-WNWWUCCZ.js → chunk-QDCKP2LU.js} +3 -3
- package/public/chunk-QEBH3NJ4.js +1 -0
- package/public/chunk-QTCNRXCY.js +29 -0
- package/public/chunk-R33U7ULB.js +1 -0
- package/public/chunk-RMY3PS3V.js +1 -0
- package/public/chunk-S5TTYLQD.js +1 -0
- package/public/chunk-SKZUTSHE.js +7 -0
- package/public/chunk-SRP6QX5M.js +2 -0
- package/public/chunk-SSMWAG33.js +1 -0
- package/public/chunk-T252YJXA.js +1 -0
- package/public/chunk-TFSYGCLN.js +1 -0
- package/public/chunk-TKTM3Z2T.js +3 -0
- package/public/chunk-TQNKRJOX.js +1 -0
- package/public/chunk-U3DAE6KH.js +1 -0
- package/public/chunk-UD6SVFW2.js +7 -0
- package/public/chunk-UO2HQVMO.js +1 -0
- package/public/{chunk-3RNRIJ74.js → chunk-UQYCFN3T.js} +11 -11
- package/public/chunk-V6SZXPWT.js +1 -0
- package/public/chunk-VGEV4FQW.js +1 -0
- package/public/{chunk-EA5J2VEJ.js → chunk-X2SHRXXY.js} +1 -1
- package/public/chunk-X7PVYZAE.js +1 -0
- package/public/{chunk-3TUBDO76.js → chunk-XBWIDIPO.js} +1 -1
- package/public/chunk-ZDJGHFIU.js +12 -0
- package/public/chunk-ZNACRWKA.js +1 -0
- package/public/chunk-ZVUGVJDR.js +1 -0
- package/public/index.html +2 -2
- package/public/main-YVALKUM3.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/polyfills-WE4HA5DL.js +2 -0
- package/public/styles-YDIK2EDN.css +1 -0
- package/scripts/upgrade-install-plugin.sh +1 -1
- package/public/assets/hap-icons/airpurifier.svg +0 -17
- package/public/assets/hap-icons/airquality.svg +0 -14
- package/public/assets/hap-icons/contactsensor-closed.svg +0 -3
- package/public/assets/hap-icons/contactsensor-open.svg +0 -3
- package/public/assets/hap-icons/garagedoor.svg +0 -14
- package/public/assets/hap-icons/humidity.svg +0 -14
- package/public/assets/hap-icons/leaksensor.svg +0 -3
- package/public/assets/hap-icons/light.svg +0 -31
- package/public/assets/hap-icons/lightbulb.svg +0 -14
- package/public/assets/hap-icons/motionsensor.svg +0 -3
- package/public/assets/hap-icons/occupancysensor.svg +0 -3
- package/public/assets/hap-icons/securitysystem-active.svg +0 -3
- package/public/assets/hap-icons/securitysystem-off.svg +0 -3
- package/public/assets/hap-icons/smokesensor.svg +0 -13
- package/public/assets/hap-icons/statelessprogrammableswitch.svg +0 -3
- package/public/assets/hap-icons/windowcovering-closed.svg +0 -53
- package/public/assets/hap-icons/windowcovering-open.svg +0 -48
- package/public/chunk-23E7VL2P.js +0 -1
- package/public/chunk-33LJ3YIR.js +0 -1
- package/public/chunk-34W4KCBV.js +0 -1
- package/public/chunk-3IX3CLER.js +0 -1
- package/public/chunk-3UBYWHRR.js +0 -1
- package/public/chunk-52HTAWOT.js +0 -1
- package/public/chunk-535DPMCW.js +0 -1
- package/public/chunk-56BOPXKC.js +0 -1
- package/public/chunk-6IAVZXBU.js +0 -20
- package/public/chunk-6T27YQ2D.js +0 -1
- package/public/chunk-6TCHCTXZ.js +0 -1
- package/public/chunk-7WLTVXXL.js +0 -1
- package/public/chunk-AS2OC4NZ.js +0 -1
- package/public/chunk-BKUGARB4.js +0 -7
- package/public/chunk-BLUX2UMQ.js +0 -1
- package/public/chunk-BPMSJ2VF.js +0 -1
- package/public/chunk-BW6NZ6VD.js +0 -6
- package/public/chunk-C4ENUEJD.js +0 -1
- package/public/chunk-C536FAQ7.js +0 -5
- package/public/chunk-CCUID66K.js +0 -1
- package/public/chunk-CL4YMJZW.js +0 -1
- package/public/chunk-D7HF5OGR.js +0 -1
- package/public/chunk-DD3R2DFS.js +0 -1
- package/public/chunk-DHAYGFW2.js +0 -1
- package/public/chunk-DVTSZQXS.js +0 -1
- package/public/chunk-EIBIFGLP.js +0 -1
- package/public/chunk-F4CW25FV.js +0 -1
- package/public/chunk-HL7XXKHI.js +0 -1
- package/public/chunk-HSJSWZHD.js +0 -1
- package/public/chunk-HUV3VJSE.js +0 -1
- package/public/chunk-INJABMER.js +0 -23
- package/public/chunk-IU27XSWW.js +0 -1
- package/public/chunk-JVAHZDVJ.js +0 -1
- package/public/chunk-KQJ7ONUG.js +0 -1
- package/public/chunk-KS3FIR4R.js +0 -1
- package/public/chunk-KXWJIWYD.js +0 -1
- package/public/chunk-LDGB6S2N.js +0 -1
- package/public/chunk-M45D5CCT.js +0 -1
- package/public/chunk-MGBLPFXT.js +0 -1
- package/public/chunk-MIMQGXTO.js +0 -1
- package/public/chunk-NKN62APE.js +0 -1
- package/public/chunk-NW6AFAD7.js +0 -1
- package/public/chunk-NZNNTHFQ.js +0 -1
- package/public/chunk-ORPWYWCL.js +0 -5
- package/public/chunk-Q2YQ4J5L.js +0 -1
- package/public/chunk-QHPDGSZ6.js +0 -1
- package/public/chunk-QXHB5Q7H.js +0 -1
- package/public/chunk-R2QZPN2M.js +0 -1
- package/public/chunk-RDOXIKK6.js +0 -1
- package/public/chunk-RHBPQJLQ.js +0 -1
- package/public/chunk-RSGTDKO6.js +0 -1
- package/public/chunk-RTVXC3Y7.js +0 -1
- package/public/chunk-SFK7OSIU.js +0 -1
- package/public/chunk-SFLEKDGL.js +0 -1
- package/public/chunk-TB7FJ5XX.js +0 -1
- package/public/chunk-TCSXGQNF.js +0 -1
- package/public/chunk-TRTZHJGG.js +0 -1
- package/public/chunk-TWWDGSRW.js +0 -1
- package/public/chunk-TXOB7R5K.js +0 -7
- package/public/chunk-U2WFZQTC.js +0 -32
- package/public/chunk-UG5DK2RQ.js +0 -2
- package/public/chunk-UPYKPJUD.js +0 -4
- package/public/chunk-UVNEKL77.js +0 -1
- package/public/chunk-VHLIKZYD.js +0 -1
- package/public/chunk-WHJOLAED.js +0 -1
- package/public/chunk-WHJSVGC7.js +0 -1
- package/public/chunk-Y62756RF.js +0 -1
- package/public/chunk-YA4WNIBX.js +0 -1
- package/public/chunk-ZGUIFA2B.js +0 -1
- package/public/chunk-ZLOETFRA.js +0 -8
- package/public/chunk-ZT23DWNL.js +0 -1
- package/public/main-TLKQDE7H.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/polyfills-C6JHVXJJ.js +0 -2
- 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,11 +1,11 @@
|
|
|
1
1
|
|
|
2
2
|
--------------------------------------------------------------------------------
|
|
3
|
-
Package: @angular/
|
|
3
|
+
Package: @angular/animations
|
|
4
4
|
License: "MIT"
|
|
5
5
|
|
|
6
6
|
The MIT License
|
|
7
7
|
|
|
8
|
-
Copyright (c) 2010-
|
|
8
|
+
Copyright (c) 2010-2025 Google LLC. https://angular.dev/license
|
|
9
9
|
|
|
10
10
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
11
11
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -26,12 +26,12 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
26
26
|
THE SOFTWARE.
|
|
27
27
|
|
|
28
28
|
--------------------------------------------------------------------------------
|
|
29
|
-
Package: @angular/
|
|
29
|
+
Package: @angular/platform-browser
|
|
30
30
|
License: "MIT"
|
|
31
31
|
|
|
32
32
|
The MIT License
|
|
33
33
|
|
|
34
|
-
Copyright (c) 2010-
|
|
34
|
+
Copyright (c) 2010-2025 Google LLC. https://angular.dev/license
|
|
35
35
|
|
|
36
36
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
37
37
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -52,12 +52,12 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
52
52
|
THE SOFTWARE.
|
|
53
53
|
|
|
54
54
|
--------------------------------------------------------------------------------
|
|
55
|
-
Package: @angular/
|
|
55
|
+
Package: @angular/common
|
|
56
56
|
License: "MIT"
|
|
57
57
|
|
|
58
58
|
The MIT License
|
|
59
59
|
|
|
60
|
-
Copyright (c) 2010-
|
|
60
|
+
Copyright (c) 2010-2025 Google LLC. https://angular.dev/license
|
|
61
61
|
|
|
62
62
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
63
63
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -156,7 +156,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
156
156
|
SOFTWARE.
|
|
157
157
|
|
|
158
158
|
--------------------------------------------------------------------------------
|
|
159
|
-
Package: @ng-formworks/
|
|
159
|
+
Package: @ng-formworks/bootstrap5
|
|
160
160
|
License: "MIT"
|
|
161
161
|
|
|
162
162
|
MIT License
|
|
@@ -181,13 +181,39 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
181
181
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
182
182
|
SOFTWARE.
|
|
183
183
|
|
|
184
|
+
--------------------------------------------------------------------------------
|
|
185
|
+
Package: is-standalone-pwa
|
|
186
|
+
License: "MIT"
|
|
187
|
+
|
|
188
|
+
MIT License
|
|
189
|
+
|
|
190
|
+
Copyright (c) 2024 Faisal Salman
|
|
191
|
+
|
|
192
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
193
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
194
|
+
in the Software without restriction, including without limitation the rights
|
|
195
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
196
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
197
|
+
furnished to do so, subject to the following conditions:
|
|
198
|
+
|
|
199
|
+
The above copyright notice and this permission notice shall be included in all
|
|
200
|
+
copies or substantial portions of the Software.
|
|
201
|
+
|
|
202
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
203
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
204
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
205
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
206
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
207
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
208
|
+
SOFTWARE.
|
|
209
|
+
|
|
184
210
|
--------------------------------------------------------------------------------
|
|
185
211
|
Package: angular-gridster2
|
|
186
212
|
License: "MIT"
|
|
187
213
|
|
|
188
214
|
MIT License
|
|
189
215
|
|
|
190
|
-
Copyright (c)
|
|
216
|
+
Copyright (c) 2025 Tiberiu Zuld
|
|
191
217
|
|
|
192
218
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
193
219
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -207,6 +233,84 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
207
233
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
208
234
|
SOFTWARE.
|
|
209
235
|
|
|
236
|
+
--------------------------------------------------------------------------------
|
|
237
|
+
Package: ng-inline-svg-2
|
|
238
|
+
License: "MIT"
|
|
239
|
+
|
|
240
|
+
The MIT License (MIT)
|
|
241
|
+
|
|
242
|
+
Copyright (c) 2016 Eugene Cheung
|
|
243
|
+
|
|
244
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
245
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
246
|
+
in the Software without restriction, including without limitation the rights
|
|
247
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
248
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
249
|
+
furnished to do so, subject to the following conditions:
|
|
250
|
+
|
|
251
|
+
The above copyright notice and this permission notice shall be included in
|
|
252
|
+
all copies or substantial portions of the Software.
|
|
253
|
+
|
|
254
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
255
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
256
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
257
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
258
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
259
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
260
|
+
THE SOFTWARE.
|
|
261
|
+
|
|
262
|
+
--------------------------------------------------------------------------------
|
|
263
|
+
Package: nouislider
|
|
264
|
+
License: "MIT"
|
|
265
|
+
|
|
266
|
+
MIT License
|
|
267
|
+
|
|
268
|
+
Copyright (c) 2019 Léon Gersen
|
|
269
|
+
|
|
270
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
271
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
272
|
+
in the Software without restriction, including without limitation the rights
|
|
273
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
274
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
275
|
+
furnished to do so, subject to the following conditions:
|
|
276
|
+
|
|
277
|
+
The above copyright notice and this permission notice shall be included in all
|
|
278
|
+
copies or substantial portions of the Software.
|
|
279
|
+
|
|
280
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
281
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
282
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
283
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
284
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
285
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
286
|
+
SOFTWARE.
|
|
287
|
+
|
|
288
|
+
--------------------------------------------------------------------------------
|
|
289
|
+
Package: ng2-nouislider
|
|
290
|
+
License: "MIT"
|
|
291
|
+
|
|
292
|
+
MIT License
|
|
293
|
+
|
|
294
|
+
Copyright (c) 2017-2019 Tomasz Bak https://www.tomaszbak.com/
|
|
295
|
+
|
|
296
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
297
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
298
|
+
in the Software without restriction, including without limitation the rights
|
|
299
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
300
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
301
|
+
furnished to do so, subject to the following conditions:
|
|
302
|
+
|
|
303
|
+
The above copyright notice and this permission notice shall be included in all
|
|
304
|
+
copies or substantial portions of the Software.
|
|
305
|
+
|
|
306
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
307
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
308
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
309
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
310
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
311
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
312
|
+
SOFTWARE.
|
|
313
|
+
|
|
210
314
|
--------------------------------------------------------------------------------
|
|
211
315
|
Package: @kurkle/color
|
|
212
316
|
License: "MIT"
|
|
@@ -358,38 +462,13 @@ License: "MIT"
|
|
|
358
462
|
|
|
359
463
|
|
|
360
464
|
--------------------------------------------------------------------------------
|
|
361
|
-
Package:
|
|
362
|
-
License: "MIT"
|
|
363
|
-
|
|
364
|
-
MIT License
|
|
365
|
-
|
|
366
|
-
Copyright (c) 2019 Léon Gersen
|
|
367
|
-
|
|
368
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
369
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
370
|
-
in the Software without restriction, including without limitation the rights
|
|
371
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
372
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
373
|
-
furnished to do so, subject to the following conditions:
|
|
374
|
-
|
|
375
|
-
The above copyright notice and this permission notice shall be included in all
|
|
376
|
-
copies or substantial portions of the Software.
|
|
377
|
-
|
|
378
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
379
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
380
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
381
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
382
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
383
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
384
|
-
SOFTWARE.
|
|
385
|
-
|
|
386
|
-
--------------------------------------------------------------------------------
|
|
387
|
-
Package: ng2-nouislider
|
|
465
|
+
Package: @homebridge/hap-client
|
|
388
466
|
License: "MIT"
|
|
389
467
|
|
|
390
468
|
MIT License
|
|
391
469
|
|
|
392
|
-
Copyright (c)
|
|
470
|
+
Copyright (c) 2023-2025 Homebridge
|
|
471
|
+
Copyright (c) 2020-2023 oznu <dev@oz.nu>
|
|
393
472
|
|
|
394
473
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
395
474
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -409,32 +488,6 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
409
488
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
410
489
|
SOFTWARE.
|
|
411
490
|
|
|
412
|
-
--------------------------------------------------------------------------------
|
|
413
|
-
Package: ng-inline-svg-2
|
|
414
|
-
License: "MIT"
|
|
415
|
-
|
|
416
|
-
The MIT License (MIT)
|
|
417
|
-
|
|
418
|
-
Copyright (c) 2016 Eugene Cheung
|
|
419
|
-
|
|
420
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
421
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
422
|
-
in the Software without restriction, including without limitation the rights
|
|
423
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
424
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
425
|
-
furnished to do so, subject to the following conditions:
|
|
426
|
-
|
|
427
|
-
The above copyright notice and this permission notice shall be included in
|
|
428
|
-
all copies or substantial portions of the Software.
|
|
429
|
-
|
|
430
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
431
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
432
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
433
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
434
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
435
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
436
|
-
THE SOFTWARE.
|
|
437
|
-
|
|
438
491
|
--------------------------------------------------------------------------------
|
|
439
492
|
Package: ajv
|
|
440
493
|
License: "MIT"
|
|
@@ -548,6 +601,32 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
548
601
|
|
|
549
602
|
The complete list of contributors can be found at:
|
|
550
603
|
- https://github.com/garycourt/uri-js/graphs/contributors
|
|
604
|
+
--------------------------------------------------------------------------------
|
|
605
|
+
Package: ajv-keywords
|
|
606
|
+
License: "MIT"
|
|
607
|
+
|
|
608
|
+
The MIT License (MIT)
|
|
609
|
+
|
|
610
|
+
Copyright (c) 2016 Evgeny Poberezkin
|
|
611
|
+
|
|
612
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
613
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
614
|
+
in the Software without restriction, including without limitation the rights
|
|
615
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
616
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
617
|
+
furnished to do so, subject to the following conditions:
|
|
618
|
+
|
|
619
|
+
The above copyright notice and this permission notice shall be included in all
|
|
620
|
+
copies or substantial portions of the Software.
|
|
621
|
+
|
|
622
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
623
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
624
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
625
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
626
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
627
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
628
|
+
SOFTWARE.
|
|
629
|
+
|
|
551
630
|
--------------------------------------------------------------------------------
|
|
552
631
|
Package: emoji-js
|
|
553
632
|
License: "MIT"
|
|
@@ -600,6 +679,37 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
600
679
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
601
680
|
SOFTWARE.
|
|
602
681
|
|
|
682
|
+
--------------------------------------------------------------------------------
|
|
683
|
+
Package: sortablejs
|
|
684
|
+
License: "MIT"
|
|
685
|
+
|
|
686
|
+
MIT License
|
|
687
|
+
|
|
688
|
+
Copyright (c) 2019 All contributors to Sortable
|
|
689
|
+
|
|
690
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
691
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
692
|
+
in the Software without restriction, including without limitation the rights
|
|
693
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
694
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
695
|
+
furnished to do so, subject to the following conditions:
|
|
696
|
+
|
|
697
|
+
The above copyright notice and this permission notice shall be included in all
|
|
698
|
+
copies or substantial portions of the Software.
|
|
699
|
+
|
|
700
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
701
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
702
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
703
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
704
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
705
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
706
|
+
SOFTWARE.
|
|
707
|
+
|
|
708
|
+
--------------------------------------------------------------------------------
|
|
709
|
+
Package: nxt-sortablejs
|
|
710
|
+
License: "MIT"
|
|
711
|
+
|
|
712
|
+
|
|
603
713
|
--------------------------------------------------------------------------------
|
|
604
714
|
Package: lodash-es
|
|
605
715
|
License: "MIT"
|
|
@@ -699,6 +809,31 @@ Package: ngx-monaco-editor-v2
|
|
|
699
809
|
License: "MIT"
|
|
700
810
|
|
|
701
811
|
|
|
812
|
+
--------------------------------------------------------------------------------
|
|
813
|
+
Package: mobile-detect
|
|
814
|
+
License: "MIT"
|
|
815
|
+
|
|
816
|
+
The MIT License (MIT)
|
|
817
|
+
|
|
818
|
+
Copyright (c) 2013 Heinrich Goebl
|
|
819
|
+
|
|
820
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
821
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
822
|
+
in the Software without restriction, including without limitation the rights
|
|
823
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
824
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
825
|
+
furnished to do so, subject to the following conditions:
|
|
826
|
+
|
|
827
|
+
The above copyright notice and this permission notice shall be included in
|
|
828
|
+
all copies or substantial portions of the Software.
|
|
829
|
+
|
|
830
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
831
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
832
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
833
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
834
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
835
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
836
|
+
THE SOFTWARE.
|
|
702
837
|
--------------------------------------------------------------------------------
|
|
703
838
|
Package: prismjs
|
|
704
839
|
License: "MIT"
|
|
@@ -801,10 +936,12 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
|
|
|
801
936
|
[1]: http://eligrey.com
|
|
802
937
|
|
|
803
938
|
--------------------------------------------------------------------------------
|
|
804
|
-
Package: xterm
|
|
939
|
+
Package: xterm
|
|
805
940
|
License: "MIT"
|
|
806
941
|
|
|
807
|
-
Copyright (c) 2017, The xterm.js authors (https://github.com/xtermjs/xterm.js)
|
|
942
|
+
Copyright (c) 2017-2019, The xterm.js authors (https://github.com/xtermjs/xterm.js)
|
|
943
|
+
Copyright (c) 2014-2016, SourceLair Private Company (https://www.sourcelair.com)
|
|
944
|
+
Copyright (c) 2012-2013, Christopher Jeffrey (https://github.com/chjj/)
|
|
808
945
|
|
|
809
946
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
810
947
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -825,24 +962,20 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
825
962
|
THE SOFTWARE.
|
|
826
963
|
|
|
827
964
|
--------------------------------------------------------------------------------
|
|
828
|
-
Package:
|
|
829
|
-
License: "MIT"
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
--------------------------------------------------------------------------------
|
|
833
|
-
Package: dijkstrajs
|
|
965
|
+
Package: xterm-addon-fit
|
|
834
966
|
License: "MIT"
|
|
835
967
|
|
|
836
|
-
|
|
837
|
-
Dijkstra path-finding functions. Adapted from the Dijkstar Python project.
|
|
838
|
-
|
|
839
|
-
Copyright (C) 2008
|
|
840
|
-
Wyatt Baldwin <self@wyattbaldwin.com>
|
|
841
|
-
All rights reserved
|
|
968
|
+
Copyright (c) 2019, The xterm.js authors (https://github.com/xtermjs/xterm.js)
|
|
842
969
|
|
|
843
|
-
|
|
970
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
971
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
972
|
+
in the Software without restriction, including without limitation the rights
|
|
973
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
974
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
975
|
+
furnished to do so, subject to the following conditions:
|
|
844
976
|
|
|
845
|
-
|
|
977
|
+
The above copyright notice and this permission notice shall be included in
|
|
978
|
+
all copies or substantial portions of the Software.
|
|
846
979
|
|
|
847
980
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
848
981
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
@@ -851,15 +984,12 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
851
984
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
852
985
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
853
986
|
THE SOFTWARE.
|
|
854
|
-
```
|
|
855
987
|
|
|
856
988
|
--------------------------------------------------------------------------------
|
|
857
|
-
Package: xterm
|
|
989
|
+
Package: xterm-addon-web-links
|
|
858
990
|
License: "MIT"
|
|
859
991
|
|
|
860
|
-
Copyright (c) 2017
|
|
861
|
-
Copyright (c) 2014-2016, SourceLair Private Company (https://www.sourcelair.com)
|
|
862
|
-
Copyright (c) 2012-2013, Christopher Jeffrey (https://github.com/chjj/)
|
|
992
|
+
Copyright (c) 2017, The xterm.js authors (https://github.com/xtermjs/xterm.js)
|
|
863
993
|
|
|
864
994
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
865
995
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -880,20 +1010,24 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
880
1010
|
THE SOFTWARE.
|
|
881
1011
|
|
|
882
1012
|
--------------------------------------------------------------------------------
|
|
883
|
-
Package:
|
|
1013
|
+
Package: qrcode
|
|
884
1014
|
License: "MIT"
|
|
885
1015
|
|
|
886
|
-
Copyright (c) 2019, The xterm.js authors (https://github.com/xtermjs/xterm.js)
|
|
887
1016
|
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
892
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
893
|
-
furnished to do so, subject to the following conditions:
|
|
1017
|
+
--------------------------------------------------------------------------------
|
|
1018
|
+
Package: dijkstrajs
|
|
1019
|
+
License: "MIT"
|
|
894
1020
|
|
|
895
|
-
|
|
896
|
-
|
|
1021
|
+
```
|
|
1022
|
+
Dijkstra path-finding functions. Adapted from the Dijkstar Python project.
|
|
1023
|
+
|
|
1024
|
+
Copyright (C) 2008
|
|
1025
|
+
Wyatt Baldwin <self@wyattbaldwin.com>
|
|
1026
|
+
All rights reserved
|
|
1027
|
+
|
|
1028
|
+
Licensed under the MIT license.
|
|
1029
|
+
|
|
1030
|
+
http://www.opensource.org/licenses/mit-license.php
|
|
897
1031
|
|
|
898
1032
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
899
1033
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
@@ -902,6 +1036,7 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
902
1036
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
903
1037
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
904
1038
|
THE SOFTWARE.
|
|
1039
|
+
```
|
|
905
1040
|
|
|
906
1041
|
--------------------------------------------------------------------------------
|
|
907
1042
|
Package: semver
|
|
@@ -923,38 +1058,13 @@ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
923
1058
|
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
|
924
1059
|
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
925
1060
|
|
|
926
|
-
--------------------------------------------------------------------------------
|
|
927
|
-
Package: mobile-detect
|
|
928
|
-
License: "MIT"
|
|
929
|
-
|
|
930
|
-
The MIT License (MIT)
|
|
931
|
-
|
|
932
|
-
Copyright (c) 2013 Heinrich Goebl
|
|
933
|
-
|
|
934
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
935
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
936
|
-
in the Software without restriction, including without limitation the rights
|
|
937
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
938
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
939
|
-
furnished to do so, subject to the following conditions:
|
|
940
|
-
|
|
941
|
-
The above copyright notice and this permission notice shall be included in
|
|
942
|
-
all copies or substantial portions of the Software.
|
|
943
|
-
|
|
944
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
945
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
946
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
947
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
948
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
949
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
950
|
-
THE SOFTWARE.
|
|
951
1061
|
--------------------------------------------------------------------------------
|
|
952
1062
|
Package: @angular/core
|
|
953
1063
|
License: "MIT"
|
|
954
1064
|
|
|
955
1065
|
The MIT License
|
|
956
1066
|
|
|
957
|
-
Copyright (c) 2010-
|
|
1067
|
+
Copyright (c) 2010-2025 Google LLC. https://angular.dev/license
|
|
958
1068
|
|
|
959
1069
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
960
1070
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -1031,7 +1141,7 @@ License: "MIT"
|
|
|
1031
1141
|
|
|
1032
1142
|
The MIT License
|
|
1033
1143
|
|
|
1034
|
-
Copyright (c) 2010-
|
|
1144
|
+
Copyright (c) 2010-2025 Google LLC. https://angular.dev/license
|
|
1035
1145
|
|
|
1036
1146
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1037
1147
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -1184,12 +1294,12 @@ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
|
1184
1294
|
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1185
1295
|
|
|
1186
1296
|
--------------------------------------------------------------------------------
|
|
1187
|
-
Package: @angular
|
|
1297
|
+
Package: @auth0/angular-jwt
|
|
1188
1298
|
License: "MIT"
|
|
1189
1299
|
|
|
1190
|
-
The MIT License
|
|
1300
|
+
The MIT License (MIT)
|
|
1191
1301
|
|
|
1192
|
-
Copyright (c)
|
|
1302
|
+
Copyright (c) 2017 Auth0 Inc.
|
|
1193
1303
|
|
|
1194
1304
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1195
1305
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -1198,24 +1308,24 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
1198
1308
|
copies of the Software, and to permit persons to whom the Software is
|
|
1199
1309
|
furnished to do so, subject to the following conditions:
|
|
1200
1310
|
|
|
1201
|
-
The above copyright notice and this permission notice shall be included in
|
|
1202
|
-
|
|
1311
|
+
The above copyright notice and this permission notice shall be included in all
|
|
1312
|
+
copies or substantial portions of the Software.
|
|
1203
1313
|
|
|
1204
1314
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1205
1315
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1206
1316
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1207
1317
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1208
1318
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1209
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
1210
|
-
|
|
1319
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1320
|
+
SOFTWARE.
|
|
1211
1321
|
|
|
1212
1322
|
--------------------------------------------------------------------------------
|
|
1213
|
-
Package: @
|
|
1323
|
+
Package: @angular/router
|
|
1214
1324
|
License: "MIT"
|
|
1215
1325
|
|
|
1216
|
-
The MIT License
|
|
1326
|
+
The MIT License
|
|
1217
1327
|
|
|
1218
|
-
Copyright (c)
|
|
1328
|
+
Copyright (c) 2010-2025 Google LLC. https://angular.dev/license
|
|
1219
1329
|
|
|
1220
1330
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1221
1331
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -1224,16 +1334,16 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
1224
1334
|
copies of the Software, and to permit persons to whom the Software is
|
|
1225
1335
|
furnished to do so, subject to the following conditions:
|
|
1226
1336
|
|
|
1227
|
-
The above copyright notice and this permission notice shall be included in
|
|
1228
|
-
copies or substantial portions of the Software.
|
|
1337
|
+
The above copyright notice and this permission notice shall be included in
|
|
1338
|
+
all copies or substantial portions of the Software.
|
|
1229
1339
|
|
|
1230
1340
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1231
1341
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1232
1342
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1233
1343
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1234
1344
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1235
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
1236
|
-
SOFTWARE.
|
|
1345
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
1346
|
+
THE SOFTWARE.
|
|
1237
1347
|
|
|
1238
1348
|
--------------------------------------------------------------------------------
|
|
1239
1349
|
Package: dayjs
|
|
@@ -1529,7 +1639,7 @@ License: "MIT"
|
|
|
1529
1639
|
|
|
1530
1640
|
The MIT License
|
|
1531
1641
|
|
|
1532
|
-
Copyright (c) 2010-
|
|
1642
|
+
Copyright (c) 2010-2025 Google LLC. https://angular.dev/license
|
|
1533
1643
|
|
|
1534
1644
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1535
1645
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -1555,7 +1665,7 @@ License: "MIT"
|
|
|
1555
1665
|
|
|
1556
1666
|
The MIT License
|
|
1557
1667
|
|
|
1558
|
-
Copyright (c) 2010-
|
|
1668
|
+
Copyright (c) 2010-2025 Google LLC. https://angular.dev/license
|
|
1559
1669
|
|
|
1560
1670
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1561
1671
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" ?>
|
|
2
|
+
<svg
|
|
3
|
+
width="100px"
|
|
4
|
+
height="149px"
|
|
5
|
+
viewBox="0 0 100 149"
|
|
6
|
+
version="1.1"
|
|
7
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
8
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
9
|
+
>
|
|
10
|
+
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
11
|
+
<g id="air-purifier" transform="translate(7.000000, 5.000000)">
|
|
12
|
+
<path
|
|
13
|
+
d="M-4.26325641e-14,6.22067087 C4.02953795,8.50225516 12.4315562,9.67933849 25.2060547,9.75192087 C32.8391014,9.79529045 51.5791554,2.41088415 63.7714844,0.357389618 C69.2464736,-0.564736121 76.8610569,0.297568567 86.6152344,2.94430368"
|
|
14
|
+
id="Line"
|
|
15
|
+
class="air-purifier_off_grey"
|
|
16
|
+
stroke="#5BC8FA"
|
|
17
|
+
stroke-width="10"
|
|
18
|
+
stroke-linecap="square"
|
|
19
|
+
/>
|
|
20
|
+
<path
|
|
21
|
+
d="M-4.26325641e-14,30.2206709 C4.02953795,32.5022552 12.4315562,33.6793385 25.2060547,33.7519209 C32.8391014,33.7952905 51.5791554,26.4108841 63.7714844,24.3573896 C69.2464736,23.4352639 76.8610569,24.2975686 86.6152344,26.9443037"
|
|
22
|
+
id="Line"
|
|
23
|
+
class="air-purifier_off_grey"
|
|
24
|
+
stroke="#91DBFB"
|
|
25
|
+
stroke-width="10"
|
|
26
|
+
stroke-linecap="square"
|
|
27
|
+
/>
|
|
28
|
+
<path
|
|
29
|
+
d="M-4.26325641e-14,54.2206709 C4.02953795,56.5022552 12.4315562,57.6793385 25.2060547,57.7519209 C32.8391014,57.7952905 51.5791554,50.4108841 63.7714844,48.3573896 C69.2464736,47.4352639 76.8610569,48.2975686 86.6152344,50.9443037"
|
|
30
|
+
id="Line"
|
|
31
|
+
class="air-purifier_off_grey"
|
|
32
|
+
stroke="#C8EAFE"
|
|
33
|
+
stroke-width="10"
|
|
34
|
+
stroke-linecap="square"
|
|
35
|
+
/>
|
|
36
|
+
<polygon
|
|
37
|
+
id="Path"
|
|
38
|
+
class="air-purifier_off_grey"
|
|
39
|
+
fill="#C7C5CB"
|
|
40
|
+
points="17.2333685 76.7914641 70.0374945 76.7914641 73.9430133 79.2866885 76.8250853 84.9649087 87.1832833 114.139252 87.1832833 140.017181 85.5385126 142.175202 83.1303576 143.984565 5.21741581 143.984565 2.85966936 142.750318 1.09613307 140.017181 1.09613307 114.139252 10.9193128 84.9649087 14.372682 79.2866885"
|
|
41
|
+
/>
|
|
42
|
+
<rect class="rectangle air-purifier_off_lgrey" fill="#e0e0e0" x="46" y="84" width="17" height="5" />
|
|
43
|
+
<rect class="rectangle air-purifier_off_lgrey" fill="#e0e0e0" x="46" y="94" width="20" height="5" />
|
|
44
|
+
<rect class="rectangle air-purifier_off_lgrey" fill="#e0e0e0" x="46" y="103" width="22" height="5" />
|
|
45
|
+
<rect class="rectangle air-purifier_off_lgrey" fill="#e0e0e0" x="20" y="103" width="22" height="5" />
|
|
46
|
+
<rect class="rectangle air-purifier_off_lgrey" fill="#e0e0e0" x="22" y="94" width="20" height="5" />
|
|
47
|
+
<rect class="rectangle air-purifier_off_lgrey" fill="#e0e0e0" x="25" y="84" width="17" height="5" />
|
|
48
|
+
</g>
|
|
49
|
+
</g>
|
|
50
|
+
</svg>
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
|
|
2
|
+
<svg
|
|
3
|
+
width="32px"
|
|
4
|
+
height="32px"
|
|
5
|
+
viewBox="0 0 32 32"
|
|
6
|
+
version="1.1"
|
|
7
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
8
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
9
|
+
xmlns:sketch="http://www.bohemiancoding.com/sketch/ns"
|
|
10
|
+
>
|
|
11
|
+
<!-- Generator: Sketch 3.3.2 (12043) - http://www.bohemiancoding.com/sketch -->
|
|
12
|
+
<title>houseplant</title>
|
|
13
|
+
<desc>Created with Sketch.</desc>
|
|
14
|
+
<defs />
|
|
15
|
+
<g id="flatten" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
|
|
16
|
+
<g id="z-copy" sketch:type="MSArtboardGroup" transform="translate(-100.000000, -100.000000)" fill="#000000">
|
|
17
|
+
<g id="accessoryIcon" sketch:type="MSLayerGroup" transform="translate(100.000000, 100.000000)">
|
|
18
|
+
<path
|
|
19
|
+
d="M10.1435881,25.4905179 C10.286009,26.7050605 10.531254,27.9706077 10.8919121,29.2887103 C6.25942062,27.4175104 3.57173247,24.180341 2.39781526,19.889403 C1.54190101,16.760839 1.56931096,13.3702525 2.13724518,10.1783222 C2.1501971,10.1055292 2.17646546,9.96330988 2.17646546,9.96330988 C2.17646546,9.96330988 2.33770347,10.0208429 2.92620872,10.2769757 C4.60998953,11.0098007 6.29364519,11.9318703 7.85704035,13.0517448 C9.19214306,14.0080913 10.3087445,15.0188915 11.223018,16.0899229 L11.223018,16.0899229 C10.426841,18.1910249 9.96797687,20.5297906 9.99206994,23.1241613 L5.43414987,14.7605739 C5.30203551,14.5181498 4.99858593,14.4288208 4.75637627,14.5610522 C4.51416661,14.6932836 4.42491674,14.9970019 4.5570311,15.2394261 L10.1435881,25.4905179 L10.1435881,25.4905179 Z M13.0333542,29.4136738 C10.9912074,19.9059085 11.088992,14.922477 21.5133004,6.73565972 C23.6127007,5.0868782 25.9746706,4.01306759 28.2881453,3.03596757 C29.0967374,2.69445726 29.3182746,2.61774651 29.3182746,2.61774651 C29.3182746,2.61774651 29.3543667,2.80737221 29.3721623,2.90442957 C30.1524904,7.1603367 30.190151,11.6811187 29.0141452,15.8525373 C27.1508473,22.4618551 22.5118613,27.1961122 14.1841552,29.413553 L25.4116309,9.74806947 C25.5485147,9.50831075 25.46529,9.20288341 25.2257434,9.06587843 C24.9861969,8.92887344 24.6810398,9.01217181 24.544156,9.25193053 L13.0333542,29.4136738 L13.0333542,29.4136738 L13.0333542,29.4136738 Z M13.4880693,32 C38.9655056,25.5 30.755735,0 30.755735,0 C30.755735,0 17.0308715,3.72274828 11.9893965,14.5 C7.99293593,9 0.873098889,8 0.873098889,8 C-3.99644586,30.5 13.4880693,32 13.4880693,32 Z"
|
|
20
|
+
sketch:type="MSShapeGroup"
|
|
21
|
+
/>
|
|
22
|
+
</g>
|
|
23
|
+
</g>
|
|
24
|
+
</g>
|
|
25
|
+
</svg>
|