homebridge-config-ui-x 5.0.0-beta.7 → 5.0.0-beta.70

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (317) hide show
  1. package/CHANGELOG.md +405 -31
  2. package/CONTRIBUTING.md +5 -4
  3. package/LICENSE +1 -1
  4. package/config.schema.json +34 -144
  5. package/dist/bin/hb-service.d.ts +2 -2
  6. package/dist/bin/hb-service.js +51 -50
  7. package/dist/bin/hb-service.js.map +1 -1
  8. package/dist/bin/platforms/darwin.js +2 -2
  9. package/dist/bin/platforms/darwin.js.map +1 -1
  10. package/dist/bin/platforms/win32.js +4 -2
  11. package/dist/bin/platforms/win32.js.map +1 -1
  12. package/dist/bin/standalone.js +1 -0
  13. package/dist/bin/standalone.js.map +1 -1
  14. package/dist/core/auth/auth.controller.d.ts +2 -2
  15. package/dist/core/auth/auth.controller.js.map +1 -1
  16. package/dist/core/auth/auth.module.js +1 -1
  17. package/dist/core/auth/auth.module.js.map +1 -1
  18. package/dist/core/auth/auth.service.js +10 -10
  19. package/dist/core/auth/auth.service.js.map +1 -1
  20. package/dist/core/auth/jwt.strategy.d.ts +3 -1
  21. package/dist/core/config/config.service.d.ts +4 -6
  22. package/dist/core/config/config.service.js +9 -9
  23. package/dist/core/config/config.service.js.map +1 -1
  24. package/dist/core/config/config.startup.js +2 -2
  25. package/dist/core/config/config.startup.js.map +1 -1
  26. package/dist/core/homebridge-ipc/homebridge-ipc.service.js +3 -3
  27. package/dist/core/homebridge-ipc/homebridge-ipc.service.js.map +1 -1
  28. package/dist/index.js +6 -77
  29. package/dist/index.js.map +1 -1
  30. package/dist/main.js +1 -1
  31. package/dist/main.js.map +1 -1
  32. package/dist/modules/accessories/accessories.controller.js +5 -5
  33. package/dist/modules/accessories/accessories.controller.js.map +1 -1
  34. package/dist/modules/accessories/accessories.service.js +8 -7
  35. package/dist/modules/accessories/accessories.service.js.map +1 -1
  36. package/dist/modules/backup/backup.controller.js +7 -7
  37. package/dist/modules/backup/backup.controller.js.map +1 -1
  38. package/dist/modules/backup/backup.service.js +19 -79
  39. package/dist/modules/backup/backup.service.js.map +1 -1
  40. package/dist/modules/child-bridges/child-bridges.service.js +0 -7
  41. package/dist/modules/child-bridges/child-bridges.service.js.map +1 -1
  42. package/dist/modules/config-editor/config-editor.controller.d.ts +1 -1
  43. package/dist/modules/config-editor/config-editor.controller.js +8 -8
  44. package/dist/modules/config-editor/config-editor.controller.js.map +1 -1
  45. package/dist/modules/config-editor/config-editor.service.d.ts +1 -1
  46. package/dist/modules/config-editor/config-editor.service.js +62 -64
  47. package/dist/modules/config-editor/config-editor.service.js.map +1 -1
  48. package/dist/modules/custom-plugins/plugins-settings-ui/plugins-settings-ui.service.d.ts +1 -1
  49. package/dist/modules/custom-plugins/plugins-settings-ui/plugins-settings-ui.service.js +13 -11
  50. package/dist/modules/custom-plugins/plugins-settings-ui/plugins-settings-ui.service.js.map +1 -1
  51. package/dist/modules/log/log.gateway.d.ts +2 -1
  52. package/dist/modules/log/log.gateway.js.map +1 -1
  53. package/dist/modules/log/log.service.js +3 -3
  54. package/dist/modules/log/log.service.js.map +1 -1
  55. package/dist/modules/platform-tools/docker/docker.controller.js +3 -3
  56. package/dist/modules/platform-tools/docker/docker.controller.js.map +1 -1
  57. package/dist/modules/platform-tools/docker/docker.service.js +1 -1
  58. package/dist/modules/platform-tools/docker/docker.service.js.map +1 -1
  59. package/dist/modules/platform-tools/hb-service/hb-service.controller.js +3 -3
  60. package/dist/modules/platform-tools/hb-service/hb-service.controller.js.map +1 -1
  61. package/dist/modules/platform-tools/hb-service/hb-service.service.js +6 -6
  62. package/dist/modules/platform-tools/hb-service/hb-service.service.js.map +1 -1
  63. package/dist/modules/platform-tools/linux/linux.controller.js +2 -2
  64. package/dist/modules/platform-tools/linux/linux.controller.js.map +1 -1
  65. package/dist/modules/platform-tools/linux/linux.service.js +2 -2
  66. package/dist/modules/platform-tools/linux/linux.service.js.map +1 -1
  67. package/dist/modules/platform-tools/terminal/terminal.gateway.d.ts +2 -1
  68. package/dist/modules/platform-tools/terminal/terminal.gateway.js.map +1 -1
  69. package/dist/modules/platform-tools/terminal/terminal.service.js +2 -2
  70. package/dist/modules/platform-tools/terminal/terminal.service.js.map +1 -1
  71. package/dist/modules/plugins/plugins.controller.js +4 -4
  72. package/dist/modules/plugins/plugins.controller.js.map +1 -1
  73. package/dist/modules/plugins/plugins.service.d.ts +4 -1
  74. package/dist/modules/plugins/plugins.service.js +168 -103
  75. package/dist/modules/plugins/plugins.service.js.map +1 -1
  76. package/dist/modules/server/server.controller.d.ts +22 -2
  77. package/dist/modules/server/server.controller.js +86 -18
  78. package/dist/modules/server/server.controller.js.map +1 -1
  79. package/dist/modules/server/server.service.d.ts +24 -6
  80. package/dist/modules/server/server.service.js +165 -66
  81. package/dist/modules/server/server.service.js.map +1 -1
  82. package/dist/modules/status/status.controller.d.ts +0 -1
  83. package/dist/modules/status/status.controller.js +3 -4
  84. package/dist/modules/status/status.controller.js.map +1 -1
  85. package/dist/modules/status/status.gateway.d.ts +1 -1
  86. package/dist/modules/status/status.service.d.ts +1 -1
  87. package/dist/modules/status/status.service.js +17 -41
  88. package/dist/modules/status/status.service.js.map +1 -1
  89. package/dist/modules/users/users.controller.js +7 -7
  90. package/dist/modules/users/users.controller.js.map +1 -1
  91. package/dist/self-check.js +6 -6
  92. package/dist/self-check.js.map +1 -1
  93. package/package.json +45 -43
  94. package/public/3rdpartylicenses.txt +145 -62
  95. package/public/assets/hap-icons/airpurifier.svg +49 -16
  96. package/public/assets/hap-icons/airquality.svg +24 -13
  97. package/public/assets/hap-icons/co-sensor.svg +72 -0
  98. package/public/assets/hap-icons/co2-sensor.svg +72 -0
  99. package/public/assets/hap-icons/contactsensor-closed.svg +35 -2
  100. package/public/assets/hap-icons/contactsensor-open.svg +80 -2
  101. package/public/assets/hap-icons/door-closed.svg +32 -2
  102. package/public/assets/hap-icons/door-open.svg +48 -2
  103. package/public/assets/hap-icons/fan-off.svg +24 -13
  104. package/public/assets/hap-icons/fan-on.svg +24 -13
  105. package/public/assets/hap-icons/garagedoor.svg +24 -13
  106. package/public/assets/hap-icons/humidity.svg +24 -13
  107. package/public/assets/hap-icons/irrigation-system.svg +47 -18
  108. package/public/assets/hap-icons/leaksensor.svg +52 -2
  109. package/public/assets/hap-icons/light.svg +47 -28
  110. package/public/assets/hap-icons/lightbulb.svg +24 -13
  111. package/public/assets/hap-icons/lock-locked.svg +24 -13
  112. package/public/assets/hap-icons/lock-unlocked.svg +24 -13
  113. package/public/assets/hap-icons/motionsensor.svg +100 -2
  114. package/public/assets/hap-icons/occupancysensor.svg +97 -2
  115. package/public/assets/hap-icons/outlet.svg +24 -13
  116. package/public/assets/hap-icons/securitysystem-active.svg +102 -2
  117. package/public/assets/hap-icons/securitysystem-off.svg +68 -2
  118. package/public/assets/hap-icons/smokesensor.svg +42 -9
  119. package/public/assets/hap-icons/speaker.svg +29 -13
  120. package/public/assets/hap-icons/statelessprogrammableswitch.svg +51 -2
  121. package/public/assets/hap-icons/switch.svg +24 -13
  122. package/public/assets/hap-icons/television.svg +15 -4
  123. package/public/assets/hap-icons/temperature.svg +24 -13
  124. package/public/assets/hap-icons/unknown.svg +24 -13
  125. package/public/assets/hap-icons/valve-generic.svg +27 -16
  126. package/public/assets/hap-icons/valve-irrigation.svg +37 -21
  127. package/public/assets/hap-icons/valve-showerhead.svg +52 -0
  128. package/public/assets/hap-icons/valve-waterfaucet.svg +21 -0
  129. package/public/assets/hap-icons/window-closed.svg +85 -2
  130. package/public/assets/hap-icons/window-open.svg +136 -2
  131. package/public/assets/hap-icons/windowcovering-closed.svg +45 -49
  132. package/public/assets/hap-icons/windowcovering-open.svg +40 -44
  133. package/public/assets/homebridge-color-round.svg +36 -1
  134. package/public/assets/homebridge-logo.svg +11 -1
  135. package/public/assets/mask-icon.svg +5 -1
  136. package/public/{chunk-7EUQWCP5.js → chunk-2FGEOEQD.js} +2 -2
  137. package/public/chunk-2FXBIEFA.js +8 -0
  138. package/public/chunk-2OXWNNKT.js +1 -0
  139. package/public/chunk-2TIYBO73.js +1 -0
  140. package/public/chunk-2TV4AE2B.js +1 -0
  141. package/public/chunk-3C65WELO.js +1 -0
  142. package/public/chunk-3TKE62PU.js +1 -0
  143. package/public/{chunk-WNWWUCCZ.js → chunk-3VIG5M5R.js} +3 -3
  144. package/public/chunk-4NDOCFGG.js +1 -0
  145. package/public/{chunk-6TCHCTXZ.js → chunk-4XCUHCZU.js} +1 -1
  146. package/public/chunk-53GLNOVG.js +1 -0
  147. package/public/chunk-5CVOEJKH.js +1 -0
  148. package/public/chunk-7JPH5SDX.js +1 -0
  149. package/public/chunk-7K64Z2GO.js +1 -0
  150. package/public/chunk-7NH4NVWO.js +1 -0
  151. package/public/chunk-7YEHCGBQ.js +1 -0
  152. package/public/chunk-A6DLVGIC.js +1 -0
  153. package/public/chunk-AKBHSB64.js +1 -0
  154. package/public/chunk-ASBFWS7L.js +2 -0
  155. package/public/chunk-AYAHOPHC.js +1 -0
  156. package/public/chunk-BLCADRP2.js +1 -0
  157. package/public/chunk-BXNSJERZ.js +1 -0
  158. package/public/chunk-C4OILQGQ.js +1 -0
  159. package/public/chunk-C53ZM5K2.js +1 -0
  160. package/public/chunk-CBVDW3UH.js +1 -0
  161. package/public/chunk-CGQJWESO.js +1 -0
  162. package/public/chunk-CL3ZDKJG.js +1 -0
  163. package/public/chunk-CNEG5OIV.js +6 -0
  164. package/public/chunk-CUAJJ6IB.js +1 -0
  165. package/public/chunk-D6HAEAIY.js +1 -0
  166. package/public/chunk-DJKI5XBW.js +1 -0
  167. package/public/chunk-DNSPHPB6.js +1 -0
  168. package/public/{chunk-BVNJ63AC.js → chunk-EIL4KU4D.js} +2 -2
  169. package/public/chunk-ENWIG42Q.js +1 -0
  170. package/public/chunk-F2OGU5FW.js +1 -0
  171. package/public/chunk-F7KMJJSW.js +23 -0
  172. package/public/{chunk-QE7DO6J3.js → chunk-FHMZVMZK.js} +2 -2
  173. package/public/chunk-FTPISXWD.js +1 -0
  174. package/public/chunk-GFELNZRD.js +20 -0
  175. package/public/chunk-H34IWNCG.js +1 -0
  176. package/public/chunk-HT4RSDPG.js +1 -0
  177. package/public/chunk-HWQ3KYIQ.js +1 -0
  178. package/public/chunk-I2L3GMBC.js +1 -0
  179. package/public/chunk-I44OXIOM.js +1 -0
  180. package/public/{chunk-SK5UJRQU.js → chunk-I74DZSHW.js} +1 -1
  181. package/public/chunk-IU44HP4M.js +1 -0
  182. package/public/chunk-JH55PRGX.js +1 -0
  183. package/public/chunk-JMCN2SQV.js +1 -0
  184. package/public/chunk-JOBKDXBH.js +1 -0
  185. package/public/chunk-JXN4RBAX.js +1 -0
  186. package/public/chunk-LTDUXFUG.js +1 -0
  187. package/public/chunk-MNWOLOKA.js +1 -0
  188. package/public/chunk-MUNP54KM.js +1 -0
  189. package/public/chunk-OKGCGHKO.js +32 -0
  190. package/public/chunk-OLCJ3UHM.js +1 -0
  191. package/public/chunk-OR6GW5WP.js +1 -0
  192. package/public/chunk-OYHOVHGM.js +1 -0
  193. package/public/chunk-PCAN2IQ6.js +1 -0
  194. package/public/chunk-PIPVTUBD.js +1 -0
  195. package/public/chunk-PXFCEK22.js +1 -0
  196. package/public/chunk-Q3LSTRCD.js +1 -0
  197. package/public/{chunk-CCUID66K.js → chunk-Q7VA22QV.js} +1 -1
  198. package/public/chunk-QR7L4UUP.js +1 -0
  199. package/public/chunk-REUKAKIF.js +1 -0
  200. package/public/chunk-RSIXVZQ5.js +1 -0
  201. package/public/chunk-RWMXS5CJ.js +5 -0
  202. package/public/chunk-SCUB4HUR.js +1 -0
  203. package/public/chunk-TCMMHINS.js +1 -0
  204. package/public/chunk-U4V4ICSI.js +7 -0
  205. package/public/chunk-UIPWNZIB.js +1 -0
  206. package/public/chunk-UJPIGBLW.js +1 -0
  207. package/public/chunk-ULBJMQJF.js +14 -0
  208. package/public/{chunk-WHJSVGC7.js → chunk-UR24V3JB.js} +1 -1
  209. package/public/{chunk-EA5J2VEJ.js → chunk-WM3ZC7RY.js} +1 -1
  210. package/public/chunk-XCZRGZLZ.js +1 -0
  211. package/public/chunk-XSXBWJW4.js +1 -0
  212. package/public/{chunk-NDNK3KHG.js → chunk-XZLDNJOX.js} +1 -1
  213. package/public/{chunk-JZZQRLNW.js → chunk-XZR7OZ6I.js} +1 -1
  214. package/public/{chunk-YP7JWH3J.js → chunk-Y532R476.js} +1 -1
  215. package/public/chunk-YHABGXDF.js +5 -0
  216. package/public/chunk-YLJ4YK2P.js +1 -0
  217. package/public/chunk-YXEV6KOV.js +7 -0
  218. package/public/chunk-ZAFVFM3T.js +1 -0
  219. package/public/index.html +2 -2
  220. package/public/main-CCEKU4WV.js +1 -0
  221. package/public/media/fa-brands-400-Q3XCMWHQ.woff2 +0 -0
  222. package/public/media/{fa-brands-400-KOKGDU7E.ttf → fa-brands-400-R2XQZCET.ttf} +0 -0
  223. package/public/media/fa-regular-400-QSNYFYRT.woff2 +0 -0
  224. package/public/media/{fa-regular-400-IPMAEX5Y.ttf → fa-regular-400-XUOPSR7E.ttf} +0 -0
  225. package/public/media/fa-solid-900-5ZUYHGA7.woff2 +0 -0
  226. package/public/media/{fa-solid-900-SRFFQLRM.ttf → fa-solid-900-PJNKLK6W.ttf} +0 -0
  227. package/public/polyfills-4F4B5XMZ.js +2 -0
  228. package/public/styles-4YGS4LAH.css +1 -0
  229. package/scripts/upgrade-install-plugin.sh +1 -1
  230. package/public/chunk-26EDYJQW.js +0 -1
  231. package/public/chunk-2JDN5J3P.js +0 -1
  232. package/public/chunk-2PMXH77A.js +0 -1
  233. package/public/chunk-3C2OQ2W5.js +0 -1
  234. package/public/chunk-3IX3CLER.js +0 -1
  235. package/public/chunk-3JROOWCZ.js +0 -1
  236. package/public/chunk-4LLA7QYB.js +0 -1
  237. package/public/chunk-4N3YQA7W.js +0 -1
  238. package/public/chunk-52L2LAHB.js +0 -1
  239. package/public/chunk-5KIRKUWH.js +0 -1
  240. package/public/chunk-6HR4EKFX.js +0 -8
  241. package/public/chunk-7LUCJVXB.js +0 -1
  242. package/public/chunk-A4HS5JYI.js +0 -1
  243. package/public/chunk-A76FDQKF.js +0 -1
  244. package/public/chunk-AAVBU64J.js +0 -1
  245. package/public/chunk-AFRS7ZFI.js +0 -1
  246. package/public/chunk-BKUGARB4.js +0 -7
  247. package/public/chunk-BPMSJ2VF.js +0 -1
  248. package/public/chunk-BS2EMJX7.js +0 -1
  249. package/public/chunk-CJIFFTFC.js +0 -1
  250. package/public/chunk-CY55AES3.js +0 -1
  251. package/public/chunk-DAYZQW6Q.js +0 -1
  252. package/public/chunk-ED5XL3PD.js +0 -1
  253. package/public/chunk-EJKB2WDE.js +0 -1
  254. package/public/chunk-FA2N3XXT.js +0 -1
  255. package/public/chunk-HSJSWZHD.js +0 -1
  256. package/public/chunk-IB5GZVXD.js +0 -1
  257. package/public/chunk-IVORLBXB.js +0 -1
  258. package/public/chunk-IW3HI4LO.js +0 -1
  259. package/public/chunk-JU4PP2VY.js +0 -32
  260. package/public/chunk-KHNBODZR.js +0 -14
  261. package/public/chunk-KQJ7ONUG.js +0 -1
  262. package/public/chunk-KRNQN3FT.js +0 -1
  263. package/public/chunk-KVW76M4O.js +0 -1
  264. package/public/chunk-LMPCXQ23.js +0 -1
  265. package/public/chunk-LV2VCDOI.js +0 -1
  266. package/public/chunk-M6SHEAQY.js +0 -1
  267. package/public/chunk-MDDU475D.js +0 -1
  268. package/public/chunk-MPVSAJDU.js +0 -5
  269. package/public/chunk-NV6GUYHV.js +0 -1
  270. package/public/chunk-NW6AFAD7.js +0 -1
  271. package/public/chunk-NZNNTHFQ.js +0 -1
  272. package/public/chunk-OKKTO3UM.js +0 -1
  273. package/public/chunk-OOHFQB4Z.js +0 -1
  274. package/public/chunk-ORPWYWCL.js +0 -5
  275. package/public/chunk-QGDVQDUP.js +0 -20
  276. package/public/chunk-QHPDGSZ6.js +0 -1
  277. package/public/chunk-QKWNCNRW.js +0 -1
  278. package/public/chunk-RDAMEJPR.js +0 -1
  279. package/public/chunk-TCSXGQNF.js +0 -1
  280. package/public/chunk-TFEVMIHT.js +0 -23
  281. package/public/chunk-TXOB7R5K.js +0 -7
  282. package/public/chunk-U2KJ2IEE.js +0 -1
  283. package/public/chunk-UAQGK64S.js +0 -1
  284. package/public/chunk-UG5DK2RQ.js +0 -2
  285. package/public/chunk-UKAOVQ6N.js +0 -1
  286. package/public/chunk-UNVMI6CK.js +0 -1
  287. package/public/chunk-US5QSVJ2.js +0 -1
  288. package/public/chunk-UWLLEMGO.js +0 -1
  289. package/public/chunk-V2TYBIZV.js +0 -1
  290. package/public/chunk-V7D5U2P3.js +0 -1
  291. package/public/chunk-WHJOLAED.js +0 -1
  292. package/public/chunk-WNVJPPO7.js +0 -1
  293. package/public/chunk-WP6BKFEA.js +0 -1
  294. package/public/chunk-WSYFRV2X.js +0 -1
  295. package/public/chunk-XLY5QPTN.js +0 -6
  296. package/public/chunk-XY74TB4S.js +0 -1
  297. package/public/chunk-ZOKILXR3.js +0 -1
  298. package/public/chunk-ZT23DWNL.js +0 -1
  299. package/public/main-6PBYD25D.js +0 -1
  300. package/public/media/01-RQ3S2L53.png +0 -0
  301. package/public/media/02-VNCG2I2A.png +0 -0
  302. package/public/media/03-HI42L4ZG.png +0 -0
  303. package/public/media/04-FJLL55LZ.png +0 -0
  304. package/public/media/05-V3EO6SPT.png +0 -0
  305. package/public/media/06-EOJZCQZN.png +0 -0
  306. package/public/media/07-KMKB5PBD.png +0 -0
  307. package/public/media/08-UQJRF6B2.png +0 -0
  308. package/public/media/09-2DJQFRHH.png +0 -0
  309. package/public/media/arrow_left-CQT7FZM7.svg +0 -4
  310. package/public/media/arrow_right-SBUDRR2G.svg +0 -4
  311. package/public/media/fa-brands-400-6PJPV6JM.woff2 +0 -0
  312. package/public/media/fa-regular-400-OHB6J4OK.woff2 +0 -0
  313. package/public/media/fa-solid-900-ABTK6BNK.woff2 +0 -0
  314. package/public/polyfills-C6JHVXJJ.js +0 -2
  315. package/public/scripts-6GVLYD7F.js +0 -62
  316. package/public/styles-EG5MFQEM.css +0 -1
  317. /package/public/assets/{bootstrap-4 → bootstrap-5}/cssframework/assets.json +0 -0
