homebridge-config-ui-x 5.0.0-beta.11 → 5.0.0-beta.111

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