homebridge-config-ui-x 5.0.0-beta.8 → 5.0.0-beta.80
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 +412 -31
- package/CONTRIBUTING.md +5 -4
- package/LICENSE +1 -1
- package/config.schema.json +35 -145
- package/dist/bin/hb-service.d.ts +2 -2
- package/dist/bin/hb-service.js +51 -50
- package/dist/bin/hb-service.js.map +1 -1
- package/dist/bin/platforms/darwin.js +2 -2
- 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 +3 -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 +8 -10
- package/dist/core/config/config.service.js +24 -19
- 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 +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 +8 -7
- 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 +19 -79
- 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 +62 -64
- 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.js +4 -4
- package/dist/modules/plugins/plugins.controller.js.map +1 -1
- package/dist/modules/plugins/plugins.service.d.ts +4 -1
- package/dist/modules/plugins/plugins.service.js +168 -103
- package/dist/modules/plugins/plugins.service.js.map +1 -1
- package/dist/modules/server/server.controller.d.ts +28 -3
- package/dist/modules/server/server.controller.js +137 -20
- package/dist/modules/server/server.controller.js.map +1 -1
- package/dist/modules/server/server.service.d.ts +27 -6
- package/dist/modules/server/server.service.js +212 -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 +45 -43
- package/public/3rdpartylicenses.txt +145 -62
- package/public/assets/hap-icons/airpurifier.svg +49 -16
- package/public/assets/hap-icons/airquality.svg +24 -13
- package/public/assets/hap-icons/co-sensor.svg +72 -0
- package/public/assets/hap-icons/co2-sensor.svg +72 -0
- 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/assets/plugin-ui-utils/ui.js +3 -0
- package/public/assets/plugin-ui-utils/ui.js.map +1 -1
- package/public/chunk-2MYRJGR7.js +1 -0
- package/public/chunk-2NP34GCU.js +1 -0
- package/public/chunk-2SEP7Q76.js +1 -0
- package/public/chunk-2XJKHKFE.js +1 -0
- package/public/{chunk-TSZZQKYF.js → chunk-3HVSWJGA.js} +1 -1
- package/public/chunk-3K6CPW2T.js +1 -0
- package/public/chunk-3OWDRYG5.js +1 -0
- package/public/chunk-3QMP7C7O.js +1 -0
- package/public/chunk-3X66PNLW.js +1 -0
- package/public/chunk-445PQ2P2.js +8 -0
- package/public/chunk-4HTVG6XH.js +1 -0
- package/public/chunk-4QBTHI5Q.js +1 -0
- package/public/chunk-4SITUFK3.js +1 -0
- package/public/chunk-54QYQEAD.js +1 -0
- package/public/chunk-5SC4EBWO.js +1 -0
- package/public/chunk-6IGIONL7.js +1 -0
- package/public/{chunk-CCUID66K.js → chunk-6US6MXBM.js} +1 -1
- package/public/{chunk-YRSHLHYL.js → chunk-7FQYPAKD.js} +1 -1
- package/public/{chunk-EA5J2VEJ.js → chunk-7VVMNL54.js} +1 -1
- package/public/chunk-ACC3X2QL.js +1 -0
- package/public/{chunk-QE7DO6J3.js → chunk-ADC7QO6N.js} +2 -2
- package/public/chunk-B33VSPLX.js +1 -0
- package/public/chunk-B3TGAR7U.js +1 -0
- package/public/{chunk-7EUQWCP5.js → chunk-BVWBB74Y.js} +2 -2
- package/public/chunk-BZFYWBTW.js +1 -0
- package/public/chunk-CTGG2N5W.js +1 -0
- package/public/{chunk-WNWWUCCZ.js → chunk-EGECSH4K.js} +3 -3
- package/public/chunk-EJSCHXQP.js +1 -0
- package/public/chunk-EKQQOHAO.js +1 -0
- package/public/chunk-EN4G5WDM.js +1 -0
- package/public/chunk-EP2OCKBU.js +23 -0
- package/public/chunk-F344PI26.js +1 -0
- package/public/chunk-F75NHZPV.js +1 -0
- package/public/chunk-FNQHOMAL.js +1 -0
- package/public/chunk-FPWMFOIM.js +1 -0
- package/public/chunk-FQEUOMOT.js +1 -0
- package/public/chunk-G4AG4KBE.js +8 -0
- package/public/{chunk-6TCHCTXZ.js → chunk-GN7IXG4L.js} +1 -1
- package/public/chunk-GT2LNBEY.js +1 -0
- package/public/{chunk-D2D564LE.js → chunk-HBJGGRMZ.js} +1 -1
- package/public/chunk-HSXNAMNE.js +1 -0
- package/public/chunk-HUAZZUOC.js +1 -0
- package/public/chunk-HWJ734TY.js +1 -0
- package/public/chunk-HYVILCZ3.js +1 -0
- package/public/{chunk-TZS4WGUK.js → chunk-IJMKQW7N.js} +2 -2
- package/public/chunk-IMRTROQL.js +5 -0
- package/public/chunk-IO42DXYQ.js +1 -0
- package/public/chunk-IR54FWV7.js +1 -0
- package/public/chunk-JNCCO635.js +1 -0
- package/public/chunk-KVYFQZYX.js +1 -0
- package/public/chunk-KXMDTAIL.js +1 -0
- package/public/chunk-LEMXCMWD.js +1 -0
- package/public/chunk-LERVFGN7.js +1 -0
- package/public/chunk-MZFFFGFF.js +1 -0
- package/public/chunk-OL67GREO.js +20 -0
- package/public/chunk-P77NBQ5S.js +1 -0
- package/public/chunk-PAZ5V5TQ.js +7 -0
- package/public/chunk-QAQ62ONT.js +1 -0
- package/public/chunk-R7USDODC.js +6 -0
- package/public/chunk-RMMQMQZX.js +1 -0
- package/public/chunk-RQA2H3J6.js +1 -0
- package/public/chunk-RWGSYTLA.js +1 -0
- package/public/chunk-SKVHW32E.js +5 -0
- package/public/chunk-SPEAMV6F.js +1 -0
- package/public/chunk-SZ7POXBO.js +1 -0
- package/public/chunk-TEOCKMP5.js +1 -0
- package/public/chunk-TIXTDDTD.js +7 -0
- package/public/chunk-TL6WL7LY.js +1 -0
- package/public/chunk-TP425OA6.js +1 -0
- package/public/chunk-TRU4JZBU.js +1 -0
- package/public/chunk-USOUWLNH.js +2 -0
- package/public/chunk-UU4EF2TV.js +1 -0
- package/public/chunk-VET5PSBE.js +1 -0
- package/public/chunk-VNVPPHQC.js +1 -0
- package/public/chunk-WE636KC4.js +1 -0
- package/public/chunk-WMYOYBHH.js +1 -0
- package/public/chunk-XTMNJE4B.js +14 -0
- package/public/chunk-XYNYGSDZ.js +1 -0
- package/public/chunk-Z6KIOLK5.js +29 -0
- package/public/{chunk-JZZQRLNW.js → chunk-ZA436JJP.js} +1 -1
- package/public/chunk-ZE6VD7AX.js +1 -0
- package/public/chunk-ZZ24726L.js +1 -0
- package/public/index.html +2 -2
- package/public/main-C6DWCUSO.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-4F4B5XMZ.js +2 -0
- package/public/styles-PGYQLREL.css +1 -0
- package/scripts/upgrade-install-plugin.sh +1 -1
- package/public/chunk-32ZJLZS4.js +0 -1
- package/public/chunk-34G5YV5T.js +0 -1
- package/public/chunk-37PRYZH6.js +0 -1
- package/public/chunk-3IX3CLER.js +0 -1
- package/public/chunk-3NB33IBB.js +0 -1
- package/public/chunk-5ABW4ZKF.js +0 -20
- package/public/chunk-5KSPDTFH.js +0 -1
- package/public/chunk-5OHKMFXO.js +0 -1
- package/public/chunk-656LQTVE.js +0 -14
- package/public/chunk-7T234PWV.js +0 -1
- package/public/chunk-AZC7XCGC.js +0 -1
- package/public/chunk-BKUGARB4.js +0 -7
- package/public/chunk-BPMSJ2VF.js +0 -1
- package/public/chunk-BY2TSVEY.js +0 -1
- package/public/chunk-C7QJOHXE.js +0 -1
- package/public/chunk-CKR46AVL.js +0 -1
- package/public/chunk-DLMGGPRM.js +0 -1
- package/public/chunk-DXZ6DCYP.js +0 -1
- package/public/chunk-EP66JAAV.js +0 -1
- package/public/chunk-FJF4WNUO.js +0 -1
- package/public/chunk-FQYNC4RH.js +0 -1
- package/public/chunk-HHG6WMVF.js +0 -1
- package/public/chunk-HHIHVUCL.js +0 -1
- package/public/chunk-HSJSWZHD.js +0 -1
- package/public/chunk-II2UAWC2.js +0 -6
- package/public/chunk-IMOTYOKQ.js +0 -8
- package/public/chunk-JDQ5PHOU.js +0 -1
- package/public/chunk-KG3DHJZY.js +0 -1
- package/public/chunk-KQJ7ONUG.js +0 -1
- package/public/chunk-LLGTFHIT.js +0 -1
- package/public/chunk-M346UY2G.js +0 -1
- package/public/chunk-MNBUOV7P.js +0 -1
- package/public/chunk-NI664X6I.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-P5FZV27L.js +0 -1
- package/public/chunk-PS4KQKK7.js +0 -1
- package/public/chunk-Q5YFESZW.js +0 -1
- package/public/chunk-QAEUHAL6.js +0 -1
- package/public/chunk-QBDPVXMM.js +0 -1
- package/public/chunk-QHPDGSZ6.js +0 -1
- package/public/chunk-QJYLB6LD.js +0 -1
- package/public/chunk-R2W5BRWY.js +0 -32
- package/public/chunk-RIN5QMTV.js +0 -1
- package/public/chunk-RKC5OBYP.js +0 -1
- package/public/chunk-RT7V3UYQ.js +0 -5
- package/public/chunk-SCR7PUV7.js +0 -1
- package/public/chunk-SOEXENDP.js +0 -1
- package/public/chunk-TCSXGQNF.js +0 -1
- package/public/chunk-TH2G22O2.js +0 -23
- package/public/chunk-TMD6JYTR.js +0 -1
- package/public/chunk-TO5O6L7A.js +0 -1
- package/public/chunk-TXOB7R5K.js +0 -7
- package/public/chunk-UG5DK2RQ.js +0 -2
- package/public/chunk-UYLV5ENO.js +0 -1
- package/public/chunk-VPSLX47Z.js +0 -1
- package/public/chunk-VVGJ5MFU.js +0 -1
- package/public/chunk-WAUGELUM.js +0 -1
- package/public/chunk-WHJOLAED.js +0 -1
- package/public/chunk-WHJSVGC7.js +0 -1
- package/public/chunk-WXTR3AXD.js +0 -1
- package/public/chunk-X2AWRY46.js +0 -1
- package/public/chunk-X3GZMTJ5.js +0 -1
- package/public/chunk-X7YNKLZW.js +0 -1
- package/public/chunk-XRPL3VU7.js +0 -1
- package/public/chunk-Y3RRGTUL.js +0 -1
- package/public/chunk-YD5MPMXA.js +0 -1
- package/public/chunk-YJB6Y76M.js +0 -1
- package/public/chunk-ZT23DWNL.js +0 -1
- package/public/main-35ZSDHG6.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,6 +181,32 @@ 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"
|
|
@@ -358,12 +384,12 @@ License: "MIT"
|
|
|
358
384
|
|
|
359
385
|
|
|
360
386
|
--------------------------------------------------------------------------------
|
|
361
|
-
Package:
|
|
387
|
+
Package: ng-inline-svg-2
|
|
362
388
|
License: "MIT"
|
|
363
389
|
|
|
364
|
-
MIT License
|
|
390
|
+
The MIT License (MIT)
|
|
365
391
|
|
|
366
|
-
Copyright (c)
|
|
392
|
+
Copyright (c) 2016 Eugene Cheung
|
|
367
393
|
|
|
368
394
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
369
395
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -372,24 +398,24 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
372
398
|
copies of the Software, and to permit persons to whom the Software is
|
|
373
399
|
furnished to do so, subject to the following conditions:
|
|
374
400
|
|
|
375
|
-
The above copyright notice and this permission notice shall be included in
|
|
376
|
-
copies or substantial portions of the Software.
|
|
401
|
+
The above copyright notice and this permission notice shall be included in
|
|
402
|
+
all copies or substantial portions of the Software.
|
|
377
403
|
|
|
378
404
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
379
405
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
380
406
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
381
407
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
382
408
|
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
|
|
384
|
-
SOFTWARE.
|
|
409
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
410
|
+
THE SOFTWARE.
|
|
385
411
|
|
|
386
412
|
--------------------------------------------------------------------------------
|
|
387
|
-
Package:
|
|
413
|
+
Package: nouislider
|
|
388
414
|
License: "MIT"
|
|
389
415
|
|
|
390
416
|
MIT License
|
|
391
417
|
|
|
392
|
-
Copyright (c)
|
|
418
|
+
Copyright (c) 2019 Léon Gersen
|
|
393
419
|
|
|
394
420
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
395
421
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -410,12 +436,12 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
410
436
|
SOFTWARE.
|
|
411
437
|
|
|
412
438
|
--------------------------------------------------------------------------------
|
|
413
|
-
Package:
|
|
439
|
+
Package: ng2-nouislider
|
|
414
440
|
License: "MIT"
|
|
415
441
|
|
|
416
|
-
|
|
442
|
+
MIT License
|
|
417
443
|
|
|
418
|
-
Copyright (c)
|
|
444
|
+
Copyright (c) 2017-2019 Tomasz Bak https://www.tomaszbak.com/
|
|
419
445
|
|
|
420
446
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
421
447
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -424,16 +450,16 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
424
450
|
copies of the Software, and to permit persons to whom the Software is
|
|
425
451
|
furnished to do so, subject to the following conditions:
|
|
426
452
|
|
|
427
|
-
The above copyright notice and this permission notice shall be included in
|
|
428
|
-
|
|
453
|
+
The above copyright notice and this permission notice shall be included in all
|
|
454
|
+
copies or substantial portions of the Software.
|
|
429
455
|
|
|
430
456
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
431
457
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
432
458
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
433
459
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
434
460
|
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
|
-
|
|
461
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
462
|
+
SOFTWARE.
|
|
437
463
|
|
|
438
464
|
--------------------------------------------------------------------------------
|
|
439
465
|
Package: ajv
|
|
@@ -548,6 +574,32 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
548
574
|
|
|
549
575
|
The complete list of contributors can be found at:
|
|
550
576
|
- https://github.com/garycourt/uri-js/graphs/contributors
|
|
577
|
+
--------------------------------------------------------------------------------
|
|
578
|
+
Package: ajv-keywords
|
|
579
|
+
License: "MIT"
|
|
580
|
+
|
|
581
|
+
The MIT License (MIT)
|
|
582
|
+
|
|
583
|
+
Copyright (c) 2016 Evgeny Poberezkin
|
|
584
|
+
|
|
585
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
586
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
587
|
+
in the Software without restriction, including without limitation the rights
|
|
588
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
589
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
590
|
+
furnished to do so, subject to the following conditions:
|
|
591
|
+
|
|
592
|
+
The above copyright notice and this permission notice shall be included in all
|
|
593
|
+
copies or substantial portions of the Software.
|
|
594
|
+
|
|
595
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
596
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
597
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
598
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
599
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
600
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
601
|
+
SOFTWARE.
|
|
602
|
+
|
|
551
603
|
--------------------------------------------------------------------------------
|
|
552
604
|
Package: emoji-js
|
|
553
605
|
License: "MIT"
|
|
@@ -600,6 +652,37 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
600
652
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
601
653
|
SOFTWARE.
|
|
602
654
|
|
|
655
|
+
--------------------------------------------------------------------------------
|
|
656
|
+
Package: sortablejs
|
|
657
|
+
License: "MIT"
|
|
658
|
+
|
|
659
|
+
MIT License
|
|
660
|
+
|
|
661
|
+
Copyright (c) 2019 All contributors to Sortable
|
|
662
|
+
|
|
663
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
664
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
665
|
+
in the Software without restriction, including without limitation the rights
|
|
666
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
667
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
668
|
+
furnished to do so, subject to the following conditions:
|
|
669
|
+
|
|
670
|
+
The above copyright notice and this permission notice shall be included in all
|
|
671
|
+
copies or substantial portions of the Software.
|
|
672
|
+
|
|
673
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
674
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
675
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
676
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
677
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
678
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
679
|
+
SOFTWARE.
|
|
680
|
+
|
|
681
|
+
--------------------------------------------------------------------------------
|
|
682
|
+
Package: nxt-sortablejs
|
|
683
|
+
License: "MIT"
|
|
684
|
+
|
|
685
|
+
|
|
603
686
|
--------------------------------------------------------------------------------
|
|
604
687
|
Package: lodash-es
|
|
605
688
|
License: "MIT"
|
|
@@ -785,21 +868,30 @@ License: "MIT"
|
|
|
785
868
|
|
|
786
869
|
|
|
787
870
|
--------------------------------------------------------------------------------
|
|
788
|
-
Package:
|
|
871
|
+
Package: mobile-detect
|
|
789
872
|
License: "MIT"
|
|
790
873
|
|
|
791
|
-
The MIT License
|
|
792
|
-
|
|
793
|
-
Copyright © 2016 [Eli Grey][1].
|
|
794
|
-
|
|
795
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
874
|
+
The MIT License (MIT)
|
|
796
875
|
|
|
797
|
-
|
|
876
|
+
Copyright (c) 2013 Heinrich Goebl
|
|
798
877
|
|
|
799
|
-
|
|
878
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
879
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
880
|
+
in the Software without restriction, including without limitation the rights
|
|
881
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
882
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
883
|
+
furnished to do so, subject to the following conditions:
|
|
800
884
|
|
|
801
|
-
|
|
885
|
+
The above copyright notice and this permission notice shall be included in
|
|
886
|
+
all copies or substantial portions of the Software.
|
|
802
887
|
|
|
888
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
889
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
890
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
891
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
892
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
893
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
894
|
+
THE SOFTWARE.
|
|
803
895
|
--------------------------------------------------------------------------------
|
|
804
896
|
Package: xterm-addon-web-links
|
|
805
897
|
License: "MIT"
|
|
@@ -853,6 +945,22 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
853
945
|
THE SOFTWARE.
|
|
854
946
|
```
|
|
855
947
|
|
|
948
|
+
--------------------------------------------------------------------------------
|
|
949
|
+
Package: file-saver
|
|
950
|
+
License: "MIT"
|
|
951
|
+
|
|
952
|
+
The MIT License
|
|
953
|
+
|
|
954
|
+
Copyright © 2016 [Eli Grey][1].
|
|
955
|
+
|
|
956
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
957
|
+
|
|
958
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
959
|
+
|
|
960
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
961
|
+
|
|
962
|
+
[1]: http://eligrey.com
|
|
963
|
+
|
|
856
964
|
--------------------------------------------------------------------------------
|
|
857
965
|
Package: xterm
|
|
858
966
|
License: "MIT"
|
|
@@ -923,38 +1031,13 @@ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
923
1031
|
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
|
924
1032
|
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
925
1033
|
|
|
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
1034
|
--------------------------------------------------------------------------------
|
|
952
1035
|
Package: @angular/core
|
|
953
1036
|
License: "MIT"
|
|
954
1037
|
|
|
955
1038
|
The MIT License
|
|
956
1039
|
|
|
957
|
-
Copyright (c) 2010-
|
|
1040
|
+
Copyright (c) 2010-2025 Google LLC. https://angular.dev/license
|
|
958
1041
|
|
|
959
1042
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
960
1043
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -1031,7 +1114,7 @@ License: "MIT"
|
|
|
1031
1114
|
|
|
1032
1115
|
The MIT License
|
|
1033
1116
|
|
|
1034
|
-
Copyright (c) 2010-
|
|
1117
|
+
Copyright (c) 2010-2025 Google LLC. https://angular.dev/license
|
|
1035
1118
|
|
|
1036
1119
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1037
1120
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -1189,7 +1272,7 @@ License: "MIT"
|
|
|
1189
1272
|
|
|
1190
1273
|
The MIT License
|
|
1191
1274
|
|
|
1192
|
-
Copyright (c) 2010-
|
|
1275
|
+
Copyright (c) 2010-2025 Google LLC. https://angular.dev/license
|
|
1193
1276
|
|
|
1194
1277
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1195
1278
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -1529,7 +1612,7 @@ License: "MIT"
|
|
|
1529
1612
|
|
|
1530
1613
|
The MIT License
|
|
1531
1614
|
|
|
1532
|
-
Copyright (c) 2010-
|
|
1615
|
+
Copyright (c) 2010-2025 Google LLC. https://angular.dev/license
|
|
1533
1616
|
|
|
1534
1617
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1535
1618
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -1555,7 +1638,7 @@ License: "MIT"
|
|
|
1555
1638
|
|
|
1556
1639
|
The MIT License
|
|
1557
1640
|
|
|
1558
|
-
Copyright (c) 2010-
|
|
1641
|
+
Copyright (c) 2010-2025 Google LLC. https://angular.dev/license
|
|
1559
1642
|
|
|
1560
1643
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1561
1644
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -1,17 +1,50 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<svg
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
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="airpurifier" 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="airpurifier_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="airpurifier_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="airpurifier_off_grey"
|
|
32
|
+
stroke="#C8EAFE"
|
|
33
|
+
stroke-width="10"
|
|
34
|
+
stroke-linecap="square"
|
|
35
|
+
/>
|
|
36
|
+
<polygon
|
|
37
|
+
id="Path"
|
|
38
|
+
class="airpurifier_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 id="Rectangle" class="airpurifier_off_lgrey" fill="#454545" x="46" y="84" width="17" height="5" />
|
|
43
|
+
<rect id="Rectangle" class="airpurifier_off_lgrey" fill="#454545" x="46" y="94" width="20" height="5" />
|
|
44
|
+
<rect id="Rectangle" class="airpurifier_off_lgrey" fill="#454545" x="46" y="103" width="22" height="5" />
|
|
45
|
+
<rect id="Rectangle" class="airpurifier_off_lgrey" fill="#454545" x="20" y="103" width="22" height="5" />
|
|
46
|
+
<rect id="Rectangle" class="airpurifier_off_lgrey" fill="#454545" x="22" y="94" width="20" height="5" />
|
|
47
|
+
<rect id="Rectangle" class="airpurifier_off_lgrey" fill="#454545" x="25" y="84" width="17" height="5" />
|
|
16
48
|
</g>
|
|
17
|
-
</
|
|
49
|
+
</g>
|
|
50
|
+
</svg>
|
|
@@ -1,14 +1,25 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
-
<svg
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
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>
|
|
13
23
|
</g>
|
|
14
|
-
</
|
|
24
|
+
</g>
|
|
25
|
+
</svg>
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
6
|
+
version="1.1"
|
|
7
|
+
width="500"
|
|
8
|
+
height="500"
|
|
9
|
+
viewBox="0 0 500 500"
|
|
10
|
+
xml:space="preserve"
|
|
11
|
+
>
|
|
12
|
+
<desc>CO Sensor with Spaced, Wide, Thick Cyan Wavy Lines</desc>
|
|
13
|
+
<defs />
|
|
14
|
+
<!-- Sensor Housing -->
|
|
15
|
+
<g transform="matrix(1 0 0 1 250 125)" opacity="1" fill="#3daeff" fill-opacity="1" class="smoke_sensor_box">
|
|
16
|
+
<path
|
|
17
|
+
style="stroke: none; fill-rule: nonzero; opacity: 1;"
|
|
18
|
+
vector-effect="non-scaling-stroke"
|
|
19
|
+
transform=" translate(-222.5, -100)"
|
|
20
|
+
d="M 0 0 L 445 0 L 445 124.6137 L 402.96864 124.6137 L 350.9804 200 L 88.48046 200 L 36.492219999999996 124.6137 L 0.0011099999999970578 124.6137 z M 94.73049 185.04636 L 149.73026 185.04636 L 149.73026 130.21633 L 94.73048999999999 130.21633 z M 289.72949 184.04945 L 343.72913 184.04945 L 343.72913 130.21633 L 289.72949 130.21633 z M 224.72945 185.04636 L 279.72922 185.04636 L 279.72922 130.21633 L 224.72944999999999 130.21633 z M 159.73052 185.04636 L 214.73029000000002 185.04636 L 214.73029000000002 130.21633 L 159.73052 130.21633 z"
|
|
21
|
+
/>
|
|
22
|
+
</g>
|
|
23
|
+
|
|
24
|
+
<!-- Centered CO Label -->
|
|
25
|
+
<g transform="matrix(1 0 0 1 250 100)" fill="#ffffff" class="label-text">
|
|
26
|
+
<text
|
|
27
|
+
text-anchor="middle"
|
|
28
|
+
dominant-baseline="middle"
|
|
29
|
+
font-family="Arial"
|
|
30
|
+
font-size="100"
|
|
31
|
+
font-weight="bold"
|
|
32
|
+
x="0"
|
|
33
|
+
y="0"
|
|
34
|
+
>
|
|
35
|
+
CO
|
|
36
|
+
</text>
|
|
37
|
+
</g>
|
|
38
|
+
|
|
39
|
+
<!-- Cyan Wavy Lines -->
|
|
40
|
+
<!-- Top Wave (narrowest) -->
|
|
41
|
+
<g
|
|
42
|
+
transform="matrix(1 0 0 1 250 268)"
|
|
43
|
+
fill="none"
|
|
44
|
+
stroke="#00cfd6"
|
|
45
|
+
stroke-width="15"
|
|
46
|
+
class="smoke_sensor_trigger_lines"
|
|
47
|
+
>
|
|
48
|
+
<path d="M -50 0 Q -40 10 -30 0 Q -20 -10 -10 0 Q 0 10 10 0 Q 20 -10 30 0 Q 40 10 50 0" />
|
|
49
|
+
</g>
|
|
50
|
+
|
|
51
|
+
<!-- Middle Wave (wider) -->
|
|
52
|
+
<g
|
|
53
|
+
transform="matrix(1 0 0 1 250 318)"
|
|
54
|
+
fill="none"
|
|
55
|
+
stroke="#00cfd6"
|
|
56
|
+
stroke-width="15"
|
|
57
|
+
class="smoke_sensor_trigger_lines"
|
|
58
|
+
>
|
|
59
|
+
<path d="M -65 0 Q -52 12 -39 0 Q -26 -12 -13 0 Q 0 12 13 0 Q 26 -12 39 0 Q 52 12 65 0" />
|
|
60
|
+
</g>
|
|
61
|
+
|
|
62
|
+
<!-- Bottom Wave (widest) -->
|
|
63
|
+
<g
|
|
64
|
+
transform="matrix(1 0 0 1 250 368)"
|
|
65
|
+
fill="none"
|
|
66
|
+
stroke="#00cfd6"
|
|
67
|
+
stroke-width="15"
|
|
68
|
+
class="smoke_sensor_trigger_lines"
|
|
69
|
+
>
|
|
70
|
+
<path d="M -80 0 Q -64 14 -48 0 Q -32 -14 -16 0 Q 0 14 16 0 Q 32 -14 48 0 Q 64 14 80 0" />
|
|
71
|
+
</g>
|
|
72
|
+
</svg>
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
6
|
+
version="1.1"
|
|
7
|
+
width="500"
|
|
8
|
+
height="500"
|
|
9
|
+
viewBox="0 0 500 500"
|
|
10
|
+
xml:space="preserve"
|
|
11
|
+
>
|
|
12
|
+
<desc>CO Sensor with Spaced, Wide, Thick Cyan Wavy Lines</desc>
|
|
13
|
+
<defs />
|
|
14
|
+
<!-- Sensor Housing -->
|
|
15
|
+
<g transform="matrix(1 0 0 1 250 125)" opacity="1" fill="#3daeff" fill-opacity="1" class="smoke_sensor_box">
|
|
16
|
+
<path
|
|
17
|
+
style="stroke: none; fill-rule: nonzero; opacity: 1;"
|
|
18
|
+
vector-effect="non-scaling-stroke"
|
|
19
|
+
transform=" translate(-222.5, -100)"
|
|
20
|
+
d="M 0 0 L 445 0 L 445 124.6137 L 402.96864 124.6137 L 350.9804 200 L 88.48046 200 L 36.492219999999996 124.6137 L 0.0011099999999970578 124.6137 z M 94.73049 185.04636 L 149.73026 185.04636 L 149.73026 130.21633 L 94.73048999999999 130.21633 z M 289.72949 184.04945 L 343.72913 184.04945 L 343.72913 130.21633 L 289.72949 130.21633 z M 224.72945 185.04636 L 279.72922 185.04636 L 279.72922 130.21633 L 224.72944999999999 130.21633 z M 159.73052 185.04636 L 214.73029000000002 185.04636 L 214.73029000000002 130.21633 L 159.73052 130.21633 z"
|
|
21
|
+
/>
|
|
22
|
+
</g>
|
|
23
|
+
|
|
24
|
+
<!-- Centered CO Label -->
|
|
25
|
+
<g transform="matrix(1 0 0 1 250 100)" fill="#ffffff" class="label-text">
|
|
26
|
+
<text
|
|
27
|
+
text-anchor="middle"
|
|
28
|
+
dominant-baseline="middle"
|
|
29
|
+
font-family="Arial"
|
|
30
|
+
font-size="100"
|
|
31
|
+
font-weight="bold"
|
|
32
|
+
x="0"
|
|
33
|
+
y="0"
|
|
34
|
+
>
|
|
35
|
+
CO2
|
|
36
|
+
</text>
|
|
37
|
+
</g>
|
|
38
|
+
|
|
39
|
+
<!-- Cyan Wavy Lines -->
|
|
40
|
+
<!-- Top Wave (narrowest) -->
|
|
41
|
+
<g
|
|
42
|
+
transform="matrix(1 0 0 1 250 268)"
|
|
43
|
+
fill="none"
|
|
44
|
+
stroke="#00cfd6"
|
|
45
|
+
stroke-width="15"
|
|
46
|
+
class="smoke_sensor_trigger_lines"
|
|
47
|
+
>
|
|
48
|
+
<path d="M -50 0 Q -40 10 -30 0 Q -20 -10 -10 0 Q 0 10 10 0 Q 20 -10 30 0 Q 40 10 50 0" />
|
|
49
|
+
</g>
|
|
50
|
+
|
|
51
|
+
<!-- Middle Wave (wider) -->
|
|
52
|
+
<g
|
|
53
|
+
transform="matrix(1 0 0 1 250 318)"
|
|
54
|
+
fill="none"
|
|
55
|
+
stroke="#00cfd6"
|
|
56
|
+
stroke-width="15"
|
|
57
|
+
class="smoke_sensor_trigger_lines"
|
|
58
|
+
>
|
|
59
|
+
<path d="M -65 0 Q -52 12 -39 0 Q -26 -12 -13 0 Q 0 12 13 0 Q 26 -12 39 0 Q 52 12 65 0" />
|
|
60
|
+
</g>
|
|
61
|
+
|
|
62
|
+
<!-- Bottom Wave (widest) -->
|
|
63
|
+
<g
|
|
64
|
+
transform="matrix(1 0 0 1 250 368)"
|
|
65
|
+
fill="none"
|
|
66
|
+
stroke="#00cfd6"
|
|
67
|
+
stroke-width="15"
|
|
68
|
+
class="smoke_sensor_trigger_lines"
|
|
69
|
+
>
|
|
70
|
+
<path d="M -80 0 Q -64 14 -48 0 Q -32 -14 -16 0 Q 0 14 16 0 Q 32 -14 48 0 Q 64 14 80 0" />
|
|
71
|
+
</g>
|
|
72
|
+
</svg>
|