@@ -1,11 +1,11 @@
1
1
 
2
2
  --------------------------------------------------------------------------------
3
- Package: @angular/common
3
+ Package: @angular/animations
4
4
  License: "MIT"
5
5
 
6
6
  The MIT License
7
7
 
8
- Copyright (c) 2010-2024 Google LLC. https://angular.dev/license
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/animations
29
+ Package: @angular/platform-browser
30
30
  License: "MIT"
31
31
 
32
32
  The MIT License
33
33
 
34
- Copyright (c) 2010-2024 Google LLC. https://angular.dev/license
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/platform-browser
55
+ Package: @angular/common
56
56
  License: "MIT"
57
57
 
58
58
  The MIT License
59
59
 
60
- Copyright (c) 2010-2024 Google LLC. https://angular.dev/license
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/bootstrap4
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: nouislider
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) 2019 Léon Gersen
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 all
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 THE
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: ng2-nouislider
413
+ Package: nouislider
388
414
  License: "MIT"
389
415
 
390
416
  MIT License
391
417
 
392
- Copyright (c) 2017-2019 Tomasz Bak https://www.tomaszbak.com/
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: ng-inline-svg-2
439
+ Package: ng2-nouislider
414
440
  License: "MIT"
415
441
 
416
- The MIT License (MIT)
442
+ MIT License
417
443
 
