@sync-in/server 1.9.3 → 1.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +41 -4
- package/environment/environment.dist.yaml +15 -5
- package/package.json +18 -19
- package/server/app.bootstrap.js +1 -1
- package/server/app.bootstrap.js.map +1 -1
- package/server/app.constants.js +3 -2
- package/server/app.constants.js.map +1 -1
- package/server/applications/files/constants/cache.js +2 -5
- package/server/applications/files/constants/cache.js.map +1 -1
- package/server/applications/files/constants/files.js +4 -0
- package/server/applications/files/constants/files.js.map +1 -1
- package/server/applications/files/constants/operations.js +4 -0
- package/server/applications/files/constants/operations.js.map +1 -1
- package/server/applications/files/constants/routes.js +1 -26
- package/server/applications/files/constants/routes.js.map +1 -1
- package/server/applications/files/files.config.js +15 -39
- package/server/applications/files/files.config.js.map +1 -1
- package/server/applications/files/files.controller.js +4 -4
- package/server/applications/files/files.controller.js.map +1 -1
- package/server/applications/files/files.module.js +12 -9
- package/server/applications/files/files.module.js.map +1 -1
- package/server/applications/files/interfaces/file-lock.interface.js.map +1 -1
- package/server/applications/files/interfaces/file-props.interface.js.map +1 -1
- package/server/applications/files/modules/collabora-online/collabora-online-environment.decorator.js +32 -0
- package/server/applications/files/modules/collabora-online/collabora-online-environment.decorator.js.map +1 -0
- package/server/applications/files/modules/collabora-online/collabora-online-manager.service.js +280 -0
- package/server/applications/files/modules/collabora-online/collabora-online-manager.service.js.map +1 -0
- package/server/applications/files/modules/collabora-online/collabora-online-manager.service.spec.js +552 -0
- package/server/applications/files/modules/collabora-online/collabora-online-manager.service.spec.js.map +1 -0
- package/server/applications/files/modules/collabora-online/collabora-online.config.js +40 -0
- package/server/applications/files/modules/collabora-online/collabora-online.config.js.map +1 -0
- package/server/applications/files/modules/collabora-online/collabora-online.constants.js +110 -0
- package/server/applications/files/modules/collabora-online/collabora-online.constants.js.map +1 -0
- package/server/applications/files/modules/collabora-online/collabora-online.controller.js +128 -0
- package/server/applications/files/modules/collabora-online/collabora-online.controller.js.map +1 -0
- package/server/applications/files/modules/collabora-online/collabora-online.controller.spec.js +47 -0
- package/server/applications/files/modules/collabora-online/collabora-online.controller.spec.js.map +1 -0
- package/server/applications/files/{interfaces/only-office-config.interface.js → modules/collabora-online/collabora-online.dtos.js} +1 -1
- package/server/applications/files/modules/collabora-online/collabora-online.dtos.js.map +1 -0
- package/server/applications/files/{guards/files-only-office.guard.js → modules/collabora-online/collabora-online.guard.js} +7 -21
- package/server/applications/files/modules/collabora-online/collabora-online.guard.js.map +1 -0
- package/server/applications/files/modules/collabora-online/collabora-online.guard.spec.js +86 -0
- package/server/applications/files/modules/collabora-online/collabora-online.guard.spec.js.map +1 -0
- package/server/applications/files/modules/collabora-online/collabora-online.interface.js +10 -0
- package/server/applications/files/modules/collabora-online/collabora-online.interface.js.map +1 -0
- package/server/applications/files/modules/collabora-online/collabora-online.module.js +41 -0
- package/server/applications/files/modules/collabora-online/collabora-online.module.js.map +1 -0
- package/server/applications/files/modules/collabora-online/collabora-online.routes.js +35 -0
- package/server/applications/files/modules/collabora-online/collabora-online.routes.js.map +1 -0
- package/server/applications/files/modules/collabora-online/collabora-online.strategy.js +59 -0
- package/server/applications/files/modules/collabora-online/collabora-online.strategy.js.map +1 -0
- package/server/applications/files/modules/collabora-online/collabora-online.utils.js +28 -0
- package/server/applications/files/modules/collabora-online/collabora-online.utils.js.map +1 -0
- package/server/applications/files/{decorators → modules/only-office}/only-office-environment.decorator.js +5 -5
- package/server/applications/files/modules/only-office/only-office-environment.decorator.js.map +1 -0
- package/server/applications/files/{services/files-only-office-manager.service.js → modules/only-office/only-office-manager.service.js} +101 -97
- package/server/applications/files/modules/only-office/only-office-manager.service.js.map +1 -0
- package/server/applications/files/modules/only-office/only-office-manager.service.spec.js +477 -0
- package/server/applications/files/modules/only-office/only-office-manager.service.spec.js.map +1 -0
- package/server/applications/files/modules/only-office/only-office.config.js +51 -0
- package/server/applications/files/modules/only-office/only-office.config.js.map +1 -0
- package/server/applications/files/modules/only-office/only-office.constants.js +417 -0
- package/server/applications/files/modules/only-office/only-office.constants.js.map +1 -0
- package/server/applications/files/{files-only-office.controller.js → modules/only-office/only-office.controller.js} +35 -52
- package/server/applications/files/modules/only-office/only-office.controller.js.map +1 -0
- package/server/applications/files/{files-only-office.controller.spec.js → modules/only-office/only-office.controller.spec.js} +24 -21
- package/server/applications/files/modules/only-office/only-office.controller.spec.js.map +1 -0
- package/server/applications/files/modules/only-office/only-office.dtos.js +10 -0
- package/server/applications/files/modules/only-office/only-office.dtos.js.map +1 -0
- package/server/applications/files/modules/only-office/only-office.guard.js +40 -0
- package/server/applications/files/modules/only-office/only-office.guard.js.map +1 -0
- package/server/applications/files/{guards/files-only-office.guard.spec.js → modules/only-office/only-office.guard.spec.js} +15 -21
- package/server/applications/files/modules/only-office/only-office.guard.spec.js.map +1 -0
- package/server/applications/files/modules/only-office/only-office.interface.js +10 -0
- package/server/applications/files/modules/only-office/only-office.interface.js.map +1 -0
- package/server/applications/files/modules/only-office/only-office.module.js +41 -0
- package/server/applications/files/modules/only-office/only-office.module.js.map +1 -0
- package/server/applications/files/modules/only-office/only-office.routes.js +45 -0
- package/server/applications/files/modules/only-office/only-office.routes.js.map +1 -0
- package/server/applications/files/{guards/files-only-office.strategy.js → modules/only-office/only-office.strategy.js} +11 -11
- package/server/applications/files/modules/only-office/only-office.strategy.js.map +1 -0
- package/server/applications/files/services/files-lock-manager.service.js +25 -33
- package/server/applications/files/services/files-lock-manager.service.js.map +1 -1
- package/server/applications/files/services/files-manager.service.js +17 -16
- package/server/applications/files/services/files-manager.service.js.map +1 -1
- package/server/applications/files/services/files-methods.service.js +2 -2
- package/server/applications/files/services/files-methods.service.js.map +1 -1
- package/server/applications/files/services/files-methods.service.spec.js +5 -5
- package/server/applications/files/services/files-methods.service.spec.js.map +1 -1
- package/server/applications/files/services/files-recents.service.js +4 -0
- package/server/applications/files/services/files-recents.service.js.map +1 -1
- package/server/applications/files/services/files-scheduler.service.js +24 -5
- package/server/applications/files/services/files-scheduler.service.js.map +1 -1
- package/server/applications/files/utils/files.js +10 -2
- package/server/applications/files/utils/files.js.map +1 -1
- package/server/applications/links/constants/routes.js +5 -0
- package/server/applications/links/constants/routes.js.map +1 -1
- package/server/applications/links/interfaces/link-space.interface.js.map +1 -1
- package/server/applications/links/links.controller.js +25 -5
- package/server/applications/links/links.controller.js.map +1 -1
- package/server/applications/links/services/links-manager.service.js +43 -21
- package/server/applications/links/services/links-manager.service.js.map +1 -1
- package/server/applications/links/services/links-manager.service.spec.js +4 -3
- package/server/applications/links/services/links-manager.service.spec.js.map +1 -1
- package/server/applications/links/services/links-queries.service.js +9 -2
- package/server/applications/links/services/links-queries.service.js.map +1 -1
- package/server/applications/shares/interfaces/share-link.interface.js.map +1 -1
- package/server/applications/shares/services/shares-manager.service.js +3 -0
- package/server/applications/shares/services/shares-manager.service.js.map +1 -1
- package/server/applications/shares/services/shares-manager.service.spec.js +2 -1
- package/server/applications/shares/services/shares-manager.service.spec.js.map +1 -1
- package/server/applications/shares/services/shares-queries.service.js +1 -0
- package/server/applications/shares/services/shares-queries.service.js.map +1 -1
- package/server/applications/spaces/constants/spaces.js +2 -2
- package/server/applications/spaces/constants/spaces.js.map +1 -1
- package/server/applications/spaces/decorators/space-override-permission.decorator.js +18 -0
- package/server/applications/spaces/decorators/space-override-permission.decorator.js.map +1 -0
- package/server/applications/spaces/guards/space.guard.js +40 -33
- package/server/applications/spaces/guards/space.guard.js.map +1 -1
- package/server/applications/spaces/guards/space.guard.spec.js +10 -15
- package/server/applications/spaces/guards/space.guard.spec.js.map +1 -1
- package/server/applications/spaces/services/spaces-scheduler.service.js +9 -1
- package/server/applications/spaces/services/spaces-scheduler.service.js.map +1 -1
- package/server/applications/webdav/constants/webdav.js +4 -0
- package/server/applications/webdav/constants/webdav.js.map +1 -1
- package/server/applications/webdav/guards/webdav-protocol.guard.js +9 -8
- package/server/applications/webdav/guards/webdav-protocol.guard.js.map +1 -1
- package/server/applications/webdav/guards/webdav-protocol.guard.spec.js +1 -1
- package/server/applications/webdav/guards/webdav-protocol.guard.spec.js.map +1 -1
- package/server/applications/webdav/interfaces/webdav.interface.js.map +1 -1
- package/server/applications/webdav/services/webdav-methods.service.js +40 -17
- package/server/applications/webdav/services/webdav-methods.service.js.map +1 -1
- package/server/applications/webdav/services/webdav-methods.service.spec.js +2157 -1289
- package/server/applications/webdav/services/webdav-methods.service.spec.js.map +1 -1
- package/server/applications/webdav/utils/webdav.js +8 -4
- package/server/applications/webdav/utils/webdav.js.map +1 -1
- package/server/applications/webdav/webdav.controller.js +4 -4
- package/server/applications/webdav/webdav.controller.js.map +1 -1
- package/server/authentication/guards/auth-token-access.guard.js +8 -3
- package/server/authentication/guards/auth-token-access.guard.js.map +1 -1
- package/server/authentication/services/auth-methods/auth-method-two-fa.service.js +1 -1
- package/server/authentication/services/auth-methods/auth-method-two-fa.service.js.map +1 -1
- package/server/authentication/services/auth-methods/auth-method-two-fa.service.spec.js +350 -4
- package/server/authentication/services/auth-methods/auth-method-two-fa.service.spec.js.map +1 -1
- package/server/configuration/config.environment.js +5 -1
- package/server/configuration/config.environment.js.map +1 -1
- package/server/configuration/config.interfaces.js.map +1 -1
- package/static/3rdpartylicenses.txt +507 -507
- package/static/assets/pdfjs/build/pdf.mjs +93 -33
- package/static/assets/pdfjs/build/pdf.mjs.map +1 -1
- package/static/assets/pdfjs/build/pdf.sandbox.mjs +3 -3
- package/static/assets/pdfjs/build/pdf.sandbox.mjs.map +1 -1
- package/static/assets/pdfjs/build/pdf.worker.mjs +166 -54
- package/static/assets/pdfjs/build/pdf.worker.mjs.map +1 -1
- package/static/assets/pdfjs/version +1 -1
- package/static/assets/pdfjs/web/images/checkmark.svg +5 -0
- package/static/assets/pdfjs/web/images/pages_closeButton.svg +3 -0
- package/static/assets/pdfjs/web/images/pages_selected.svg +7 -0
- package/static/assets/pdfjs/web/images/pages_viewArrow.svg +3 -0
- package/static/assets/pdfjs/web/images/pages_viewButton.svg +3 -0
- package/static/assets/pdfjs/web/locale/be/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/bs/viewer.ftl +0 -5
- package/static/assets/pdfjs/web/locale/cs/viewer.ftl +4 -6
- package/static/assets/pdfjs/web/locale/cy/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/da/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/de/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/dsb/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/el/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/en-CA/viewer.ftl +6 -2
- package/static/assets/pdfjs/web/locale/en-GB/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/en-US/viewer.ftl +82 -17
- package/static/assets/pdfjs/web/locale/eo/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/es-AR/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/es-CL/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/es-ES/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/es-MX/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/eu/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/fi/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/fr/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/fur/viewer.ftl +0 -5
- package/static/assets/pdfjs/web/locale/fy-NL/viewer.ftl +3 -5
- package/static/assets/pdfjs/web/locale/gn/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/he/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/hr/viewer.ftl +66 -0
- package/static/assets/pdfjs/web/locale/hsb/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/hu/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/hy-AM/viewer.ftl +3 -8
- package/static/assets/pdfjs/web/locale/ia/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/id/viewer.ftl +0 -5
- package/static/assets/pdfjs/web/locale/is/viewer.ftl +0 -5
- package/static/assets/pdfjs/web/locale/it/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/ja/viewer.ftl +0 -14
- package/static/assets/pdfjs/web/locale/ka/viewer.ftl +4 -6
- package/static/assets/pdfjs/web/locale/kab/viewer.ftl +0 -5
- package/static/assets/pdfjs/web/locale/kk/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/ko/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/nb-NO/viewer.ftl +1 -3
- package/static/assets/pdfjs/web/locale/nl/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/nn-NO/viewer.ftl +4 -2
- package/static/assets/pdfjs/web/locale/pa-IN/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/pl/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/pt-BR/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/pt-PT/viewer.ftl +35 -0
- package/static/assets/pdfjs/web/locale/rm/viewer.ftl +0 -5
- package/static/assets/pdfjs/web/locale/ro/viewer.ftl +4 -6
- package/static/assets/pdfjs/web/locale/ru/viewer.ftl +3 -5
- package/static/assets/pdfjs/web/locale/sk/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/sl/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/sq/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/sv-SE/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/tg/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/th/viewer.ftl +2 -2
- package/static/assets/pdfjs/web/locale/tr/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/vi/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/zh-CN/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/locale/zh-TW/viewer.ftl +0 -2
- package/static/assets/pdfjs/web/viewer.css +1778 -835
- package/static/assets/pdfjs/web/viewer.html +167 -86
- package/static/assets/pdfjs/web/viewer.mjs +1106 -801
- package/static/assets/pdfjs/web/viewer.mjs.map +1 -1
- package/static/chunk-27V66YJV.js +2 -0
- package/static/{chunk-WJYVS27M.js → chunk-27Z3SYRL.js} +1 -1
- package/static/{chunk-NFIES7BC.js → chunk-2RWLNKZH.js} +1 -1
- package/static/chunk-2YQ4SX3A.js +13 -0
- package/static/{chunk-GENTF6JM.js → chunk-3JYMJQYT.js} +1 -1
- package/static/chunk-3QTROEHV.js +1 -0
- package/static/{chunk-ZPI7RQ2S.js → chunk-3RPUQ22U.js} +1 -1
- package/static/{chunk-R6VB3INJ.js → chunk-3WZ6F3LC.js} +1 -1
- package/static/chunk-3ZLBVUCX.js +2 -0
- package/static/{chunk-5HCVWZMA.js → chunk-45AZ6ZML.js} +1 -1
- package/static/chunk-46TJLPJY.js +1 -0
- package/static/chunk-4NIYCYRS.js +2 -0
- package/static/{chunk-XXYMVRSH.js → chunk-4TPFERL6.js} +1 -1
- package/static/{chunk-CAZSNVMS.js → chunk-5O66CLTD.js} +1 -1
- package/static/chunk-6OEOADR6.js +1 -0
- package/static/chunk-6WMXMIE4.js +1 -0
- package/static/{chunk-NK2NMAJI.js → chunk-7VRYTDX4.js} +1 -1
- package/static/{chunk-ASBPYTLT.js → chunk-ARS47O5X.js} +1 -1
- package/static/chunk-B6HQYQYG.js +1 -0
- package/static/chunk-BCN4T5DO.js +2 -0
- package/static/{chunk-PKU4IIIR.js → chunk-CCZWPM7Q.js} +1 -1
- package/static/{chunk-QUSS6SUC.js → chunk-CMNMPG6Z.js} +1 -1
- package/static/{chunk-GDPJRUVU.js → chunk-CSVPAZHK.js} +1 -1
- package/static/{chunk-BJARRIS6.js → chunk-D55YR5X7.js} +4 -4
- package/static/{chunk-Z6RJZIDG.js → chunk-D5FQ72R4.js} +1 -1
- package/static/{chunk-4DF2SQD4.js → chunk-DGCVA6BM.js} +1 -1
- package/static/{chunk-TVJQXN73.js → chunk-DVCN3P7Q.js} +1 -1
- package/static/chunk-E32J777S.js +5 -0
- package/static/{chunk-5NHB7SV3.js → chunk-FIUF2JM4.js} +1 -1
- package/static/{chunk-RJOHDAPM.js → chunk-G3PL6YX3.js} +1 -1
- package/static/chunk-G7RZN7HN.js +1 -0
- package/static/{chunk-DDRGLHOP.js → chunk-GQHXYX6Z.js} +1 -1
- package/static/{chunk-5HYSNQR4.js → chunk-GWRAGN3M.js} +1 -1
- package/static/{chunk-ZC5ZDCDC.js → chunk-GXWGB7WO.js} +1 -1
- package/static/{chunk-25PWAXTJ.js → chunk-HGODIZTV.js} +1 -1
- package/static/{chunk-4KXJ6C4N.js → chunk-HZAB6F4Q.js} +1 -1
- package/static/chunk-I3FR3A45.js +1 -0
- package/static/{chunk-A6J6SOM6.js → chunk-I5SPA4G2.js} +1 -1
- package/static/{chunk-TGHBDJZA.js → chunk-IMFO2MI7.js} +1 -1
- package/static/{chunk-CURVLK7L.js → chunk-JNTNMIUH.js} +1 -1
- package/static/chunk-JRXG43AA.js +2 -0
- package/static/{chunk-XAIOGRBO.js → chunk-KAUCN24H.js} +1 -1
- package/static/chunk-KDUAB76O.js +1 -0
- package/static/chunk-KPOQLDWF.js +1 -0
- package/static/{chunk-HE6EDXWI.js → chunk-KWFELZTM.js} +1 -1
- package/static/{chunk-2CAAJBRO.js → chunk-L3BIP4AA.js} +1 -1
- package/static/{chunk-U75PLYIJ.js → chunk-LGIVVJDD.js} +1 -1
- package/static/{chunk-JEVBUJQ4.js → chunk-LNLBIJZD.js} +1 -1
- package/static/chunk-LTJNLOX2.js +1 -0
- package/static/{chunk-SDR3UG2F.js → chunk-LZUHREOF.js} +1 -1
- package/static/{chunk-VO4WVT6K.js → chunk-NIR4YE2E.js} +1 -1
- package/static/{chunk-S6YKBWJE.js → chunk-NJJURHX4.js} +1 -1
- package/static/chunk-NNZWSNAW.js +1 -0
- package/static/chunk-NWKBB7J4.js +1 -0
- package/static/chunk-O3YLAEVE.js +3 -0
- package/static/chunk-OUHCDDT6.js +1 -0
- package/static/{chunk-ZRBLCAOK.js → chunk-PDG7DOEF.js} +1 -1
- package/static/chunk-POUWUMC4.js +1 -0
- package/static/{chunk-YTBSB2GE.js → chunk-PPJCVBJH.js} +1 -1
- package/static/{chunk-K3MOXDU5.js → chunk-PQZLR4P3.js} +1 -1
- package/static/chunk-PVYVY3GD.js +1 -0
- package/static/chunk-Q5X5TPAG.js +1 -0
- package/static/{chunk-LFAQLJZK.js → chunk-QHJT5H4M.js} +1 -1
- package/static/{chunk-A7DSX7VP.js → chunk-R4VMWCM5.js} +1 -1
- package/static/{chunk-27XEAHMV.js → chunk-R7PLNX75.js} +1 -1
- package/static/chunk-RJULB733.js +1 -0
- package/static/{chunk-MBFMTBVJ.js → chunk-RNVPQQKT.js} +5 -5
- package/static/chunk-RTNEBRKJ.js +1 -0
- package/static/{chunk-FXM7XXWA.js → chunk-S3TTWPQA.js} +1 -1
- package/static/{chunk-6VJI4X2A.js → chunk-SDJNZULP.js} +1 -1
- package/static/chunk-SNOOCDJD.js +1 -0
- package/static/chunk-T42BV6TR.js +1 -0
- package/static/{chunk-4OV3SAUS.js → chunk-TNCKNU6I.js} +1 -1
- package/static/{chunk-2LHHXDD5.js → chunk-ULSPQ3HP.js} +1 -1
- package/static/{chunk-4EUHBTWV.js → chunk-UOK3LKSX.js} +1 -1
- package/static/{chunk-7NI353LS.js → chunk-VD5JHSDS.js} +1 -1
- package/static/{chunk-YXWF2DGF.js → chunk-XBKCQCBI.js} +1 -1
- package/static/{chunk-KBWK65KM.js → chunk-XEWLBWFF.js} +1 -1
- package/static/{chunk-FLPZB3OX.js → chunk-XTVNHFKX.js} +1 -1
- package/static/chunk-ZCSHU3D7.js +1 -0
- package/static/{chunk-FRBTL2ER.js → chunk-ZEJLIGAY.js} +1 -1
- package/static/{chunk-7H5O4BLV.js → chunk-ZHOE5VEY.js} +1 -1
- package/static/chunk-ZOMRIN3G.js +2 -0
- package/static/index.html +2 -2
- package/static/main-YKDNJ7LK.js +11 -0
- package/static/{styles-S5HVK4H5.css → styles-XLLEY5Y3.css} +1 -1
- package/server/applications/files/constants/only-office.js +0 -531
- package/server/applications/files/constants/only-office.js.map +0 -1
- package/server/applications/files/decorators/only-office-environment.decorator.js.map +0 -1
- package/server/applications/files/files-only-office.controller.js.map +0 -1
- package/server/applications/files/files-only-office.controller.spec.js.map +0 -1
- package/server/applications/files/guards/files-only-office.guard.js.map +0 -1
- package/server/applications/files/guards/files-only-office.guard.spec.js.map +0 -1
- package/server/applications/files/guards/files-only-office.strategy.js.map +0 -1
- package/server/applications/files/interfaces/only-office-config.interface.js.map +0 -1
- package/server/applications/files/services/files-only-office-manager.service.js.map +0 -1
- package/server/applications/files/services/files-only-office-manager.service.spec.js +0 -58
- package/server/applications/files/services/files-only-office-manager.service.spec.js.map +0 -1
- package/static/chunk-2XY4PMI5.js +0 -1
- package/static/chunk-33WFRCUP.js +0 -1
- package/static/chunk-3LVFDMTN.js +0 -1
- package/static/chunk-42L6C5MT.js +0 -1
- package/static/chunk-5WCQBTXW.js +0 -1
- package/static/chunk-A7R246NW.js +0 -1
- package/static/chunk-BSB4VROD.js +0 -2
- package/static/chunk-DHFQIFOF.js +0 -1
- package/static/chunk-DRHPEERW.js +0 -2
- package/static/chunk-FCGTI42I.js +0 -1
- package/static/chunk-H4RLHI3Y.js +0 -1
- package/static/chunk-ITVA26X2.js +0 -2
- package/static/chunk-IUJ4IK26.js +0 -1
- package/static/chunk-L3PDWJZ3.js +0 -3
- package/static/chunk-LBXOAKBD.js +0 -1
- package/static/chunk-LZKI5P5T.js +0 -1
- package/static/chunk-MYM43ENO.js +0 -1
- package/static/chunk-MZBO5PAR.js +0 -1
- package/static/chunk-NAH4V2R6.js +0 -2
- package/static/chunk-O7UXVNR2.js +0 -1
- package/static/chunk-PCFH5HCI.js +0 -2
- package/static/chunk-SRBOO7AO.js +0 -1
- package/static/chunk-UUX3M6DC.js +0 -1
- package/static/chunk-VJ2HWQRJ.js +0 -5
- package/static/chunk-VZPCXSRG.js +0 -2
- package/static/chunk-W72JYHOH.js +0 -1
- package/static/chunk-XHQEF2IX.js +0 -1
- package/static/chunk-XKEBQNQJ.js +0 -1
- package/static/chunk-ZERBTNFW.js +0 -13
- package/static/main-FE6GWZXU.js +0 -11
- /package/static/assets/pdfjs/web/images/{toolbarButton-sidebarToggle.svg → toolbarButton-viewsManagerToggle.svg} +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
--------------------------------------------------------------------------------
|
|
3
|
-
Package: @codemirror/
|
|
3
|
+
Package: @codemirror/lang-vue
|
|
4
4
|
License: "MIT"
|
|
5
5
|
|
|
6
6
|
MIT License
|
|
@@ -26,7 +26,7 @@ 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: @codemirror/lang-
|
|
29
|
+
Package: @codemirror/lang-angular
|
|
30
30
|
License: "MIT"
|
|
31
31
|
|
|
32
32
|
MIT License
|
|
@@ -52,12 +52,13 @@ 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:
|
|
55
|
+
Package: ngx-bootstrap
|
|
56
56
|
License: "MIT"
|
|
57
57
|
|
|
58
|
-
MIT License
|
|
58
|
+
The MIT License (MIT)
|
|
59
59
|
|
|
60
|
-
Copyright (
|
|
60
|
+
Copyright (c) 2015-2020 Valor Software
|
|
61
|
+
Copyright (c) 2015-2020 Dmitriy Shekhovtsov<valorkin@gmail.com>
|
|
61
62
|
|
|
62
63
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
63
64
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -66,25 +67,25 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
66
67
|
copies of the Software, and to permit persons to whom the Software is
|
|
67
68
|
furnished to do so, subject to the following conditions:
|
|
68
69
|
|
|
69
|
-
The above copyright notice and this permission notice shall be included in
|
|
70
|
-
|
|
70
|
+
The above copyright notice and this permission notice shall be included in all
|
|
71
|
+
copies or substantial portions of the Software.
|
|
71
72
|
|
|
72
73
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
73
74
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
74
75
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
75
76
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
76
77
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
77
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
78
|
-
|
|
78
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
79
|
+
SOFTWARE.
|
|
80
|
+
|
|
79
81
|
|
|
80
82
|
--------------------------------------------------------------------------------
|
|
81
|
-
Package:
|
|
83
|
+
Package: @codemirror/legacy-modes
|
|
82
84
|
License: "MIT"
|
|
83
85
|
|
|
84
|
-
|
|
86
|
+
MIT License
|
|
85
87
|
|
|
86
|
-
Copyright (
|
|
87
|
-
Copyright (c) 2015-2020 Dmitriy Shekhovtsov<valorkin@gmail.com>
|
|
88
|
+
Copyright (C) 2018-2021 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
|
|
88
89
|
|
|
89
90
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
90
91
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -93,20 +94,19 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
93
94
|
copies of the Software, and to permit persons to whom the Software is
|
|
94
95
|
furnished to do so, subject to the following conditions:
|
|
95
96
|
|
|
96
|
-
The above copyright notice and this permission notice shall be included in
|
|
97
|
-
copies or substantial portions of the Software.
|
|
97
|
+
The above copyright notice and this permission notice shall be included in
|
|
98
|
+
all copies or substantial portions of the Software.
|
|
98
99
|
|
|
99
100
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
100
101
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
101
102
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
102
103
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
103
104
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
104
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
105
|
-
SOFTWARE.
|
|
106
|
-
|
|
105
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
106
|
+
THE SOFTWARE.
|
|
107
107
|
|
|
108
108
|
--------------------------------------------------------------------------------
|
|
109
|
-
Package: @lezer/
|
|
109
|
+
Package: @lezer/xml
|
|
110
110
|
License: "MIT"
|
|
111
111
|
|
|
112
112
|
MIT License
|
|
@@ -132,7 +132,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
132
132
|
THE SOFTWARE.
|
|
133
133
|
|
|
134
134
|
--------------------------------------------------------------------------------
|
|
135
|
-
Package: @codemirror/lang-
|
|
135
|
+
Package: @codemirror/lang-xml
|
|
136
136
|
License: "MIT"
|
|
137
137
|
|
|
138
138
|
MIT License
|
|
@@ -158,12 +158,12 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
158
158
|
THE SOFTWARE.
|
|
159
159
|
|
|
160
160
|
--------------------------------------------------------------------------------
|
|
161
|
-
Package: @lezer/
|
|
161
|
+
Package: @lezer/yaml
|
|
162
162
|
License: "MIT"
|
|
163
163
|
|
|
164
164
|
MIT License
|
|
165
165
|
|
|
166
|
-
Copyright (C)
|
|
166
|
+
Copyright (C) 2024 by Marijn Haverbeke <marijnh@gmail.com> and others
|
|
167
167
|
|
|
168
168
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
169
169
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -182,14 +182,13 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
182
182
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
183
183
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
184
184
|
THE SOFTWARE.
|
|
185
|
-
|
|
186
185
|
--------------------------------------------------------------------------------
|
|
187
|
-
Package: @codemirror/lang-
|
|
186
|
+
Package: @codemirror/lang-yaml
|
|
188
187
|
License: "MIT"
|
|
189
188
|
|
|
190
189
|
MIT License
|
|
191
190
|
|
|
192
|
-
Copyright (C)
|
|
191
|
+
Copyright (C) 2024 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
|
|
193
192
|
|
|
194
193
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
195
194
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -210,7 +209,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
210
209
|
THE SOFTWARE.
|
|
211
210
|
|
|
212
211
|
--------------------------------------------------------------------------------
|
|
213
|
-
Package: @codemirror/lang-
|
|
212
|
+
Package: @codemirror/lang-less
|
|
214
213
|
License: "MIT"
|
|
215
214
|
|
|
216
215
|
MIT License
|
|
@@ -236,12 +235,12 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
236
235
|
THE SOFTWARE.
|
|
237
236
|
|
|
238
237
|
--------------------------------------------------------------------------------
|
|
239
|
-
Package: @
|
|
238
|
+
Package: @codemirror/lang-liquid
|
|
240
239
|
License: "MIT"
|
|
241
240
|
|
|
242
241
|
MIT License
|
|
243
242
|
|
|
244
|
-
Copyright (C) 2018 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
|
|
243
|
+
Copyright (C) 2018-2023 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
|
|
245
244
|
|
|
246
245
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
247
246
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -262,12 +261,12 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
262
261
|
THE SOFTWARE.
|
|
263
262
|
|
|
264
263
|
--------------------------------------------------------------------------------
|
|
265
|
-
Package: @
|
|
264
|
+
Package: @lezer/markdown
|
|
266
265
|
License: "MIT"
|
|
267
266
|
|
|
268
267
|
MIT License
|
|
269
268
|
|
|
270
|
-
Copyright (C)
|
|
269
|
+
Copyright (C) 2020 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
|
|
271
270
|
|
|
272
271
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
273
272
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -288,12 +287,12 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
288
287
|
THE SOFTWARE.
|
|
289
288
|
|
|
290
289
|
--------------------------------------------------------------------------------
|
|
291
|
-
Package: @
|
|
290
|
+
Package: @codemirror/lang-markdown
|
|
292
291
|
License: "MIT"
|
|
293
292
|
|
|
294
293
|
MIT License
|
|
295
294
|
|
|
296
|
-
Copyright (C)
|
|
295
|
+
Copyright (C) 2018-2021 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
|
|
297
296
|
|
|
298
297
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
299
298
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -312,13 +311,14 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
312
311
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
313
312
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
314
313
|
THE SOFTWARE.
|
|
314
|
+
|
|
315
315
|
--------------------------------------------------------------------------------
|
|
316
|
-
Package: @
|
|
316
|
+
Package: @lezer/php
|
|
317
317
|
License: "MIT"
|
|
318
318
|
|
|
319
319
|
MIT License
|
|
320
320
|
|
|
321
|
-
Copyright (C)
|
|
321
|
+
Copyright (C) 2018 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
|
|
322
322
|
|
|
323
323
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
324
324
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -339,12 +339,12 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
339
339
|
THE SOFTWARE.
|
|
340
340
|
|
|
341
341
|
--------------------------------------------------------------------------------
|
|
342
|
-
Package: @
|
|
342
|
+
Package: @codemirror/lang-php
|
|
343
343
|
License: "MIT"
|
|
344
344
|
|
|
345
345
|
MIT License
|
|
346
346
|
|
|
347
|
-
Copyright (C)
|
|
347
|
+
Copyright (C) 2018-2021 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
|
|
348
348
|
|
|
349
349
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
350
350
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -365,12 +365,12 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
365
365
|
THE SOFTWARE.
|
|
366
366
|
|
|
367
367
|
--------------------------------------------------------------------------------
|
|
368
|
-
Package: @
|
|
368
|
+
Package: @lezer/python
|
|
369
369
|
License: "MIT"
|
|
370
370
|
|
|
371
371
|
MIT License
|
|
372
372
|
|
|
373
|
-
Copyright (C)
|
|
373
|
+
Copyright (C) 2020 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
|
|
374
374
|
|
|
375
375
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
376
376
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -391,12 +391,12 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
391
391
|
THE SOFTWARE.
|
|
392
392
|
|
|
393
393
|
--------------------------------------------------------------------------------
|
|
394
|
-
Package: @codemirror/lang-
|
|
394
|
+
Package: @codemirror/lang-python
|
|
395
395
|
License: "MIT"
|
|
396
396
|
|
|
397
397
|
MIT License
|
|
398
398
|
|
|
399
|
-
Copyright (C)
|
|
399
|
+
Copyright (C) 2018-2021 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
|
|
400
400
|
|
|
401
401
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
402
402
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -417,12 +417,12 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
417
417
|
THE SOFTWARE.
|
|
418
418
|
|
|
419
419
|
--------------------------------------------------------------------------------
|
|
420
|
-
Package: @lezer/
|
|
420
|
+
Package: @lezer/rust
|
|
421
421
|
License: "MIT"
|
|
422
422
|
|
|
423
423
|
MIT License
|
|
424
424
|
|
|
425
|
-
Copyright (C)
|
|
425
|
+
Copyright (C) 2018 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
|
|
426
426
|
|
|
427
427
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
428
428
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -441,8 +441,9 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
441
441
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
442
442
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
443
443
|
THE SOFTWARE.
|
|
444
|
+
|
|
444
445
|
--------------------------------------------------------------------------------
|
|
445
|
-
Package: @codemirror/lang-
|
|
446
|
+
Package: @codemirror/lang-rust
|
|
446
447
|
License: "MIT"
|
|
447
448
|
|
|
448
449
|
MIT License
|
|
@@ -468,12 +469,12 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
468
469
|
THE SOFTWARE.
|
|
469
470
|
|
|
470
471
|
--------------------------------------------------------------------------------
|
|
471
|
-
Package: @
|
|
472
|
+
Package: @lezer/sass
|
|
472
473
|
License: "MIT"
|
|
473
474
|
|
|
474
475
|
MIT License
|
|
475
476
|
|
|
476
|
-
Copyright (C) 2018
|
|
477
|
+
Copyright (C) 2018 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
|
|
477
478
|
|
|
478
479
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
479
480
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -494,12 +495,12 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
494
495
|
THE SOFTWARE.
|
|
495
496
|
|
|
496
497
|
--------------------------------------------------------------------------------
|
|
497
|
-
Package: @codemirror/lang-
|
|
498
|
+
Package: @codemirror/lang-sass
|
|
498
499
|
License: "MIT"
|
|
499
500
|
|
|
500
501
|
MIT License
|
|
501
502
|
|
|
502
|
-
Copyright (C) 2018-
|
|
503
|
+
Copyright (C) 2018-2021 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
|
|
503
504
|
|
|
504
505
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
505
506
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -520,12 +521,12 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
520
521
|
THE SOFTWARE.
|
|
521
522
|
|
|
522
523
|
--------------------------------------------------------------------------------
|
|
523
|
-
Package: @
|
|
524
|
+
Package: @codemirror/lang-wast
|
|
524
525
|
License: "MIT"
|
|
525
526
|
|
|
526
527
|
MIT License
|
|
527
528
|
|
|
528
|
-
Copyright (C)
|
|
529
|
+
Copyright (C) 2018-2021 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
|
|
529
530
|
|
|
530
531
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
531
532
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -546,12 +547,12 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
546
547
|
THE SOFTWARE.
|
|
547
548
|
|
|
548
549
|
--------------------------------------------------------------------------------
|
|
549
|
-
Package: @
|
|
550
|
+
Package: @lezer/cpp
|
|
550
551
|
License: "MIT"
|
|
551
552
|
|
|
552
553
|
MIT License
|
|
553
554
|
|
|
554
|
-
Copyright (C)
|
|
555
|
+
Copyright (C) 2020 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
|
|
555
556
|
|
|
556
557
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
557
558
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -572,12 +573,12 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
572
573
|
THE SOFTWARE.
|
|
573
574
|
|
|
574
575
|
--------------------------------------------------------------------------------
|
|
575
|
-
Package: @
|
|
576
|
+
Package: @codemirror/lang-cpp
|
|
576
577
|
License: "MIT"
|
|
577
578
|
|
|
578
579
|
MIT License
|
|
579
580
|
|
|
580
|
-
Copyright (C) 2018 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
|
|
581
|
+
Copyright (C) 2018-2021 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
|
|
581
582
|
|
|
582
583
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
583
584
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -598,12 +599,12 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
598
599
|
THE SOFTWARE.
|
|
599
600
|
|
|
600
601
|
--------------------------------------------------------------------------------
|
|
601
|
-
Package: @
|
|
602
|
+
Package: @lezer/go
|
|
602
603
|
License: "MIT"
|
|
603
604
|
|
|
604
605
|
MIT License
|
|
605
606
|
|
|
606
|
-
Copyright (C)
|
|
607
|
+
Copyright (C) 2020 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
|
|
607
608
|
|
|
608
609
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
609
610
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -624,12 +625,12 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
624
625
|
THE SOFTWARE.
|
|
625
626
|
|
|
626
627
|
--------------------------------------------------------------------------------
|
|
627
|
-
Package: @
|
|
628
|
+
Package: @codemirror/lang-go
|
|
628
629
|
License: "MIT"
|
|
629
630
|
|
|
630
631
|
MIT License
|
|
631
632
|
|
|
632
|
-
Copyright (C)
|
|
633
|
+
Copyright (C) 2024 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
|
|
633
634
|
|
|
634
635
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
635
636
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -650,12 +651,12 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
650
651
|
THE SOFTWARE.
|
|
651
652
|
|
|
652
653
|
--------------------------------------------------------------------------------
|
|
653
|
-
Package: @
|
|
654
|
+
Package: @lezer/java
|
|
654
655
|
License: "MIT"
|
|
655
656
|
|
|
656
657
|
MIT License
|
|
657
658
|
|
|
658
|
-
Copyright (C)
|
|
659
|
+
Copyright (C) 2020 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
|
|
659
660
|
|
|
660
661
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
661
662
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -676,7 +677,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
676
677
|
THE SOFTWARE.
|
|
677
678
|
|
|
678
679
|
--------------------------------------------------------------------------------
|
|
679
|
-
Package: @codemirror/lang-
|
|
680
|
+
Package: @codemirror/lang-java
|
|
680
681
|
License: "MIT"
|
|
681
682
|
|
|
682
683
|
MIT License
|
|
@@ -702,12 +703,12 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
702
703
|
THE SOFTWARE.
|
|
703
704
|
|
|
704
705
|
--------------------------------------------------------------------------------
|
|
705
|
-
Package: @
|
|
706
|
+
Package: @codemirror/lang-jinja
|
|
706
707
|
License: "MIT"
|
|
707
708
|
|
|
708
709
|
MIT License
|
|
709
710
|
|
|
710
|
-
Copyright (C)
|
|
711
|
+
Copyright (C) 2025 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
|
|
711
712
|
|
|
712
713
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
713
714
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -728,12 +729,12 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
728
729
|
THE SOFTWARE.
|
|
729
730
|
|
|
730
731
|
--------------------------------------------------------------------------------
|
|
731
|
-
Package: @
|
|
732
|
+
Package: @lezer/html
|
|
732
733
|
License: "MIT"
|
|
733
734
|
|
|
734
735
|
MIT License
|
|
735
736
|
|
|
736
|
-
Copyright (C) 2018
|
|
737
|
+
Copyright (C) 2018 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
|
|
737
738
|
|
|
738
739
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
739
740
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -754,12 +755,12 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
754
755
|
THE SOFTWARE.
|
|
755
756
|
|
|
756
757
|
--------------------------------------------------------------------------------
|
|
757
|
-
Package: @
|
|
758
|
+
Package: @codemirror/lang-html
|
|
758
759
|
License: "MIT"
|
|
759
760
|
|
|
760
761
|
MIT License
|
|
761
762
|
|
|
762
|
-
Copyright (C)
|
|
763
|
+
Copyright (C) 2018-2021 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
|
|
763
764
|
|
|
764
765
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
765
766
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -780,12 +781,12 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
780
781
|
THE SOFTWARE.
|
|
781
782
|
|
|
782
783
|
--------------------------------------------------------------------------------
|
|
783
|
-
Package: @
|
|
784
|
+
Package: @lezer/css
|
|
784
785
|
License: "MIT"
|
|
785
786
|
|
|
786
787
|
MIT License
|
|
787
788
|
|
|
788
|
-
Copyright (C)
|
|
789
|
+
Copyright (C) 2018 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
|
|
789
790
|
|
|
790
791
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
791
792
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -806,12 +807,12 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
806
807
|
THE SOFTWARE.
|
|
807
808
|
|
|
808
809
|
--------------------------------------------------------------------------------
|
|
809
|
-
Package: @
|
|
810
|
+
Package: @codemirror/lang-css
|
|
810
811
|
License: "MIT"
|
|
811
812
|
|
|
812
813
|
MIT License
|
|
813
814
|
|
|
814
|
-
Copyright (C) 2018 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
|
|
815
|
+
Copyright (C) 2018-2021 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
|
|
815
816
|
|
|
816
817
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
817
818
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -832,12 +833,12 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
832
833
|
THE SOFTWARE.
|
|
833
834
|
|
|
834
835
|
--------------------------------------------------------------------------------
|
|
835
|
-
Package: @
|
|
836
|
+
Package: @lezer/javascript
|
|
836
837
|
License: "MIT"
|
|
837
838
|
|
|
838
839
|
MIT License
|
|
839
840
|
|
|
840
|
-
Copyright (C) 2018
|
|
841
|
+
Copyright (C) 2018 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
|
|
841
842
|
|
|
842
843
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
843
844
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -858,12 +859,12 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
858
859
|
THE SOFTWARE.
|
|
859
860
|
|
|
860
861
|
--------------------------------------------------------------------------------
|
|
861
|
-
Package: @
|
|
862
|
+
Package: @codemirror/lang-javascript
|
|
862
863
|
License: "MIT"
|
|
863
864
|
|
|
864
865
|
MIT License
|
|
865
866
|
|
|
866
|
-
Copyright (C) 2018 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
|
|
867
|
+
Copyright (C) 2018-2021 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
|
|
867
868
|
|
|
868
869
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
869
870
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -884,12 +885,12 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
884
885
|
THE SOFTWARE.
|
|
885
886
|
|
|
886
887
|
--------------------------------------------------------------------------------
|
|
887
|
-
Package: @
|
|
888
|
+
Package: @lezer/json
|
|
888
889
|
License: "MIT"
|
|
889
890
|
|
|
890
891
|
MIT License
|
|
891
892
|
|
|
892
|
-
Copyright (C)
|
|
893
|
+
Copyright (C) 2020 by Marijn Haverbeke <marijn@haverbeke.berlin>, Arun Srinivasan <rulfzid@gmail.com>, and others
|
|
893
894
|
|
|
894
895
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
895
896
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -908,14 +909,13 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
908
909
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
909
910
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
910
911
|
THE SOFTWARE.
|
|
911
|
-
|
|
912
912
|
--------------------------------------------------------------------------------
|
|
913
|
-
Package: @
|
|
913
|
+
Package: @codemirror/lang-json
|
|
914
914
|
License: "MIT"
|
|
915
915
|
|
|
916
916
|
MIT License
|
|
917
917
|
|
|
918
|
-
Copyright (C) 2018 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
|
|
918
|
+
Copyright (C) 2018-2021 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
|
|
919
919
|
|
|
920
920
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
921
921
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -936,7 +936,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
936
936
|
THE SOFTWARE.
|
|
937
937
|
|
|
938
938
|
--------------------------------------------------------------------------------
|
|
939
|
-
Package: @codemirror/lang-
|
|
939
|
+
Package: @codemirror/lang-sql
|
|
940
940
|
License: "MIT"
|
|
941
941
|
|
|
942
942
|
MIT License
|
|
@@ -1066,234 +1066,74 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
1066
1066
|
THE SOFTWARE.
|
|
1067
1067
|
|
|
1068
1068
|
--------------------------------------------------------------------------------
|
|
1069
|
-
Package: @
|
|
1070
|
-
License: "
|
|
1069
|
+
Package: @ali-hm/angular-tree-component
|
|
1070
|
+
License: "MIT"
|
|
1071
1071
|
|
|
1072
|
-
|
|
1072
|
+
The MIT License (MIT)
|
|
1073
|
+
|
|
1074
|
+
Copyright (c) 2020 Circlon Group
|
|
1075
|
+
|
|
1076
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1077
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
1078
|
+
in the Software without restriction, including without limitation the rights
|
|
1079
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1080
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
1081
|
+
furnished to do so, subject to the following conditions:
|
|
1082
|
+
|
|
1083
|
+
The above copyright notice and this permission notice shall be included in all
|
|
1084
|
+
copies or substantial portions of the Software.
|
|
1085
|
+
|
|
1086
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1087
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1088
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1089
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1090
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1091
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1092
|
+
SOFTWARE.
|
|
1073
1093
|
|
|
1074
1094
|
--------------------------------------------------------------------------------
|
|
1095
|
+
Package: ngx-window-token
|
|
1096
|
+
License: "MIT"
|
|
1075
1097
|
|
|
1076
|
-
Font Awesome Free License
|
|
1077
|
-
|
|
1078
|
-
Font Awesome Free is free, open source, and GPL friendly. You can use it for
|
|
1079
|
-
commercial projects, open source projects, or really almost whatever you want.
|
|
1080
|
-
Full Font Awesome Free license: https://fontawesome.com/license/free.
|
|
1081
1098
|
|
|
1082
1099
|
--------------------------------------------------------------------------------
|
|
1100
|
+
Package: ngx-clipboard
|
|
1101
|
+
License: "MIT"
|
|
1083
1102
|
|
|
1084
|
-
# Icons: CC BY 4.0 License (https://creativecommons.org/licenses/by/4.0/)
|
|
1085
|
-
|
|
1086
|
-
The Font Awesome Free download is licensed under a Creative Commons
|
|
1087
|
-
Attribution 4.0 International License and applies to all icons packaged
|
|
1088
|
-
as SVG and JS file types.
|
|
1089
1103
|
|
|
1090
1104
|
--------------------------------------------------------------------------------
|
|
1105
|
+
Package: @videogular/ngx-videogular
|
|
1106
|
+
License: "MIT"
|
|
1091
1107
|
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
In the Font Awesome Free download, the SIL OFL license applies to all icons
|
|
1095
|
-
packaged as web and desktop font files.
|
|
1108
|
+
MIT License
|
|
1096
1109
|
|
|
1097
|
-
Copyright (c)
|
|
1098
|
-
with Reserved Font Name: "Font Awesome".
|
|
1110
|
+
Copyright (c) 2021 Videogular
|
|
1099
1111
|
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
|
|
1112
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1113
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
1114
|
+
in the Software without restriction, including without limitation the rights
|
|
1115
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1116
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
1117
|
+
furnished to do so, subject to the following conditions:
|
|
1103
1118
|
|
|
1104
|
-
|
|
1105
|
-
|
|
1119
|
+
The above copyright notice and this permission notice shall be included in all
|
|
1120
|
+
copies or substantial portions of the Software.
|
|
1106
1121
|
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
|
|
1122
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1123
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1124
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1125
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1126
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1127
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1128
|
+
SOFTWARE.
|
|
1113
1129
|
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
redistributed and/or sold with any software provided that any reserved
|
|
1118
|
-
names are not used by derivative works. The fonts and derivatives,
|
|
1119
|
-
however, cannot be released under any other type of license. The
|
|
1120
|
-
requirement for fonts to remain under this license does not apply
|
|
1121
|
-
to any document created using the fonts or their derivatives.
|
|
1130
|
+
--------------------------------------------------------------------------------
|
|
1131
|
+
Package: @codemirror/commands
|
|
1132
|
+
License: "MIT"
|
|
1122
1133
|
|
|
1123
|
-
|
|
1124
|
-
"Font Software" refers to the set of files released by the Copyright
|
|
1125
|
-
Holder(s) under this license and clearly marked as such. This may
|
|
1126
|
-
include source files, build scripts and documentation.
|
|
1134
|
+
MIT License
|
|
1127
1135
|
|
|
1128
|
-
|
|
1129
|
-
copyright statement(s).
|
|
1130
|
-
|
|
1131
|
-
"Original Version" refers to the collection of Font Software components as
|
|
1132
|
-
distributed by the Copyright Holder(s).
|
|
1133
|
-
|
|
1134
|
-
"Modified Version" refers to any derivative made by adding to, deleting,
|
|
1135
|
-
or substituting — in part or in whole — any of the components of the
|
|
1136
|
-
Original Version, by changing formats or by porting the Font Software to a
|
|
1137
|
-
new environment.
|
|
1138
|
-
|
|
1139
|
-
"Author" refers to any designer, engineer, programmer, technical
|
|
1140
|
-
writer or other person who contributed to the Font Software.
|
|
1141
|
-
|
|
1142
|
-
PERMISSION & CONDITIONS
|
|
1143
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
|
1144
|
-
a copy of the Font Software, to use, study, copy, merge, embed, modify,
|
|
1145
|
-
redistribute, and sell modified and unmodified copies of the Font
|
|
1146
|
-
Software, subject to the following conditions:
|
|
1147
|
-
|
|
1148
|
-
1) Neither the Font Software nor any of its individual components,
|
|
1149
|
-
in Original or Modified Versions, may be sold by itself.
|
|
1150
|
-
|
|
1151
|
-
2) Original or Modified Versions of the Font Software may be bundled,
|
|
1152
|
-
redistributed and/or sold with any software, provided that each copy
|
|
1153
|
-
contains the above copyright notice and this license. These can be
|
|
1154
|
-
included either as stand-alone text files, human-readable headers or
|
|
1155
|
-
in the appropriate machine-readable metadata fields within text or
|
|
1156
|
-
binary files as long as those fields can be easily viewed by the user.
|
|
1157
|
-
|
|
1158
|
-
3) No Modified Version of the Font Software may use the Reserved Font
|
|
1159
|
-
Name(s) unless explicit written permission is granted by the corresponding
|
|
1160
|
-
Copyright Holder. This restriction only applies to the primary font name as
|
|
1161
|
-
presented to the users.
|
|
1162
|
-
|
|
1163
|
-
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
|
|
1164
|
-
Software shall not be used to promote, endorse or advertise any
|
|
1165
|
-
Modified Version, except to acknowledge the contribution(s) of the
|
|
1166
|
-
Copyright Holder(s) and the Author(s) or with their explicit written
|
|
1167
|
-
permission.
|
|
1168
|
-
|
|
1169
|
-
5) The Font Software, modified or unmodified, in part or in whole,
|
|
1170
|
-
must be distributed entirely under this license, and must not be
|
|
1171
|
-
distributed under any other license. The requirement for fonts to
|
|
1172
|
-
remain under this license does not apply to any document created
|
|
1173
|
-
using the Font Software.
|
|
1174
|
-
|
|
1175
|
-
TERMINATION
|
|
1176
|
-
This license becomes null and void if any of the above conditions are
|
|
1177
|
-
not met.
|
|
1178
|
-
|
|
1179
|
-
DISCLAIMER
|
|
1180
|
-
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
1181
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
|
|
1182
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
|
|
1183
|
-
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
|
|
1184
|
-
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
1185
|
-
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
|
|
1186
|
-
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
1187
|
-
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
|
|
1188
|
-
OTHER DEALINGS IN THE FONT SOFTWARE.
|
|
1189
|
-
|
|
1190
|
-
--------------------------------------------------------------------------------
|
|
1191
|
-
|
|
1192
|
-
# Code: MIT License (https://opensource.org/licenses/MIT)
|
|
1193
|
-
|
|
1194
|
-
In the Font Awesome Free download, the MIT license applies to all non-font and
|
|
1195
|
-
non-icon files.
|
|
1196
|
-
|
|
1197
|
-
Copyright 2025 Fonticons, Inc.
|
|
1198
|
-
|
|
1199
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
1200
|
-
this software and associated documentation files (the "Software"), to deal in the
|
|
1201
|
-
Software without restriction, including without limitation the rights to use, copy,
|
|
1202
|
-
modify, merge, publish, distribute, sublicense, and/or sell copies of the Software,
|
|
1203
|
-
and to permit persons to whom the Software is furnished to do so, subject to the
|
|
1204
|
-
following conditions:
|
|
1205
|
-
|
|
1206
|
-
The above copyright notice and this permission notice shall be included in all
|
|
1207
|
-
copies or substantial portions of the Software.
|
|
1208
|
-
|
|
1209
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
|
|
1210
|
-
INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
|
1211
|
-
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
|
1212
|
-
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
1213
|
-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
1214
|
-
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1215
|
-
|
|
1216
|
-
--------------------------------------------------------------------------------
|
|
1217
|
-
|
|
1218
|
-
# Attribution
|
|
1219
|
-
|
|
1220
|
-
Attribution is required by MIT, SIL OFL, and CC BY licenses. Downloaded Font
|
|
1221
|
-
Awesome Free files already contain embedded comments with sufficient
|
|
1222
|
-
attribution, so you shouldn't need to do anything additional when using these
|
|
1223
|
-
files normally.
|
|
1224
|
-
|
|
1225
|
-
We've kept attribution comments terse, so we ask that you do not actively work
|
|
1226
|
-
to remove them from files, especially code. They're a great way for folks to
|
|
1227
|
-
learn about Font Awesome.
|
|
1228
|
-
|
|
1229
|
-
--------------------------------------------------------------------------------
|
|
1230
|
-
|
|
1231
|
-
# Brand Icons
|
|
1232
|
-
|
|
1233
|
-
All brand icons are trademarks of their respective owners. The use of these
|
|
1234
|
-
trademarks does not indicate endorsement of the trademark holder by Font
|
|
1235
|
-
Awesome, nor vice versa. **Please do not use brand logos for any purpose except
|
|
1236
|
-
to represent the company, product, or service to which they refer.**
|
|
1237
|
-
|
|
1238
|
-
--------------------------------------------------------------------------------
|
|
1239
|
-
Package: @ali-hm/angular-tree-component
|
|
1240
|
-
License: "MIT"
|
|
1241
|
-
|
|
1242
|
-
The MIT License (MIT)
|
|
1243
|
-
|
|
1244
|
-
Copyright (c) 2020 Circlon Group
|
|
1245
|
-
|
|
1246
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1247
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
1248
|
-
in the Software without restriction, including without limitation the rights
|
|
1249
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1250
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
1251
|
-
furnished to do so, subject to the following conditions:
|
|
1252
|
-
|
|
1253
|
-
The above copyright notice and this permission notice shall be included in all
|
|
1254
|
-
copies or substantial portions of the Software.
|
|
1255
|
-
|
|
1256
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1257
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1258
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1259
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1260
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1261
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1262
|
-
SOFTWARE.
|
|
1263
|
-
|
|
1264
|
-
--------------------------------------------------------------------------------
|
|
1265
|
-
Package: @videogular/ngx-videogular
|
|
1266
|
-
License: "MIT"
|
|
1267
|
-
|
|
1268
|
-
MIT License
|
|
1269
|
-
|
|
1270
|
-
Copyright (c) 2021 Videogular
|
|
1271
|
-
|
|
1272
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1273
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
1274
|
-
in the Software without restriction, including without limitation the rights
|
|
1275
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1276
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
1277
|
-
furnished to do so, subject to the following conditions:
|
|
1278
|
-
|
|
1279
|
-
The above copyright notice and this permission notice shall be included in all
|
|
1280
|
-
copies or substantial portions of the Software.
|
|
1281
|
-
|
|
1282
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1283
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1284
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1285
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1286
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1287
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1288
|
-
SOFTWARE.
|
|
1289
|
-
|
|
1290
|
-
--------------------------------------------------------------------------------
|
|
1291
|
-
Package: @codemirror/commands
|
|
1292
|
-
License: "MIT"
|
|
1293
|
-
|
|
1294
|
-
MIT License
|
|
1295
|
-
|
|
1296
|
-
Copyright (C) 2018-2021 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
|
|
1136
|
+
Copyright (C) 2018-2021 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
|
|
1297
1137
|
|
|
1298
1138
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1299
1139
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -1449,7 +1289,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
1449
1289
|
THE SOFTWARE.
|
|
1450
1290
|
|
|
1451
1291
|
--------------------------------------------------------------------------------
|
|
1452
|
-
Package: @fortawesome/free-
|
|
1292
|
+
Package: @fortawesome/free-regular-svg-icons
|
|
1453
1293
|
License: "(CC-BY-4.0 AND MIT)"
|
|
1454
1294
|
|
|
1455
1295
|
Fonticons, Inc. (https://fontawesome.com)
|
|
@@ -1619,268 +1459,174 @@ Awesome, nor vice versa. **Please do not use brand logos for any purpose except
|
|
|
1619
1459
|
to represent the company, product, or service to which they refer.**
|
|
1620
1460
|
|
|
1621
1461
|
--------------------------------------------------------------------------------
|
|
1622
|
-
Package: @
|
|
1623
|
-
License: "MIT"
|
|
1624
|
-
|
|
1625
|
-
MIT License
|
|
1626
|
-
|
|
1627
|
-
Copyright (C) 2018-2021 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
|
|
1628
|
-
|
|
1629
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1630
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
1631
|
-
in the Software without restriction, including without limitation the rights
|
|
1632
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1633
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
1634
|
-
furnished to do so, subject to the following conditions:
|
|
1635
|
-
|
|
1636
|
-
The above copyright notice and this permission notice shall be included in
|
|
1637
|
-
all copies or substantial portions of the Software.
|
|
1462
|
+
Package: @fortawesome/free-brands-svg-icons
|
|
1463
|
+
License: "(CC-BY-4.0 AND MIT)"
|
|
1638
1464
|
|
|
1639
|
-
|
|
1640
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1641
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1642
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1643
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1644
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
1645
|
-
THE SOFTWARE.
|
|
1465
|
+
Fonticons, Inc. (https://fontawesome.com)
|
|
1646
1466
|
|
|
1647
1467
|
--------------------------------------------------------------------------------
|
|
1648
|
-
Package: @marijn/find-cluster-break
|
|
1649
|
-
License: "MIT"
|
|
1650
|
-
|
|
1651
|
-
MIT License
|
|
1652
|
-
|
|
1653
|
-
Copyright (C) 2024 by Marijn Haverbeke <marijn@haverbeke.berlin>
|
|
1654
1468
|
|
|
1655
|
-
|
|
1656
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
1657
|
-
in the Software without restriction, including without limitation the rights
|
|
1658
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1659
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
1660
|
-
furnished to do so, subject to the following conditions:
|
|
1661
|
-
|
|
1662
|
-
The above copyright notice and this permission notice shall be included in
|
|
1663
|
-
all copies or substantial portions of the Software.
|
|
1469
|
+
Font Awesome Free License
|
|
1664
1470
|
|
|
1665
|
-
|
|
1666
|
-
|
|
1667
|
-
|
|
1668
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1669
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1670
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
1671
|
-
THE SOFTWARE.
|
|
1471
|
+
Font Awesome Free is free, open source, and GPL friendly. You can use it for
|
|
1472
|
+
commercial projects, open source projects, or really almost whatever you want.
|
|
1473
|
+
Full Font Awesome Free license: https://fontawesome.com/license/free.
|
|
1672
1474
|
|
|
1673
1475
|
--------------------------------------------------------------------------------
|
|
1674
|
-
Package: @codemirror/state
|
|
1675
|
-
License: "MIT"
|
|
1676
|
-
|
|
1677
|
-
MIT License
|
|
1678
|
-
|
|
1679
|
-
Copyright (C) 2018-2021 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
|
|
1680
|
-
|
|
1681
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1682
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
1683
|
-
in the Software without restriction, including without limitation the rights
|
|
1684
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1685
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
1686
|
-
furnished to do so, subject to the following conditions:
|
|
1687
1476
|
|
|
1688
|
-
|
|
1689
|
-
all copies or substantial portions of the Software.
|
|
1477
|
+
# Icons: CC BY 4.0 License (https://creativecommons.org/licenses/by/4.0/)
|
|
1690
1478
|
|
|
1691
|
-
|
|
1692
|
-
|
|
1693
|
-
|
|
1694
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1695
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1696
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
1697
|
-
THE SOFTWARE.
|
|
1479
|
+
The Font Awesome Free download is licensed under a Creative Commons
|
|
1480
|
+
Attribution 4.0 International License and applies to all icons packaged
|
|
1481
|
+
as SVG and JS file types.
|
|
1698
1482
|
|
|
1699
1483
|
--------------------------------------------------------------------------------
|
|
1700
|
-
Package: style-mod
|
|
1701
|
-
License: "MIT"
|
|
1702
1484
|
|
|
1703
|
-
|
|
1485
|
+
# Fonts: SIL OFL 1.1 License
|
|
1704
1486
|
|
|
1705
|
-
|
|
1706
|
-
|
|
1707
|
-
in the Software without restriction, including without limitation the rights
|
|
1708
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1709
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
1710
|
-
furnished to do so, subject to the following conditions:
|
|
1487
|
+
In the Font Awesome Free download, the SIL OFL license applies to all icons
|
|
1488
|
+
packaged as web and desktop font files.
|
|
1711
1489
|
|
|
1712
|
-
|
|
1713
|
-
|
|
1490
|
+
Copyright (c) 2025 Fonticons, Inc. (https://fontawesome.com)
|
|
1491
|
+
with Reserved Font Name: "Font Awesome".
|
|
1714
1492
|
|
|
1715
|
-
|
|
1716
|
-
|
|
1717
|
-
|
|
1718
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1719
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1720
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
1721
|
-
THE SOFTWARE.
|
|
1493
|
+
This Font Software is licensed under the SIL Open Font License, Version 1.1.
|
|
1494
|
+
This license is copied below, and is also available with a FAQ at:
|
|
1495
|
+
http://scripts.sil.org/OFL
|
|
1722
1496
|
|
|
1723
|
-
|
|
1724
|
-
|
|
1725
|
-
License: "MIT"
|
|
1497
|
+
SIL OPEN FONT LICENSE
|
|
1498
|
+
Version 1.1 - 26 February 2007
|
|
1726
1499
|
|
|
1727
|
-
|
|
1500
|
+
PREAMBLE
|
|
1501
|
+
The goals of the Open Font License (OFL) are to stimulate worldwide
|
|
1502
|
+
development of collaborative font projects, to support the font creation
|
|
1503
|
+
efforts of academic and linguistic communities, and to provide a free and
|
|
1504
|
+
open framework in which fonts may be shared and improved in partnership
|
|
1505
|
+
with others.
|
|
1728
1506
|
|
|
1729
|
-
|
|
1730
|
-
|
|
1731
|
-
|
|
1732
|
-
|
|
1733
|
-
|
|
1734
|
-
|
|
1507
|
+
The OFL allows the licensed fonts to be used, studied, modified and
|
|
1508
|
+
redistributed freely as long as they are not sold by themselves. The
|
|
1509
|
+
fonts, including any derivative works, can be bundled, embedded,
|
|
1510
|
+
redistributed and/or sold with any software provided that any reserved
|
|
1511
|
+
names are not used by derivative works. The fonts and derivatives,
|
|
1512
|
+
however, cannot be released under any other type of license. The
|
|
1513
|
+
requirement for fonts to remain under this license does not apply
|
|
1514
|
+
to any document created using the fonts or their derivatives.
|
|
1735
1515
|
|
|
1736
|
-
|
|
1737
|
-
|
|
1516
|
+
DEFINITIONS
|
|
1517
|
+
"Font Software" refers to the set of files released by the Copyright
|
|
1518
|
+
Holder(s) under this license and clearly marked as such. This may
|
|
1519
|
+
include source files, build scripts and documentation.
|
|
1738
1520
|
|
|
1739
|
-
|
|
1740
|
-
|
|
1741
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1742
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1743
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1744
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
1745
|
-
THE SOFTWARE.
|
|
1521
|
+
"Reserved Font Name" refers to any names specified as such after the
|
|
1522
|
+
copyright statement(s).
|
|
1746
1523
|
|
|
1747
|
-
|
|
1748
|
-
|
|
1749
|
-
License: "MIT"
|
|
1524
|
+
"Original Version" refers to the collection of Font Software components as
|
|
1525
|
+
distributed by the Copyright Holder(s).
|
|
1750
1526
|
|
|
1751
|
-
|
|
1527
|
+
"Modified Version" refers to any derivative made by adding to, deleting,
|
|
1528
|
+
or substituting — in part or in whole — any of the components of the
|
|
1529
|
+
Original Version, by changing formats or by porting the Font Software to a
|
|
1530
|
+
new environment.
|
|
1752
1531
|
|
|
1753
|
-
|
|
1754
|
-
|
|
1755
|
-
in the Software without restriction, including without limitation the rights
|
|
1756
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1757
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
1758
|
-
furnished to do so, subject to the following conditions:
|
|
1532
|
+
"Author" refers to any designer, engineer, programmer, technical
|
|
1533
|
+
writer or other person who contributed to the Font Software.
|
|
1759
1534
|
|
|
1760
|
-
|
|
1761
|
-
|
|
1535
|
+
PERMISSION & CONDITIONS
|
|
1536
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
1537
|
+
a copy of the Font Software, to use, study, copy, merge, embed, modify,
|
|
1538
|
+
redistribute, and sell modified and unmodified copies of the Font
|
|
1539
|
+
Software, subject to the following conditions:
|
|
1762
1540
|
|
|
1763
|
-
|
|
1764
|
-
|
|
1765
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1766
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1767
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1768
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
1769
|
-
THE SOFTWARE.
|
|
1541
|
+
1) Neither the Font Software nor any of its individual components,
|
|
1542
|
+
in Original or Modified Versions, may be sold by itself.
|
|
1770
1543
|
|
|
1771
|
-
|
|
1772
|
-
|
|
1773
|
-
|
|
1544
|
+
2) Original or Modified Versions of the Font Software may be bundled,
|
|
1545
|
+
redistributed and/or sold with any software, provided that each copy
|
|
1546
|
+
contains the above copyright notice and this license. These can be
|
|
1547
|
+
included either as stand-alone text files, human-readable headers or
|
|
1548
|
+
in the appropriate machine-readable metadata fields within text or
|
|
1549
|
+
binary files as long as those fields can be easily viewed by the user.
|
|
1774
1550
|
|
|
1775
|
-
|
|
1551
|
+
3) No Modified Version of the Font Software may use the Reserved Font
|
|
1552
|
+
Name(s) unless explicit written permission is granted by the corresponding
|
|
1553
|
+
Copyright Holder. This restriction only applies to the primary font name as
|
|
1554
|
+
presented to the users.
|
|
1776
1555
|
|
|
1777
|
-
Copyright (
|
|
1556
|
+
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
|
|
1557
|
+
Software shall not be used to promote, endorse or advertise any
|
|
1558
|
+
Modified Version, except to acknowledge the contribution(s) of the
|
|
1559
|
+
Copyright Holder(s) and the Author(s) or with their explicit written
|
|
1560
|
+
permission.
|
|
1778
1561
|
|
|
1779
|
-
|
|
1780
|
-
|
|
1781
|
-
|
|
1782
|
-
|
|
1783
|
-
|
|
1784
|
-
furnished to do so, subject to the following conditions:
|
|
1562
|
+
5) The Font Software, modified or unmodified, in part or in whole,
|
|
1563
|
+
must be distributed entirely under this license, and must not be
|
|
1564
|
+
distributed under any other license. The requirement for fonts to
|
|
1565
|
+
remain under this license does not apply to any document created
|
|
1566
|
+
using the Font Software.
|
|
1785
1567
|
|
|
1786
|
-
|
|
1787
|
-
|
|
1568
|
+
TERMINATION
|
|
1569
|
+
This license becomes null and void if any of the above conditions are
|
|
1570
|
+
not met.
|
|
1788
1571
|
|
|
1789
|
-
|
|
1790
|
-
|
|
1791
|
-
|
|
1792
|
-
|
|
1793
|
-
|
|
1794
|
-
|
|
1795
|
-
|
|
1572
|
+
DISCLAIMER
|
|
1573
|
+
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
1574
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
|
|
1575
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
|
|
1576
|
+
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
|
|
1577
|
+
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
1578
|
+
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
|
|
1579
|
+
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
1580
|
+
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
|
|
1581
|
+
OTHER DEALINGS IN THE FONT SOFTWARE.
|
|
1796
1582
|
|
|
1797
1583
|
--------------------------------------------------------------------------------
|
|
1798
|
-
Package: @lezer/common
|
|
1799
|
-
License: "MIT"
|
|
1800
|
-
|
|
1801
|
-
MIT License
|
|
1802
1584
|
|
|
1803
|
-
|
|
1804
|
-
|
|
1805
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1806
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
1807
|
-
in the Software without restriction, including without limitation the rights
|
|
1808
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1809
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
1810
|
-
furnished to do so, subject to the following conditions:
|
|
1811
|
-
|
|
1812
|
-
The above copyright notice and this permission notice shall be included in
|
|
1813
|
-
all copies or substantial portions of the Software.
|
|
1814
|
-
|
|
1815
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1816
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1817
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1818
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1819
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1820
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
1821
|
-
THE SOFTWARE.
|
|
1822
|
-
|
|
1823
|
-
--------------------------------------------------------------------------------
|
|
1824
|
-
Package: @lezer/highlight
|
|
1825
|
-
License: "MIT"
|
|
1585
|
+
# Code: MIT License (https://opensource.org/licenses/MIT)
|
|
1826
1586
|
|
|
1827
|
-
MIT
|
|
1587
|
+
In the Font Awesome Free download, the MIT license applies to all non-font and
|
|
1588
|
+
non-icon files.
|
|
1828
1589
|
|
|
1829
|
-
Copyright
|
|
1590
|
+
Copyright 2025 Fonticons, Inc.
|
|
1830
1591
|
|
|
1831
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1832
|
-
|
|
1833
|
-
|
|
1834
|
-
|
|
1835
|
-
|
|
1836
|
-
|
|
1592
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
1593
|
+
this software and associated documentation files (the "Software"), to deal in the
|
|
1594
|
+
Software without restriction, including without limitation the rights to use, copy,
|
|
1595
|
+
modify, merge, publish, distribute, sublicense, and/or sell copies of the Software,
|
|
1596
|
+
and to permit persons to whom the Software is furnished to do so, subject to the
|
|
1597
|
+
following conditions:
|
|
1837
1598
|
|
|
1838
|
-
The above copyright notice and this permission notice shall be included in
|
|
1839
|
-
|
|
1599
|
+
The above copyright notice and this permission notice shall be included in all
|
|
1600
|
+
copies or substantial portions of the Software.
|
|
1840
1601
|
|
|
1841
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1842
|
-
|
|
1843
|
-
|
|
1844
|
-
|
|
1845
|
-
|
|
1846
|
-
|
|
1847
|
-
THE SOFTWARE.
|
|
1602
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
|
|
1603
|
+
INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
|
1604
|
+
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
|
1605
|
+
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
1606
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
1607
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1848
1608
|
|
|
1849
1609
|
--------------------------------------------------------------------------------
|
|
1850
|
-
Package: @codemirror/language
|
|
1851
|
-
License: "MIT"
|
|
1852
|
-
|
|
1853
|
-
MIT License
|
|
1854
1610
|
|
|
1855
|
-
|
|
1856
|
-
|
|
1857
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1858
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
1859
|
-
in the Software without restriction, including without limitation the rights
|
|
1860
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1861
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
1862
|
-
furnished to do so, subject to the following conditions:
|
|
1611
|
+
# Attribution
|
|
1863
1612
|
|
|
1864
|
-
|
|
1865
|
-
|
|
1613
|
+
Attribution is required by MIT, SIL OFL, and CC BY licenses. Downloaded Font
|
|
1614
|
+
Awesome Free files already contain embedded comments with sufficient
|
|
1615
|
+
attribution, so you shouldn't need to do anything additional when using these
|
|
1616
|
+
files normally.
|
|
1866
1617
|
|
|
1867
|
-
|
|
1868
|
-
|
|
1869
|
-
|
|
1870
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1871
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1872
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
1873
|
-
THE SOFTWARE.
|
|
1618
|
+
We've kept attribution comments terse, so we ask that you do not actively work
|
|
1619
|
+
to remove them from files, especially code. They're a great way for folks to
|
|
1620
|
+
learn about Font Awesome.
|
|
1874
1621
|
|
|
1875
1622
|
--------------------------------------------------------------------------------
|
|
1876
|
-
Package: ngx-window-token
|
|
1877
|
-
License: "MIT"
|
|
1878
|
-
|
|
1879
1623
|
|
|
1880
|
-
|
|
1881
|
-
Package: ngx-clipboard
|
|
1882
|
-
License: "MIT"
|
|
1624
|
+
# Brand Icons
|
|
1883
1625
|
|
|
1626
|
+
All brand icons are trademarks of their respective owners. The use of these
|
|
1627
|
+
trademarks does not indicate endorsement of the trademark holder by Font
|
|
1628
|
+
Awesome, nor vice versa. **Please do not use brand logos for any purpose except
|
|
1629
|
+
to represent the company, product, or service to which they refer.**
|
|
1884
1630
|
|
|
1885
1631
|
--------------------------------------------------------------------------------
|
|
1886
1632
|
Package: socket.io-client
|
|
@@ -1995,7 +1741,7 @@ License: "MIT"
|
|
|
1995
1741
|
|
|
1996
1742
|
(The MIT License)
|
|
1997
1743
|
|
|
1998
|
-
Copyright (c) 2014 Guillermo Rauch
|
|
1744
|
+
Copyright (c) 2014-present Guillermo Rauch and Socket.IO contributors
|
|
1999
1745
|
|
|
2000
1746
|
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
2001
1747
|
this software and associated documentation files (the 'Software'), to deal in
|
|
@@ -2816,6 +2562,260 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
2816
2562
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
2817
2563
|
THE SOFTWARE.
|
|
2818
2564
|
|
|
2565
|
+
--------------------------------------------------------------------------------
|
|
2566
|
+
Package: @codemirror/autocomplete
|
|
2567
|
+
License: "MIT"
|
|
2568
|
+
|
|
2569
|
+
MIT License
|
|
2570
|
+
|
|
2571
|
+
Copyright (C) 2018-2021 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
|
|
2572
|
+
|
|
2573
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2574
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
2575
|
+
in the Software without restriction, including without limitation the rights
|
|
2576
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2577
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
2578
|
+
furnished to do so, subject to the following conditions:
|
|
2579
|
+
|
|
2580
|
+
The above copyright notice and this permission notice shall be included in
|
|
2581
|
+
all copies or substantial portions of the Software.
|
|
2582
|
+
|
|
2583
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2584
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2585
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2586
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2587
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2588
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
2589
|
+
THE SOFTWARE.
|
|
2590
|
+
|
|
2591
|
+
--------------------------------------------------------------------------------
|
|
2592
|
+
Package: @marijn/find-cluster-break
|
|
2593
|
+
License: "MIT"
|
|
2594
|
+
|
|
2595
|
+
MIT License
|
|
2596
|
+
|
|
2597
|
+
Copyright (C) 2024 by Marijn Haverbeke <marijn@haverbeke.berlin>
|
|
2598
|
+
|
|
2599
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2600
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
2601
|
+
in the Software without restriction, including without limitation the rights
|
|
2602
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2603
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
2604
|
+
furnished to do so, subject to the following conditions:
|
|
2605
|
+
|
|
2606
|
+
The above copyright notice and this permission notice shall be included in
|
|
2607
|
+
all copies or substantial portions of the Software.
|
|
2608
|
+
|
|
2609
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2610
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2611
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2612
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2613
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2614
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
2615
|
+
THE SOFTWARE.
|
|
2616
|
+
|
|
2617
|
+
--------------------------------------------------------------------------------
|
|
2618
|
+
Package: @codemirror/state
|
|
2619
|
+
License: "MIT"
|
|
2620
|
+
|
|
2621
|
+
MIT License
|
|
2622
|
+
|
|
2623
|
+
Copyright (C) 2018-2021 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
|
|
2624
|
+
|
|
2625
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2626
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
2627
|
+
in the Software without restriction, including without limitation the rights
|
|
2628
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2629
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
2630
|
+
furnished to do so, subject to the following conditions:
|
|
2631
|
+
|
|
2632
|
+
The above copyright notice and this permission notice shall be included in
|
|
2633
|
+
all copies or substantial portions of the Software.
|
|
2634
|
+
|
|
2635
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2636
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2637
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2638
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2639
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2640
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
2641
|
+
THE SOFTWARE.
|
|
2642
|
+
|
|
2643
|
+
--------------------------------------------------------------------------------
|
|
2644
|
+
Package: style-mod
|
|
2645
|
+
License: "MIT"
|
|
2646
|
+
|
|
2647
|
+
Copyright (C) 2018 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
|
|
2648
|
+
|
|
2649
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2650
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
2651
|
+
in the Software without restriction, including without limitation the rights
|
|
2652
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2653
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
2654
|
+
furnished to do so, subject to the following conditions:
|
|
2655
|
+
|
|
2656
|
+
The above copyright notice and this permission notice shall be included in
|
|
2657
|
+
all copies or substantial portions of the Software.
|
|
2658
|
+
|
|
2659
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2660
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2661
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2662
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2663
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2664
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
2665
|
+
THE SOFTWARE.
|
|
2666
|
+
|
|
2667
|
+
--------------------------------------------------------------------------------
|
|
2668
|
+
Package: w3c-keyname
|
|
2669
|
+
License: "MIT"
|
|
2670
|
+
|
|
2671
|
+
Copyright (C) 2016 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
|
|
2672
|
+
|
|
2673
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2674
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
2675
|
+
in the Software without restriction, including without limitation the rights
|
|
2676
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2677
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
2678
|
+
furnished to do so, subject to the following conditions:
|
|
2679
|
+
|
|
2680
|
+
The above copyright notice and this permission notice shall be included in
|
|
2681
|
+
all copies or substantial portions of the Software.
|
|
2682
|
+
|
|
2683
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2684
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2685
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2686
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2687
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2688
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
2689
|
+
THE SOFTWARE.
|
|
2690
|
+
|
|
2691
|
+
--------------------------------------------------------------------------------
|
|
2692
|
+
Package: crelt
|
|
2693
|
+
License: "MIT"
|
|
2694
|
+
|
|
2695
|
+
Copyright (C) 2020 by Marijn Haverbeke <marijn@haverbeke.berlin>
|
|
2696
|
+
|
|
2697
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2698
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
2699
|
+
in the Software without restriction, including without limitation the rights
|
|
2700
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2701
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
2702
|
+
furnished to do so, subject to the following conditions:
|
|
2703
|
+
|
|
2704
|
+
The above copyright notice and this permission notice shall be included in
|
|
2705
|
+
all copies or substantial portions of the Software.
|
|
2706
|
+
|
|
2707
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2708
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2709
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2710
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2711
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2712
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
2713
|
+
THE SOFTWARE.
|
|
2714
|
+
|
|
2715
|
+
--------------------------------------------------------------------------------
|
|
2716
|
+
Package: @codemirror/view
|
|
2717
|
+
License: "MIT"
|
|
2718
|
+
|
|
2719
|
+
MIT License
|
|
2720
|
+
|
|
2721
|
+
Copyright (C) 2018-2021 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
|
|
2722
|
+
|
|
2723
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2724
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
2725
|
+
in the Software without restriction, including without limitation the rights
|
|
2726
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2727
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
2728
|
+
furnished to do so, subject to the following conditions:
|
|
2729
|
+
|
|
2730
|
+
The above copyright notice and this permission notice shall be included in
|
|
2731
|
+
all copies or substantial portions of the Software.
|
|
2732
|
+
|
|
2733
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2734
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2735
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2736
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2737
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2738
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
2739
|
+
THE SOFTWARE.
|
|
2740
|
+
|
|
2741
|
+
--------------------------------------------------------------------------------
|
|
2742
|
+
Package: @lezer/common
|
|
2743
|
+
License: "MIT"
|
|
2744
|
+
|
|
2745
|
+
MIT License
|
|
2746
|
+
|
|
2747
|
+
Copyright (C) 2018 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
|
|
2748
|
+
|
|
2749
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2750
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
2751
|
+
in the Software without restriction, including without limitation the rights
|
|
2752
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2753
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
2754
|
+
furnished to do so, subject to the following conditions:
|
|
2755
|
+
|
|
2756
|
+
The above copyright notice and this permission notice shall be included in
|
|
2757
|
+
all copies or substantial portions of the Software.
|
|
2758
|
+
|
|
2759
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2760
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2761
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2762
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2763
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2764
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
2765
|
+
THE SOFTWARE.
|
|
2766
|
+
|
|
2767
|
+
--------------------------------------------------------------------------------
|
|
2768
|
+
Package: @lezer/highlight
|
|
2769
|
+
License: "MIT"
|
|
2770
|
+
|
|
2771
|
+
MIT License
|
|
2772
|
+
|
|
2773
|
+
Copyright (C) 2018 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
|
|
2774
|
+
|
|
2775
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2776
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
2777
|
+
in the Software without restriction, including without limitation the rights
|
|
2778
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2779
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
2780
|
+
furnished to do so, subject to the following conditions:
|
|
2781
|
+
|
|
2782
|
+
The above copyright notice and this permission notice shall be included in
|
|
2783
|
+
all copies or substantial portions of the Software.
|
|
2784
|
+
|
|
2785
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2786
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2787
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2788
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2789
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2790
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
2791
|
+
THE SOFTWARE.
|
|
2792
|
+
|
|
2793
|
+
--------------------------------------------------------------------------------
|
|
2794
|
+
Package: @codemirror/language
|
|
2795
|
+
License: "MIT"
|
|
2796
|
+
|
|
2797
|
+
MIT License
|
|
2798
|
+
|
|
2799
|
+
Copyright (C) 2018-2021 by Marijn Haverbeke <marijn@haverbeke.berlin> and others
|
|
2800
|
+
|
|
2801
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2802
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
2803
|
+
in the Software without restriction, including without limitation the rights
|
|
2804
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2805
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
2806
|
+
furnished to do so, subject to the following conditions:
|
|
2807
|
+
|
|
2808
|
+
The above copyright notice and this permission notice shall be included in
|
|
2809
|
+
all copies or substantial portions of the Software.
|
|
2810
|
+
|
|
2811
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2812
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2813
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2814
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2815
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2816
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
2817
|
+
THE SOFTWARE.
|
|
2818
|
+
|
|
2819
2819
|
--------------------------------------------------------------------------------
|
|
2820
2820
|
Package: zone.js
|
|
2821
2821
|
License: "MIT"
|