homebridge-config-ui-x 5.0.0-beta.9 → 5.0.0-beta.91

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 (316) hide show
  1. package/CHANGELOG.md +428 -31
  2. package/CONTRIBUTING.md +5 -4
  3. package/LICENSE +1 -1
  4. package/config.schema.json +37 -192
  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 +15 -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 +23 -11
  22. package/dist/core/config/config.service.js +39 -19
  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 +2 -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 +84 -67
  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 +28 -3
  77. package/dist/modules/server/server.controller.js +137 -20
  78. package/dist/modules/server/server.controller.js.map +1 -1
  79. package/dist/modules/server/server.service.d.ts +27 -6
  80. package/dist/modules/server/server.service.js +212 -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 +25 -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 +50 -43
  94. package/public/3rdpartylicenses.txt +192 -109
  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/assets/plugin-ui-utils/ui.js +3 -0
  137. package/public/assets/plugin-ui-utils/ui.js.map +1 -1
  138. package/public/chunk-2EMPNH2X.js +5 -0
  139. package/public/chunk-2VGFYHDE.js +1 -0
  140. package/public/chunk-346GJNBG.js +1 -0
  141. package/public/chunk-3HISBS3B.js +1 -0
  142. package/public/{chunk-EA5J2VEJ.js → chunk-4VKEWS3F.js} +1 -1
  143. package/public/chunk-4W65T6DT.js +1 -0
  144. package/public/chunk-56VIVSJU.js +1 -0
  145. package/public/chunk-5GQ5LHPJ.js +1 -0
  146. package/public/chunk-5OVPVUOZ.js +1 -0
  147. package/public/chunk-5P7NZODH.js +1 -0
  148. package/public/chunk-6AEKDPHD.js +1 -0
  149. package/public/chunk-6IA7K4TY.js +1 -0
  150. package/public/chunk-6MBDS53J.js +1 -0
  151. package/public/chunk-6MUZSNBL.js +1 -0
  152. package/public/chunk-7LKPHFJR.js +1 -0
  153. package/public/{chunk-QE7DO6J3.js → chunk-ANCTYTNR.js} +2 -2
  154. package/public/{chunk-LWNID63H.js → chunk-ASWAWBAB.js} +2 -2
  155. package/public/chunk-BHX6S5LW.js +1 -0
  156. package/public/chunk-BWWDBVP3.js +1 -0
  157. package/public/chunk-CBKMIXD7.js +1 -0
  158. package/public/{chunk-GR5ZC55C.js → chunk-CEC3XQIL.js} +11 -11
  159. package/public/{chunk-JZZQRLNW.js → chunk-DQBVZWYJ.js} +1 -1
  160. package/public/chunk-EB3RUUUU.js +1 -0
  161. package/public/chunk-EJ3RNOUF.js +1 -0
  162. package/public/chunk-EU2PYI42.js +1 -0
  163. package/public/{chunk-6TCHCTXZ.js → chunk-EWUBHGYD.js} +1 -1
  164. package/public/chunk-FC2ZP4GG.js +1 -0
  165. package/public/chunk-FDPTBVVC.js +2 -0
  166. package/public/chunk-FDZTOO2J.js +1 -0
  167. package/public/{chunk-7EUQWCP5.js → chunk-FIDKTTX5.js} +2 -2
  168. package/public/chunk-FLL5WOYP.js +1 -0
  169. package/public/chunk-FMIYWTUO.js +1 -0
  170. package/public/chunk-FN3OPQ7O.js +1 -0
  171. package/public/chunk-G6ZI7M42.js +1 -0
  172. package/public/chunk-GA7DSDUF.js +1 -0
  173. package/public/chunk-GOW5VSYJ.js +1 -0
  174. package/public/chunk-GWC7VRF6.js +1 -0
  175. package/public/{chunk-MPLDW2J6.js → chunk-HBZONUFA.js} +1 -1
  176. package/public/chunk-HRWCTTRC.js +5 -0
  177. package/public/chunk-HYKYJOGA.js +1 -0
  178. package/public/chunk-IC342R5Q.js +8 -0
  179. package/public/chunk-ICWWGXAA.js +1 -0
  180. package/public/chunk-IF56BKOM.js +1 -0
  181. package/public/chunk-JUHAP4JY.js +1 -0
  182. package/public/chunk-L3LHJ4JZ.js +23 -0
  183. package/public/chunk-L3YFIHHA.js +1 -0
  184. package/public/{chunk-WNWWUCCZ.js → chunk-L7P4OVCU.js} +3 -3
  185. package/public/chunk-LPGZUTF3.js +1 -0
  186. package/public/chunk-MPEMMRY5.js +6 -0
  187. package/public/chunk-MZFQR6RR.js +1 -0
  188. package/public/chunk-NM36IH7P.js +1 -0
  189. package/public/chunk-NR37MAXW.js +7 -0
  190. package/public/{chunk-XSDOEAMI.js → chunk-OMLHTTMP.js} +1 -1
  191. package/public/{chunk-ENKVNFKF.js → chunk-OTCI6CN2.js} +1 -1
  192. package/public/chunk-PRR4LQWG.js +1 -0
  193. package/public/chunk-QGHY5CLC.js +2 -0
  194. package/public/chunk-QRORVNZ7.js +1 -0
  195. package/public/chunk-RGIMTPTA.js +1 -0
  196. package/public/chunk-RK3BSPVK.js +1 -0
  197. package/public/chunk-SEDDFWVS.js +1 -0
  198. package/public/chunk-TLWI6DE6.js +1 -0
  199. package/public/chunk-U5WNNZWN.js +1 -0
  200. package/public/chunk-UAAJJBQH.js +1 -0
  201. package/public/chunk-VQSRL3AI.js +29 -0
  202. package/public/chunk-VWYIDHUF.js +8 -0
  203. package/public/chunk-VZG6DA4F.js +1 -0
  204. package/public/chunk-XEFNJNER.js +1 -0
  205. package/public/chunk-XH3VLWN5.js +1 -0
  206. package/public/chunk-Y3BJZ7QJ.js +1 -0
  207. package/public/chunk-Y6TXYIFY.js +7 -0
  208. package/public/chunk-YDQT2IQW.js +1 -0
  209. package/public/chunk-YOQMEVOQ.js +1 -0
  210. package/public/chunk-YVAFKINR.js +20 -0
  211. package/public/chunk-YWKZ3P6I.js +1 -0
  212. package/public/chunk-Z4SD7E4P.js +1 -0
  213. package/public/chunk-ZNDTZTBG.js +1 -0
  214. package/public/chunk-ZOLUFCSO.js +1 -0
  215. package/public/chunk-ZPSG5SPC.js +1 -0
  216. package/public/chunk-ZSNEJNFO.js +1 -0
  217. package/public/index.html +2 -2
  218. package/public/main-KNYHSHUX.js +1 -0
  219. package/public/media/fa-brands-400-Q3XCMWHQ.woff2 +0 -0
  220. package/public/media/{fa-brands-400-KOKGDU7E.ttf → fa-brands-400-R2XQZCET.ttf} +0 -0
  221. package/public/media/fa-regular-400-QSNYFYRT.woff2 +0 -0
  222. package/public/media/{fa-regular-400-IPMAEX5Y.ttf → fa-regular-400-XUOPSR7E.ttf} +0 -0
  223. package/public/media/fa-solid-900-5ZUYHGA7.woff2 +0 -0
  224. package/public/media/{fa-solid-900-SRFFQLRM.ttf → fa-solid-900-PJNKLK6W.ttf} +0 -0
  225. package/public/polyfills-GCAZ7JAV.js +2 -0
  226. package/public/styles-PKR3EGHP.css +1 -0
  227. package/scripts/upgrade-install-plugin.sh +1 -1
  228. package/public/chunk-2JFSWT5B.js +0 -1
  229. package/public/chunk-2L7ELAST.js +0 -1
  230. package/public/chunk-2S6LQXQQ.js +0 -1
  231. package/public/chunk-33GSDLFJ.js +0 -1
  232. package/public/chunk-3IX3CLER.js +0 -1
  233. package/public/chunk-3OQBMVGJ.js +0 -1
  234. package/public/chunk-4G7JJKXC.js +0 -1
  235. package/public/chunk-4W4R6Q5O.js +0 -1
  236. package/public/chunk-4YG6EOJW.js +0 -1
  237. package/public/chunk-5ABRPQAO.js +0 -1
  238. package/public/chunk-5JQMTC6B.js +0 -1
  239. package/public/chunk-BKCPDNDQ.js +0 -1
  240. package/public/chunk-BKUGARB4.js +0 -7
  241. package/public/chunk-BPMSJ2VF.js +0 -1
  242. package/public/chunk-BVRAVCVU.js +0 -1
  243. package/public/chunk-CCUID66K.js +0 -1
  244. package/public/chunk-CNLFTFGS.js +0 -1
  245. package/public/chunk-COZI4IQZ.js +0 -1
  246. package/public/chunk-DFKBPEBJ.js +0 -1
  247. package/public/chunk-FIWNQUN6.js +0 -1
  248. package/public/chunk-HSJSWZHD.js +0 -1
  249. package/public/chunk-JJL2MTZS.js +0 -1
  250. package/public/chunk-JKN6S535.js +0 -1
  251. package/public/chunk-KQJ7ONUG.js +0 -1
  252. package/public/chunk-KSIUXDRS.js +0 -1
  253. package/public/chunk-KZATMDCZ.js +0 -6
  254. package/public/chunk-L3MK74M5.js +0 -1
  255. package/public/chunk-M2ME37TX.js +0 -8
  256. package/public/chunk-M3VCR6YB.js +0 -1
  257. package/public/chunk-M5AJDIBQ.js +0 -1
  258. package/public/chunk-MK7X7MS5.js +0 -1
  259. package/public/chunk-NBOHFRJZ.js +0 -1
  260. package/public/chunk-NHZHWKSG.js +0 -1
  261. package/public/chunk-NQVE3PCO.js +0 -1
  262. package/public/chunk-NW6AFAD7.js +0 -1
  263. package/public/chunk-NWWJ57YP.js +0 -1
  264. package/public/chunk-NZNNTHFQ.js +0 -1
  265. package/public/chunk-ORPWYWCL.js +0 -5
  266. package/public/chunk-QGKMS5A5.js +0 -1
  267. package/public/chunk-QHPDGSZ6.js +0 -1
  268. package/public/chunk-QOGRNTPH.js +0 -1
  269. package/public/chunk-QXKNQTUO.js +0 -1
  270. package/public/chunk-ROX65GNZ.js +0 -23
  271. package/public/chunk-RTYW4L3V.js +0 -1
  272. package/public/chunk-SQRHRHFP.js +0 -20
  273. package/public/chunk-T7JTTE4M.js +0 -1
  274. package/public/chunk-T7R6ZVT6.js +0 -1
  275. package/public/chunk-TCSXGQNF.js +0 -1
  276. package/public/chunk-THICF3SZ.js +0 -1
  277. package/public/chunk-TUWXLY3X.js +0 -1
  278. package/public/chunk-TXOB7R5K.js +0 -7
  279. package/public/chunk-U5ZKGWCF.js +0 -1
  280. package/public/chunk-UG5DK2RQ.js +0 -2
  281. package/public/chunk-UYFK7HVI.js +0 -1
  282. package/public/chunk-UZOK2K35.js +0 -1
  283. package/public/chunk-VDCXEJXR.js +0 -1
  284. package/public/chunk-VEBWYZYZ.js +0 -1
  285. package/public/chunk-VNARIZ6E.js +0 -1
  286. package/public/chunk-VP4MXPRG.js +0 -1
  287. package/public/chunk-VPJTE4TI.js +0 -1
  288. package/public/chunk-VPKOFODJ.js +0 -1
  289. package/public/chunk-WHJOLAED.js +0 -1
  290. package/public/chunk-WHJSVGC7.js +0 -1
  291. package/public/chunk-WQJUPQJT.js +0 -1
  292. package/public/chunk-XMYXVAEK.js +0 -1
  293. package/public/chunk-XO7XB4PL.js +0 -1
  294. package/public/chunk-XTVTI5YA.js +0 -5
  295. package/public/chunk-YSQSVKZB.js +0 -32
  296. package/public/chunk-Z5GB7FXV.js +0 -1
  297. package/public/chunk-ZT23DWNL.js +0 -1
  298. package/public/main-CNETRB3V.js +0 -1
  299. package/public/media/01-RQ3S2L53.png +0 -0
  300. package/public/media/02-VNCG2I2A.png +0 -0
  301. package/public/media/03-HI42L4ZG.png +0 -0
  302. package/public/media/04-FJLL55LZ.png +0 -0
  303. package/public/media/05-V3EO6SPT.png +0 -0
  304. package/public/media/06-EOJZCQZN.png +0 -0
  305. package/public/media/07-KMKB5PBD.png +0 -0
  306. package/public/media/08-UQJRF6B2.png +0 -0
  307. package/public/media/09-2DJQFRHH.png +0 -0
  308. package/public/media/arrow_left-CQT7FZM7.svg +0 -4
  309. package/public/media/arrow_right-SBUDRR2G.svg +0 -4
  310. package/public/media/fa-brands-400-6PJPV6JM.woff2 +0 -0
  311. package/public/media/fa-regular-400-OHB6J4OK.woff2 +0 -0
  312. package/public/media/fa-solid-900-ABTK6BNK.woff2 +0 -0
  313. package/public/polyfills-C6JHVXJJ.js +0 -2
  314. package/public/scripts-6GVLYD7F.js +0 -62
  315. package/public/styles-EG5MFQEM.css +0 -1
  316. /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"