418
- Copyright (c) 2016 Eugene Cheung
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
- all copies or substantial portions of the Software.
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
- THE SOFTWARE.
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: file-saver
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
- The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
876
+ Copyright (c) 2013 Heinrich Goebl
798
877
 
799
- 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.
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
- [1]: http://eligrey.com
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-2024 Google LLC. https://angular.dev/license
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-2024 Google LLC. https://angular.dev/license
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-2024 Google LLC. https://angular.dev/license
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-2024 Google LLC. https://angular.io/license
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-2024 Google LLC. https://angular.dev/license
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 width="100px" height="149px" viewBox="0 0 100 149" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
4
- <g id="airpurifier" transform="translate(7.000000, 5.000000)">
5
- <path 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" id="Line" class="airpurifier_off_grey" stroke="#5BC8FA" stroke-width="10" stroke-linecap="square"></path>
6
- <path 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" id="Line" class="airpurifier_off_grey" stroke="#91DBFB" stroke-width="10" stroke-linecap="square"></path>
7
- <path 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" id="Line" class="airpurifier_off_grey" stroke="#C8EAFE" stroke-width="10" stroke-linecap="square"></path>
8
- <polygon id="Path" class="airpurifier_off_grey" fill="#C7C5CB" 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"></polygon>
9
- <rect id="Rectangle" class="airpurifier_off_lgrey" fill="#454545" x="46" y="84" width="17" height="5"></rect>
10
- <rect id="Rectangle" class="airpurifier_off_lgrey" fill="#454545" x="46" y="94" width="20" height="5"></rect>
11
- <rect id="Rectangle" class="airpurifier_off_lgrey" fill="#454545" x="46" y="103" width="22" height="5"></rect>
12
- <rect id="Rectangle" class="airpurifier_off_lgrey" fill="#454545" x="20" y="103" width="22" height="5"></rect>
13
- <rect id="Rectangle" class="airpurifier_off_lgrey" fill="#454545" x="22" y="94" width="20" height="5"></rect>
14
- <rect id="Rectangle" class="airpurifier_off_lgrey" fill="#454545" x="25" y="84" width="17" height="5"></rect>
15
- </g>
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
- </svg>
49
+ </g>
50
+ </svg>
@@ -1,14 +1,25 @@
1
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
- <svg width="32px" height="32px" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
3
- <!-- Generator: Sketch 3.3.2 (12043) - http://www.bohemiancoding.com/sketch -->
4
- <title>houseplant</title>
5
- <desc>Created with Sketch.</desc>
6
- <defs></defs>
7
- <g id="flatten" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
8
- <g id="z-copy" sketch:type="MSArtboardGroup" transform="translate(-100.000000, -100.000000)" fill="#000000">
9
- <g id="accessoryIcon" sketch:type="MSLayerGroup" transform="translate(100.000000, 100.000000)">
10
- <path 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" sketch:type="MSShapeGroup"></path>
11
- </g>
12
- </g>
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
- </svg>
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>