@@ -784,6 +867,31 @@ Package: ngx-md
784
867
  License: "MIT"
785
868
 
786
869
 
870
+ --------------------------------------------------------------------------------
871
+ Package: mobile-detect
872
+ License: "MIT"
873
+
874
+ The MIT License (MIT)
875
+
876
+ Copyright (c) 2013 Heinrich Goebl
877
+
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:
884
+
885
+ The above copyright notice and this permission notice shall be included in
886
+ all copies or substantial portions of the Software.
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.
787
895
  --------------------------------------------------------------------------------
788
896
  Package: file-saver
789
897
  License: "MIT"
@@ -801,10 +909,12 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
801
909
  [1]: http://eligrey.com
802
910
 
803
911
  --------------------------------------------------------------------------------
804
- Package: xterm-addon-web-links
912
+ Package: xterm
805
913
  License: "MIT"
806
914
 
807
- Copyright (c) 2017, The xterm.js authors (https://github.com/xtermjs/xterm.js)
915
+ Copyright (c) 2017-2019, The xterm.js authors (https://github.com/xtermjs/xterm.js)
916
+ Copyright (c) 2014-2016, SourceLair Private Company (https://www.sourcelair.com)
917
+ Copyright (c) 2012-2013, Christopher Jeffrey (https://github.com/chjj/)
808
918
 
809
919
  Permission is hereby granted, free of charge, to any person obtaining a copy
810
920
  of this software and associated documentation files (the "Software"), to deal
@@ -825,24 +935,20 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
825
935
  THE SOFTWARE.
826
936
 
827
937
  --------------------------------------------------------------------------------
828
- Package: qrcode
829
- License: "MIT"
830
-
831
-
832
- --------------------------------------------------------------------------------
833
- Package: dijkstrajs
938
+ Package: xterm-addon-fit
834
939
  License: "MIT"
835
940
 
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
941
+ Copyright (c) 2019, The xterm.js authors (https://github.com/xtermjs/xterm.js)
842
942
 
843
- Licensed under the MIT license.
943
+ Permission is hereby granted, free of charge, to any person obtaining a copy
944
+ of this software and associated documentation files (the "Software"), to deal
945
+ in the Software without restriction, including without limitation the rights
946
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
947
+ copies of the Software, and to permit persons to whom the Software is
948
+ furnished to do so, subject to the following conditions:
844
949
 
845
- http://www.opensource.org/licenses/mit-license.php
950
+ The above copyright notice and this permission notice shall be included in
951
+ all copies or substantial portions of the Software.
846
952
 
847
953
  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
848
954
  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
@@ -851,15 +957,12 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
851
957
  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
852
958
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
853
959
  THE SOFTWARE.
854
- ```
855
960
 
856
961
  --------------------------------------------------------------------------------
857
- Package: xterm
962
+ Package: xterm-addon-web-links
858
963
  License: "MIT"
859
964
 
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/)
965
+ Copyright (c) 2017, The xterm.js authors (https://github.com/xtermjs/xterm.js)
863
966
 
864
967
  Permission is hereby granted, free of charge, to any person obtaining a copy
865
968
  of this software and associated documentation files (the "Software"), to deal
@@ -880,20 +983,24 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
880
983
  THE SOFTWARE.
881
984
 
882
985
  --------------------------------------------------------------------------------
883
- Package: xterm-addon-fit
986
+ Package: qrcode
884
987
  License: "MIT"
885
988
 
886
- Copyright (c) 2019, The xterm.js authors (https://github.com/xtermjs/xterm.js)
887
989
 
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:
990
+ --------------------------------------------------------------------------------
991
+ Package: dijkstrajs
992
+ License: "MIT"
894
993
 
895
- The above copyright notice and this permission notice shall be included in
896
- all copies or substantial portions of the Software.
994
+ ```
995
+ Dijkstra path-finding functions. Adapted from the Dijkstar Python project.
996
+
997
+ Copyright (C) 2008
998
+ Wyatt Baldwin <self@wyattbaldwin.com>
999
+ All rights reserved
1000
+
1001
+ Licensed under the MIT license.
1002
+
1003
+ http://www.opensource.org/licenses/mit-license.php
897
1004
 
898
1005
  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
899
1006
  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
@@ -902,6 +1009,7 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
902
1009
  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
903
1010
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
904
1011
  THE SOFTWARE.
1012
+ ```
905
1013
 
906
1014
  --------------------------------------------------------------------------------
907
1015
  Package: semver
@@ -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,33 @@ 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
1118
+
1119
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1120
+ of this software and associated documentation files (the "Software"), to deal
1121
+ in the Software without restriction, including without limitation the rights
1122
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1123
+ copies of the Software, and to permit persons to whom the Software is
1124
+ furnished to do so, subject to the following conditions:
1125
+
1126
+ The above copyright notice and this permission notice shall be included in
1127
+ all copies or substantial portions of the Software.
1128
+
1129
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1130
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1131
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1132
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1133
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1134
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1135
+ THE SOFTWARE.
1136
+
1137
+ --------------------------------------------------------------------------------
1138
+ Package: @angular/router
1139
+ License: "MIT"
1140
+
1141
+ The MIT License
1142
+
1143
+ Copyright (c) 2010-2025 Google LLC. https://angular.dev/license
1035
1144
 
1036
1145
  Permission is hereby granted, free of charge, to any person obtaining a copy
1037
1146
  of this software and associated documentation files (the "Software"), to deal
@@ -1183,32 +1292,6 @@ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
1183
1292
  IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
1184
1293
  CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1185
1294
 
1186
- --------------------------------------------------------------------------------
1187
- Package: @angular/router
1188
- License: "MIT"
1189
-
1190
- The MIT License
1191
-
1192
- Copyright (c) 2010-2024 Google LLC. https://angular.dev/license
1193
-
1194
- Permission is hereby granted, free of charge, to any person obtaining a copy
1195
- of this software and associated documentation files (the "Software"), to deal
1196
- in the Software without restriction, including without limitation the rights
1197
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1198
- copies of the Software, and to permit persons to whom the Software is
1199
- furnished to do so, subject to the following conditions:
1200
-
1201
- The above copyright notice and this permission notice shall be included in
1202
- all copies or substantial portions of the Software.
1203
-
1204
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1205
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1206
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1207
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1208
- 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.
1211
-
1212
1295
  --------------------------------------------------------------------------------
1213
1296
  Package: @auth0/angular-jwt
1214
1297
  License: "MIT"
@@ -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>