plum-e2e 2.6.9 → 2.8.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/CLAUDE.md +17 -2
- package/LICENSE +21 -677
- package/README.md +1 -1
- package/backend/Dockerfile +1 -13
- package/backend/app.js +4 -14
- package/backend/config/scripts/create-step.mjs +1 -13
- package/backend/config/scripts/create-test.mjs +1 -13
- package/backend/config/scripts/generate-report.js +5 -15
- package/backend/config/scripts/run-tests.js +5 -16
- package/backend/constants/defaults.js +8 -0
- package/backend/constants/env.js +16 -0
- package/backend/constants/jobStatus.js +21 -0
- package/backend/constants/socketEvents.js +40 -0
- package/backend/constants/triggers.js +6 -14
- package/backend/entrypoint.sh +1 -13
- package/backend/lib/authHeader.js +16 -0
- package/backend/lib/globalRegistry.js +1 -13
- package/backend/lib/nodeRegister.js +11 -15
- package/backend/lib/reportFilename.js +1 -13
- package/backend/lib/retryRunner.js +1 -13
- package/backend/lib/runnerProcess.js +5 -16
- package/backend/lib/screenshotPoller.js +1 -13
- package/backend/lib/serverBootstrap.js +189 -0
- package/backend/lib/serverConfig.js +1 -13
- package/backend/lib/testChunker.js +1 -13
- package/backend/lib/testEnv.js +1 -13
- package/backend/mcp/server.js +5 -15
- package/backend/middleware/auth.js +4 -14
- package/backend/middleware/jwtAuth.js +16 -18
- package/backend/middleware/requireAdmin.js +1 -13
- package/backend/package.json +3 -3
- package/backend/playwright.config.js +1 -13
- package/backend/routes/active-runs.routes.js +18 -0
- package/backend/routes/auth.routes.js +1 -13
- package/backend/routes/backup.routes.js +10 -21
- package/backend/routes/cron.routes.js +1 -13
- package/backend/routes/node.routes.js +11 -148
- package/backend/routes/reports.routes.js +1 -13
- package/backend/routes/runners.routes.js +11 -21
- package/backend/routes/settings.routes.js +6 -17
- package/backend/routes/test-cases.routes.js +1 -13
- package/backend/routes/test-runs.routes.js +1 -13
- package/backend/routes/test-suites.routes.js +1 -13
- package/backend/routes/tests.routes.js +1 -13
- package/backend/routes/trigger.routes.js +23 -165
- package/backend/routes/users.routes.js +1 -13
- package/backend/scripts/manage-runners.mjs +19 -17
- package/backend/server.js +34 -151
- package/backend/services/activeRunsService.js +55 -0
- package/backend/services/backupCronService.js +1 -13
- package/backend/services/backupService.js +7 -17
- package/backend/services/cronService.js +57 -39
- package/backend/services/envService.js +1 -13
- package/backend/services/nodeExecutionService.js +140 -0
- package/backend/services/notificationService.js +7 -17
- package/backend/services/prisma.js +1 -13
- package/backend/services/reportService.js +21 -17
- package/backend/services/runnerService.js +46 -27
- package/backend/services/settingsService.js +19 -19
- package/backend/services/testCaseService.js +1 -13
- package/backend/services/testRunService.js +1 -13
- package/backend/services/testService.js +1 -13
- package/backend/services/testSuiteService.js +1 -13
- package/backend/services/triggerService.js +246 -0
- package/backend/services/userService.js +1 -13
- package/backend/websockets/socketHandler.js +99 -48
- package/bin/plum.js +1 -13
- package/bin/postinstall.js +1 -13
- package/bin/scaffold-tests.js +1 -13
- package/docker-compose.node.yml +1 -13
- package/docker-compose.yml +2 -13
- package/frontend/.svelte-kit/adapter-node/.vite/manifest.json +3 -3
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/BackLink.CvWWuO3h.css +0 -17
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/Badge.D1SV0Gv7.css +0 -17
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/ConfirmModal.Dd3uP-Sk.css +0 -17
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/EmptyState.DUDM4P19.css +0 -17
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/Modal.BuaCfdLj.css +0 -17
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/Pagination.DZmi2Po-.css +0 -17
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/Toast.DENwYn3g.css +0 -17
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/_layout.BuhMvMUj.css +0 -17
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/_page.0Eln51hV.css +0 -17
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/_page.5IJAEAjc.css +0 -17
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/_page.BR3wgXcZ.css +0 -17
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/_page.BWAH0Beh.css +0 -17
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/_page.BZfe6nWe.css +0 -17
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/_page.Bj_a_5lv.css +0 -17
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/_page.BwgOqeMo.css +0 -17
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/_page.CBHi6pzT.css +0 -17
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/_page.CFnbmY-D.css +0 -17
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/_page.DvMkmYA-.css +6 -0
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/_page._h2o67kg.css +0 -17
- package/frontend/.svelte-kit/adapter-node/chunks/BackLink.js +0 -17
- package/frontend/.svelte-kit/adapter-node/chunks/Badge.js +1 -18
- package/frontend/.svelte-kit/adapter-node/chunks/ConfirmModal.js +1 -18
- package/frontend/.svelte-kit/adapter-node/chunks/EmptyState.js +2 -19
- package/frontend/.svelte-kit/adapter-node/chunks/Modal.js +0 -17
- package/frontend/.svelte-kit/adapter-node/chunks/Toast.js +1 -18
- package/frontend/.svelte-kit/adapter-node/chunks/attributes.js +0 -17
- package/frontend/.svelte-kit/adapter-node/chunks/auth.js +0 -17
- package/frontend/.svelte-kit/adapter-node/chunks/auth2.js +0 -17
- package/frontend/.svelte-kit/adapter-node/chunks/client.js +0 -17
- package/frontend/.svelte-kit/adapter-node/chunks/common.js +9 -24
- package/frontend/.svelte-kit/adapter-node/chunks/constants.js +4 -18
- package/frontend/.svelte-kit/adapter-node/chunks/escaping.js +0 -17
- package/frontend/.svelte-kit/adapter-node/chunks/exports.js +0 -17
- package/frontend/.svelte-kit/adapter-node/chunks/format.js +0 -17
- package/frontend/.svelte-kit/adapter-node/chunks/index-server.js +0 -17
- package/frontend/.svelte-kit/adapter-node/chunks/index.js +4 -21
- package/frontend/.svelte-kit/adapter-node/chunks/index2.js +0 -17
- package/frontend/.svelte-kit/adapter-node/chunks/internal.js +1 -18
- package/frontend/.svelte-kit/adapter-node/chunks/reports.js +0 -17
- package/frontend/.svelte-kit/adapter-node/chunks/reports2.js +0 -17
- package/frontend/.svelte-kit/adapter-node/chunks/repository.js +10 -29
- package/frontend/.svelte-kit/adapter-node/chunks/runner.js +2 -20
- package/frontend/.svelte-kit/adapter-node/chunks/stores.js +0 -17
- package/frontend/.svelte-kit/adapter-node/chunks/theme.js +0 -17
- package/frontend/.svelte-kit/adapter-node/entries/fallbacks/error.svelte.js +0 -17
- package/frontend/.svelte-kit/adapter-node/entries/pages/_layout.js +0 -17
- package/frontend/.svelte-kit/adapter-node/entries/pages/_layout.svelte.js +0 -17
- package/frontend/.svelte-kit/adapter-node/entries/pages/_page.svelte.js +114 -98
- package/frontend/.svelte-kit/adapter-node/entries/pages/login/_page.svelte.js +1 -18
- package/frontend/.svelte-kit/adapter-node/entries/pages/reports/_id_/_page.svelte.js +1 -18
- package/frontend/.svelte-kit/adapter-node/entries/pages/reports/_page.svelte.js +1 -18
- package/frontend/.svelte-kit/adapter-node/entries/pages/reports/live/_page.svelte.js +1 -18
- package/frontend/.svelte-kit/adapter-node/entries/pages/scheduled-tests/_page.svelte.js +1 -18
- package/frontend/.svelte-kit/adapter-node/entries/pages/settings/_page.svelte.js +2 -19
- package/frontend/.svelte-kit/adapter-node/entries/pages/setup/_page.svelte.js +1 -18
- package/frontend/.svelte-kit/adapter-node/entries/pages/test-repository/_page.svelte.js +3 -20
- package/frontend/.svelte-kit/adapter-node/entries/pages/test-repository/runs/_id_/_page.svelte.js +3 -20
- package/frontend/.svelte-kit/adapter-node/entries/pages/test-repository/suites/_id_/_page.svelte.js +3 -20
- package/frontend/.svelte-kit/adapter-node/index.js +0 -17
- package/frontend/.svelte-kit/adapter-node/internal.js +0 -17
- package/frontend/.svelte-kit/adapter-node/manifest-full.js +1 -18
- package/frontend/.svelte-kit/adapter-node/manifest.js +1 -18
- package/frontend/.svelte-kit/adapter-node/nodes/0.js +1 -18
- package/frontend/.svelte-kit/adapter-node/nodes/1.js +1 -18
- package/frontend/.svelte-kit/adapter-node/nodes/10.js +1 -18
- package/frontend/.svelte-kit/adapter-node/nodes/11.js +1 -18
- package/frontend/.svelte-kit/adapter-node/nodes/12.js +1 -18
- package/frontend/.svelte-kit/adapter-node/nodes/2.js +2 -19
- package/frontend/.svelte-kit/adapter-node/nodes/3.js +1 -18
- package/frontend/.svelte-kit/adapter-node/nodes/4.js +1 -18
- package/frontend/.svelte-kit/adapter-node/nodes/5.js +1 -18
- package/frontend/.svelte-kit/adapter-node/nodes/6.js +1 -18
- package/frontend/.svelte-kit/adapter-node/nodes/7.js +1 -18
- package/frontend/.svelte-kit/adapter-node/nodes/8.js +1 -18
- package/frontend/.svelte-kit/adapter-node/nodes/9.js +1 -18
- package/frontend/.svelte-kit/ambient.d.ts +2 -17
- package/frontend/.svelte-kit/generated/client/app.js +0 -17
- package/frontend/.svelte-kit/generated/client/matchers.js +0 -17
- package/frontend/.svelte-kit/generated/client/nodes/0.js +0 -17
- package/frontend/.svelte-kit/generated/client/nodes/1.js +0 -17
- package/frontend/.svelte-kit/generated/client/nodes/10.js +0 -17
- package/frontend/.svelte-kit/generated/client/nodes/11.js +0 -17
- package/frontend/.svelte-kit/generated/client/nodes/12.js +0 -17
- package/frontend/.svelte-kit/generated/client/nodes/2.js +0 -17
- package/frontend/.svelte-kit/generated/client/nodes/3.js +0 -17
- package/frontend/.svelte-kit/generated/client/nodes/4.js +0 -17
- package/frontend/.svelte-kit/generated/client/nodes/5.js +0 -17
- package/frontend/.svelte-kit/generated/client/nodes/6.js +0 -17
- package/frontend/.svelte-kit/generated/client/nodes/7.js +0 -17
- package/frontend/.svelte-kit/generated/client/nodes/8.js +0 -17
- package/frontend/.svelte-kit/generated/client/nodes/9.js +0 -17
- package/frontend/.svelte-kit/generated/client-optimized/app.js +0 -17
- package/frontend/.svelte-kit/generated/client-optimized/matchers.js +0 -17
- package/frontend/.svelte-kit/generated/client-optimized/nodes/0.js +0 -17
- package/frontend/.svelte-kit/generated/client-optimized/nodes/1.js +0 -17
- package/frontend/.svelte-kit/generated/client-optimized/nodes/10.js +0 -17
- package/frontend/.svelte-kit/generated/client-optimized/nodes/11.js +0 -17
- package/frontend/.svelte-kit/generated/client-optimized/nodes/12.js +0 -17
- package/frontend/.svelte-kit/generated/client-optimized/nodes/2.js +0 -17
- package/frontend/.svelte-kit/generated/client-optimized/nodes/3.js +0 -17
- package/frontend/.svelte-kit/generated/client-optimized/nodes/4.js +0 -17
- package/frontend/.svelte-kit/generated/client-optimized/nodes/5.js +0 -17
- package/frontend/.svelte-kit/generated/client-optimized/nodes/6.js +0 -17
- package/frontend/.svelte-kit/generated/client-optimized/nodes/7.js +0 -17
- package/frontend/.svelte-kit/generated/client-optimized/nodes/8.js +0 -17
- package/frontend/.svelte-kit/generated/client-optimized/nodes/9.js +0 -17
- package/frontend/.svelte-kit/generated/root.js +0 -17
- package/frontend/.svelte-kit/generated/root.svelte +0 -17
- package/frontend/.svelte-kit/generated/server/internal.js +1 -18
- package/frontend/.svelte-kit/non-ambient.d.ts +0 -17
- package/frontend/.svelte-kit/output/client/.vite/manifest.json +225 -224
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/0.BhSG-jZH.css +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/10.CdaQUS6U.css +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/11.BWAH0Beh.css +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/12.Bj_a_5lv.css +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/2.DvMkmYA-.css +6 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/3.BR3wgXcZ.css +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/4.0Eln51hV.css +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/5.DFV9OgAu.css +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/6.CFnbmY-D.css +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/7.CBHi6pzT.css +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/8.BwgOqeMo.css +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/9._h2o67kg.css +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/BackLink.CvWWuO3h.css +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/Badge.D1SV0Gv7.css +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/Button.FOWXxvc7.css +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/ConfirmModal.Dd3uP-Sk.css +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/EmptyState.DUDM4P19.css +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/Modal.BZpm0HP8.css +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/Modal.BuaCfdLj.css +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/Pagination.DZmi2Po-.css +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/Toast.DENwYn3g.css +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/_layout.BuhMvMUj.css +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/_page.0Eln51hV.css +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/_page.5IJAEAjc.css +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/_page.BR3wgXcZ.css +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/_page.BWAH0Beh.css +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/_page.BZfe6nWe.css +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/_page.Bj_a_5lv.css +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/_page.BwgOqeMo.css +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/_page.CBHi6pzT.css +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/_page.CFnbmY-D.css +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/_page.DvMkmYA-.css +6 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/_page._h2o67kg.css +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/2zMvi6fR.js +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/{D2cvzNT9.js → 3InFPLvE.js} +1 -18
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/BAACMRH5.js +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/BAMUGSh7.js +6 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/BKuh57WU.js +6 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/{DkNBSlo2.js → BUwxRmHf.js} +1 -18
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/Bfc47y5P.js +0 -17
- package/frontend/{build/client/_app/immutable/chunks/DYlaQsvN.js → .svelte-kit/output/client/_app/immutable/chunks/BmZ9upwL.js} +1 -18
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/C1Vid6wz.js +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/C8OURRSs.js +0 -17
- package/frontend/{build/client/_app/immutable/chunks/oN0Z3NSF.js → .svelte-kit/output/client/_app/immutable/chunks/CGeZlCaI.js} +1 -18
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/CKDtmZUQ.js +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/CMBQQ9RZ.js +0 -17
- package/frontend/{build/client/_app/immutable/chunks/BjUpWNbl.js → .svelte-kit/output/client/_app/immutable/chunks/CMEtqUfQ.js} +1 -18
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/CNdcuGR0.js +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/CUC98kMZ.js +6 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/CgnwuKKO.js +0 -17
- package/frontend/{build/client/_app/immutable/chunks/B98sHkeB.js → .svelte-kit/output/client/_app/immutable/chunks/Co3xKhEp.js} +1 -18
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/CuqnZUex.js +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/{DlNYZJ7K.js → CzlPaHY9.js} +1 -18
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/DCgHuuvs.js +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/DHM6H-es.js +7 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/{3IV-uqHa.js → DMZwI8Cj.js} +1 -18
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/DMyTUV-Y.js +8 -0
- package/frontend/{build/client/_app/immutable/chunks/D2gYTmAA.js → .svelte-kit/output/client/_app/immutable/chunks/DSLBMEpr.js} +1 -18
- package/frontend/{build/client/_app/immutable/chunks/DDblTLLE.js → .svelte-kit/output/client/_app/immutable/chunks/DbgD7JLa.js} +1 -18
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/Dlnxgs49.js +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/TOCyHP97.js +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/nURnIknV.js +6 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/t-La0hgu.js +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/w0D4Uzlq.js +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/entry/{app.BCWbw5zZ.js → app.BkBD0hgA.js} +2 -19
- package/frontend/.svelte-kit/output/client/_app/immutable/entry/start.BxeX1Uxs.js +6 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/nodes/0.ChjDHxSJ.js +11 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/nodes/1.DBSWa36f.js +6 -0
- package/frontend/{build/client/_app/immutable/nodes/10.Bn4Ma-MU.js → .svelte-kit/output/client/_app/immutable/nodes/10.DEbnxfND.js} +1 -18
- package/frontend/{build/client/_app/immutable/nodes/11.BacEu7sW.js → .svelte-kit/output/client/_app/immutable/nodes/11.O4cjXCg4.js} +1 -18
- package/frontend/.svelte-kit/output/client/_app/immutable/nodes/12.BWQdeRdX.js +6 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/nodes/2.BnHalSCi.js +6 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/nodes/{3.DHx0kho3.js → 3._S1vrLVF.js} +1 -18
- package/frontend/{build/client/_app/immutable/nodes/4.CnaMiirx.js → .svelte-kit/output/client/_app/immutable/nodes/4.D-YT_JJe.js} +1 -18
- package/frontend/.svelte-kit/output/client/_app/immutable/nodes/{5.B6m-zTVe.js → 5.BiFBiWcW.js} +1 -18
- package/frontend/.svelte-kit/output/client/_app/immutable/nodes/{6.BPDag1zv.js → 6.BNS-W0R_.js} +1 -18
- package/frontend/{build/client/_app/immutable/nodes/7.D7LwxSvT.js → .svelte-kit/output/client/_app/immutable/nodes/7.C-pKvVZy.js} +1 -18
- package/frontend/.svelte-kit/output/client/_app/immutable/nodes/{8.CCkNX20G.js → 8.BEUdazrw.js} +1 -18
- package/frontend/.svelte-kit/output/client/_app/immutable/nodes/{9.HDerA6JV.js → 9.CrLHYPEJ.js} +1 -18
- package/frontend/.svelte-kit/output/client/_app/version.json +1 -1
- package/frontend/.svelte-kit/output/server/.vite/manifest.json +3 -3
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/BackLink.CvWWuO3h.css +0 -17
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/Badge.D1SV0Gv7.css +0 -17
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/ConfirmModal.Dd3uP-Sk.css +0 -17
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/EmptyState.DUDM4P19.css +0 -17
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/Modal.BuaCfdLj.css +0 -17
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/Pagination.DZmi2Po-.css +0 -17
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/Toast.DENwYn3g.css +0 -17
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/_layout.BuhMvMUj.css +0 -17
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/_page.0Eln51hV.css +0 -17
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/_page.5IJAEAjc.css +0 -17
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/_page.BR3wgXcZ.css +0 -17
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/_page.BWAH0Beh.css +0 -17
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/_page.BZfe6nWe.css +0 -17
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/_page.Bj_a_5lv.css +0 -17
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/_page.BwgOqeMo.css +0 -17
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/_page.CBHi6pzT.css +0 -17
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/_page.CFnbmY-D.css +0 -17
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/_page.DvMkmYA-.css +6 -0
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/_page._h2o67kg.css +0 -17
- package/frontend/.svelte-kit/output/server/chunks/BackLink.js +0 -17
- package/frontend/.svelte-kit/output/server/chunks/Badge.js +1 -18
- package/frontend/.svelte-kit/output/server/chunks/ConfirmModal.js +1 -18
- package/frontend/.svelte-kit/output/server/chunks/EmptyState.js +2 -19
- package/frontend/.svelte-kit/output/server/chunks/Modal.js +0 -17
- package/frontend/.svelte-kit/output/server/chunks/Toast.js +1 -18
- package/frontend/.svelte-kit/output/server/chunks/attributes.js +0 -17
- package/frontend/.svelte-kit/output/server/chunks/auth.js +0 -17
- package/frontend/.svelte-kit/output/server/chunks/auth2.js +0 -17
- package/frontend/.svelte-kit/output/server/chunks/client.js +0 -17
- package/frontend/.svelte-kit/output/server/chunks/common.js +9 -24
- package/frontend/.svelte-kit/output/server/chunks/constants.js +4 -18
- package/frontend/.svelte-kit/output/server/chunks/escaping.js +0 -17
- package/frontend/.svelte-kit/output/server/chunks/exports.js +0 -17
- package/frontend/.svelte-kit/output/server/chunks/format.js +0 -17
- package/frontend/.svelte-kit/output/server/chunks/index-server.js +0 -17
- package/frontend/.svelte-kit/output/server/chunks/index.js +4 -21
- package/frontend/.svelte-kit/output/server/chunks/index2.js +0 -17
- package/frontend/.svelte-kit/output/server/chunks/internal.js +1 -18
- package/frontend/.svelte-kit/output/server/chunks/reports.js +0 -17
- package/frontend/.svelte-kit/output/server/chunks/reports2.js +0 -17
- package/frontend/.svelte-kit/output/server/chunks/repository.js +10 -29
- package/frontend/.svelte-kit/output/server/chunks/runner.js +2 -20
- package/frontend/.svelte-kit/output/server/chunks/stores.js +0 -17
- package/frontend/.svelte-kit/output/server/chunks/theme.js +0 -17
- package/frontend/.svelte-kit/output/server/entries/fallbacks/error.svelte.js +0 -17
- package/frontend/.svelte-kit/output/server/entries/pages/_layout.js +0 -17
- package/frontend/.svelte-kit/output/server/entries/pages/_layout.svelte.js +0 -17
- package/frontend/.svelte-kit/output/server/entries/pages/_page.svelte.js +114 -98
- package/frontend/.svelte-kit/output/server/entries/pages/login/_page.svelte.js +1 -18
- package/frontend/.svelte-kit/output/server/entries/pages/reports/_id_/_page.svelte.js +1 -18
- package/frontend/.svelte-kit/output/server/entries/pages/reports/_page.svelte.js +1 -18
- package/frontend/.svelte-kit/output/server/entries/pages/reports/live/_page.svelte.js +1 -18
- package/frontend/.svelte-kit/output/server/entries/pages/scheduled-tests/_page.svelte.js +1 -18
- package/frontend/.svelte-kit/output/server/entries/pages/settings/_page.svelte.js +2 -19
- package/frontend/.svelte-kit/output/server/entries/pages/setup/_page.svelte.js +1 -18
- package/frontend/.svelte-kit/output/server/entries/pages/test-repository/_page.svelte.js +3 -20
- package/frontend/.svelte-kit/output/server/entries/pages/test-repository/runs/_id_/_page.svelte.js +3 -20
- package/frontend/.svelte-kit/output/server/entries/pages/test-repository/suites/_id_/_page.svelte.js +3 -20
- package/frontend/.svelte-kit/output/server/index.js +0 -17
- package/frontend/.svelte-kit/output/server/internal.js +0 -17
- package/frontend/.svelte-kit/output/server/manifest-full.js +1 -18
- package/frontend/.svelte-kit/output/server/manifest.js +1 -18
- package/frontend/.svelte-kit/output/server/nodes/0.js +1 -18
- package/frontend/.svelte-kit/output/server/nodes/1.js +1 -18
- package/frontend/.svelte-kit/output/server/nodes/10.js +1 -18
- package/frontend/.svelte-kit/output/server/nodes/11.js +1 -18
- package/frontend/.svelte-kit/output/server/nodes/12.js +1 -18
- package/frontend/.svelte-kit/output/server/nodes/2.js +2 -19
- package/frontend/.svelte-kit/output/server/nodes/3.js +1 -18
- package/frontend/.svelte-kit/output/server/nodes/4.js +1 -18
- package/frontend/.svelte-kit/output/server/nodes/5.js +1 -18
- package/frontend/.svelte-kit/output/server/nodes/6.js +1 -18
- package/frontend/.svelte-kit/output/server/nodes/7.js +1 -18
- package/frontend/.svelte-kit/output/server/nodes/8.js +1 -18
- package/frontend/.svelte-kit/output/server/nodes/9.js +1 -18
- package/frontend/Dockerfile +1 -13
- package/frontend/build/client/_app/immutable/assets/0.BhSG-jZH.css +0 -17
- package/frontend/build/client/_app/immutable/assets/0.BhSG-jZH.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/0.BhSG-jZH.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/10.CdaQUS6U.css +0 -17
- package/frontend/build/client/_app/immutable/assets/10.CdaQUS6U.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/10.CdaQUS6U.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/11.BWAH0Beh.css +0 -17
- package/frontend/build/client/_app/immutable/assets/11.BWAH0Beh.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/11.BWAH0Beh.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/12.Bj_a_5lv.css +0 -17
- package/frontend/build/client/_app/immutable/assets/12.Bj_a_5lv.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/12.Bj_a_5lv.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/2.DvMkmYA-.css +6 -0
- package/frontend/build/client/_app/immutable/assets/2.DvMkmYA-.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/2.DvMkmYA-.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/3.BR3wgXcZ.css +0 -17
- package/frontend/build/client/_app/immutable/assets/3.BR3wgXcZ.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/3.BR3wgXcZ.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/4.0Eln51hV.css +0 -17
- package/frontend/build/client/_app/immutable/assets/4.0Eln51hV.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/4.0Eln51hV.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/5.DFV9OgAu.css +0 -17
- package/frontend/build/client/_app/immutable/assets/5.DFV9OgAu.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/5.DFV9OgAu.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/6.CFnbmY-D.css +0 -17
- package/frontend/build/client/_app/immutable/assets/6.CFnbmY-D.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/6.CFnbmY-D.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/7.CBHi6pzT.css +0 -17
- package/frontend/build/client/_app/immutable/assets/7.CBHi6pzT.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/7.CBHi6pzT.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/8.BwgOqeMo.css +0 -17
- package/frontend/build/client/_app/immutable/assets/8.BwgOqeMo.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/8.BwgOqeMo.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/9._h2o67kg.css +0 -17
- package/frontend/build/client/_app/immutable/assets/9._h2o67kg.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/9._h2o67kg.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/BackLink.CvWWuO3h.css +0 -17
- package/frontend/build/client/_app/immutable/assets/BackLink.CvWWuO3h.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/BackLink.CvWWuO3h.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/Badge.D1SV0Gv7.css +0 -17
- package/frontend/build/client/_app/immutable/assets/Badge.D1SV0Gv7.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/Badge.D1SV0Gv7.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/Button.FOWXxvc7.css +0 -17
- package/frontend/build/client/_app/immutable/assets/Button.FOWXxvc7.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/Button.FOWXxvc7.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/ConfirmModal.Dd3uP-Sk.css +0 -17
- package/frontend/build/client/_app/immutable/assets/ConfirmModal.Dd3uP-Sk.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/ConfirmModal.Dd3uP-Sk.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/EmptyState.DUDM4P19.css +0 -17
- package/frontend/build/client/_app/immutable/assets/EmptyState.DUDM4P19.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/EmptyState.DUDM4P19.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/Modal.BZpm0HP8.css +0 -17
- package/frontend/build/client/_app/immutable/assets/Modal.BZpm0HP8.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/Modal.BZpm0HP8.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/Modal.BuaCfdLj.css +0 -17
- package/frontend/build/client/_app/immutable/assets/Modal.BuaCfdLj.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/Modal.BuaCfdLj.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/Pagination.DZmi2Po-.css +0 -17
- package/frontend/build/client/_app/immutable/assets/Pagination.DZmi2Po-.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/Pagination.DZmi2Po-.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/Toast.DENwYn3g.css +0 -17
- package/frontend/build/client/_app/immutable/assets/Toast.DENwYn3g.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/Toast.DENwYn3g.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/_layout.BuhMvMUj.css +0 -17
- package/frontend/build/client/_app/immutable/assets/_layout.BuhMvMUj.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/_layout.BuhMvMUj.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.0Eln51hV.css +0 -17
- package/frontend/build/client/_app/immutable/assets/_page.0Eln51hV.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.0Eln51hV.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.5IJAEAjc.css +0 -17
- package/frontend/build/client/_app/immutable/assets/_page.5IJAEAjc.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.5IJAEAjc.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.BR3wgXcZ.css +0 -17
- package/frontend/build/client/_app/immutable/assets/_page.BR3wgXcZ.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.BR3wgXcZ.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.BWAH0Beh.css +0 -17
- package/frontend/build/client/_app/immutable/assets/_page.BWAH0Beh.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.BWAH0Beh.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.BZfe6nWe.css +0 -17
- package/frontend/build/client/_app/immutable/assets/_page.BZfe6nWe.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.BZfe6nWe.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.Bj_a_5lv.css +0 -17
- package/frontend/build/client/_app/immutable/assets/_page.Bj_a_5lv.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.Bj_a_5lv.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.BwgOqeMo.css +0 -17
- package/frontend/build/client/_app/immutable/assets/_page.BwgOqeMo.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.BwgOqeMo.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.CBHi6pzT.css +0 -17
- package/frontend/build/client/_app/immutable/assets/_page.CBHi6pzT.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.CBHi6pzT.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.CFnbmY-D.css +0 -17
- package/frontend/build/client/_app/immutable/assets/_page.CFnbmY-D.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.CFnbmY-D.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.DvMkmYA-.css +6 -0
- package/frontend/build/client/_app/immutable/assets/_page.DvMkmYA-.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.DvMkmYA-.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/_page._h2o67kg.css +0 -17
- package/frontend/build/client/_app/immutable/assets/_page._h2o67kg.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/_page._h2o67kg.css.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/2zMvi6fR.js +0 -17
- package/frontend/build/client/_app/immutable/chunks/2zMvi6fR.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/2zMvi6fR.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/{D2cvzNT9.js → 3InFPLvE.js} +1 -18
- package/frontend/build/client/_app/immutable/chunks/3InFPLvE.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/3InFPLvE.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/BAACMRH5.js +0 -17
- package/frontend/build/client/_app/immutable/chunks/BAACMRH5.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/BAACMRH5.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/BAMUGSh7.js +6 -0
- package/frontend/build/client/_app/immutable/chunks/BAMUGSh7.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/BAMUGSh7.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/BKuh57WU.js +6 -0
- package/frontend/build/client/_app/immutable/chunks/BKuh57WU.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/BKuh57WU.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/{DkNBSlo2.js → BUwxRmHf.js} +1 -18
- package/frontend/build/client/_app/immutable/chunks/BUwxRmHf.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/BUwxRmHf.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/Bfc47y5P.js +0 -17
- package/frontend/build/client/_app/immutable/chunks/Bfc47y5P.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/Bfc47y5P.js.gz +0 -0
- package/frontend/{.svelte-kit/output/client/_app/immutable/chunks/DYlaQsvN.js → build/client/_app/immutable/chunks/BmZ9upwL.js} +1 -18
- package/frontend/build/client/_app/immutable/chunks/BmZ9upwL.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/BmZ9upwL.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/C1Vid6wz.js +0 -17
- package/frontend/build/client/_app/immutable/chunks/C1Vid6wz.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/C1Vid6wz.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/C8OURRSs.js +0 -17
- package/frontend/build/client/_app/immutable/chunks/C8OURRSs.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/C8OURRSs.js.gz +0 -0
- package/frontend/{.svelte-kit/output/client/_app/immutable/chunks/oN0Z3NSF.js → build/client/_app/immutable/chunks/CGeZlCaI.js} +1 -18
- package/frontend/build/client/_app/immutable/chunks/CGeZlCaI.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/CGeZlCaI.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/CKDtmZUQ.js +0 -17
- package/frontend/build/client/_app/immutable/chunks/CKDtmZUQ.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/CKDtmZUQ.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/CMBQQ9RZ.js +0 -17
- package/frontend/build/client/_app/immutable/chunks/CMBQQ9RZ.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/CMBQQ9RZ.js.gz +0 -0
- package/frontend/{.svelte-kit/output/client/_app/immutable/chunks/BjUpWNbl.js → build/client/_app/immutable/chunks/CMEtqUfQ.js} +1 -18
- package/frontend/build/client/_app/immutable/chunks/CMEtqUfQ.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/CMEtqUfQ.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/CNdcuGR0.js +0 -17
- package/frontend/build/client/_app/immutable/chunks/CNdcuGR0.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/CNdcuGR0.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/CUC98kMZ.js +6 -0
- package/frontend/build/client/_app/immutable/chunks/CUC98kMZ.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/CUC98kMZ.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/CgnwuKKO.js +0 -17
- package/frontend/build/client/_app/immutable/chunks/CgnwuKKO.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/CgnwuKKO.js.gz +0 -0
- package/frontend/{.svelte-kit/output/client/_app/immutable/chunks/B98sHkeB.js → build/client/_app/immutable/chunks/Co3xKhEp.js} +1 -18
- package/frontend/build/client/_app/immutable/chunks/Co3xKhEp.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/Co3xKhEp.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/CuqnZUex.js +0 -17
- package/frontend/build/client/_app/immutable/chunks/CuqnZUex.js.br +0 -16
- package/frontend/build/client/_app/immutable/chunks/CuqnZUex.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/{DlNYZJ7K.js → CzlPaHY9.js} +1 -18
- package/frontend/build/client/_app/immutable/chunks/CzlPaHY9.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/CzlPaHY9.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/DCgHuuvs.js +0 -17
- package/frontend/build/client/_app/immutable/chunks/DCgHuuvs.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/DCgHuuvs.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/DHM6H-es.js +7 -0
- package/frontend/build/client/_app/immutable/chunks/DHM6H-es.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/DHM6H-es.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/{3IV-uqHa.js → DMZwI8Cj.js} +1 -18
- package/frontend/build/client/_app/immutable/chunks/DMZwI8Cj.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/DMZwI8Cj.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/DMyTUV-Y.js +8 -0
- package/frontend/build/client/_app/immutable/chunks/DMyTUV-Y.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/DMyTUV-Y.js.gz +0 -0
- package/frontend/{.svelte-kit/output/client/_app/immutable/chunks/D2gYTmAA.js → build/client/_app/immutable/chunks/DSLBMEpr.js} +1 -18
- package/frontend/build/client/_app/immutable/chunks/DSLBMEpr.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/DSLBMEpr.js.gz +0 -0
- package/frontend/{.svelte-kit/output/client/_app/immutable/chunks/DDblTLLE.js → build/client/_app/immutable/chunks/DbgD7JLa.js} +1 -18
- package/frontend/build/client/_app/immutable/chunks/DbgD7JLa.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/DbgD7JLa.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/Dlnxgs49.js +0 -17
- package/frontend/build/client/_app/immutable/chunks/Dlnxgs49.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/Dlnxgs49.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/TOCyHP97.js +0 -17
- package/frontend/build/client/_app/immutable/chunks/TOCyHP97.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/TOCyHP97.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/nURnIknV.js +6 -0
- package/frontend/build/client/_app/immutable/chunks/nURnIknV.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/nURnIknV.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/t-La0hgu.js +0 -17
- package/frontend/build/client/_app/immutable/chunks/t-La0hgu.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/t-La0hgu.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/w0D4Uzlq.js +0 -17
- package/frontend/build/client/_app/immutable/chunks/w0D4Uzlq.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/w0D4Uzlq.js.gz +0 -0
- package/frontend/build/client/_app/immutable/entry/{app.BCWbw5zZ.js → app.BkBD0hgA.js} +2 -19
- package/frontend/build/client/_app/immutable/entry/app.BkBD0hgA.js.br +0 -0
- package/frontend/build/client/_app/immutable/entry/app.BkBD0hgA.js.gz +0 -0
- package/frontend/build/client/_app/immutable/entry/start.BxeX1Uxs.js +6 -0
- package/frontend/build/client/_app/immutable/entry/start.BxeX1Uxs.js.br +6 -0
- package/frontend/build/client/_app/immutable/entry/start.BxeX1Uxs.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/0.ChjDHxSJ.js +11 -0
- package/frontend/build/client/_app/immutable/nodes/0.ChjDHxSJ.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/0.ChjDHxSJ.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/1.DBSWa36f.js +6 -0
- package/frontend/build/client/_app/immutable/nodes/1.DBSWa36f.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/1.DBSWa36f.js.gz +0 -0
- package/frontend/{.svelte-kit/output/client/_app/immutable/nodes/10.Bn4Ma-MU.js → build/client/_app/immutable/nodes/10.DEbnxfND.js} +1 -18
- package/frontend/build/client/_app/immutable/nodes/10.DEbnxfND.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/10.DEbnxfND.js.gz +0 -0
- package/frontend/{.svelte-kit/output/client/_app/immutable/nodes/11.BacEu7sW.js → build/client/_app/immutable/nodes/11.O4cjXCg4.js} +1 -18
- package/frontend/build/client/_app/immutable/nodes/11.O4cjXCg4.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/11.O4cjXCg4.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/12.BWQdeRdX.js +6 -0
- package/frontend/build/client/_app/immutable/nodes/12.BWQdeRdX.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/12.BWQdeRdX.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/2.BnHalSCi.js +6 -0
- package/frontend/build/client/_app/immutable/nodes/2.BnHalSCi.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/2.BnHalSCi.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/{3.DHx0kho3.js → 3._S1vrLVF.js} +1 -18
- package/frontend/build/client/_app/immutable/nodes/3._S1vrLVF.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/3._S1vrLVF.js.gz +0 -0
- package/frontend/{.svelte-kit/output/client/_app/immutable/nodes/4.CnaMiirx.js → build/client/_app/immutable/nodes/4.D-YT_JJe.js} +1 -18
- package/frontend/build/client/_app/immutable/nodes/4.D-YT_JJe.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/4.D-YT_JJe.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/{5.B6m-zTVe.js → 5.BiFBiWcW.js} +1 -18
- package/frontend/build/client/_app/immutable/nodes/5.BiFBiWcW.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/5.BiFBiWcW.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/{6.BPDag1zv.js → 6.BNS-W0R_.js} +1 -18
- package/frontend/build/client/_app/immutable/nodes/6.BNS-W0R_.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/6.BNS-W0R_.js.gz +0 -0
- package/frontend/{.svelte-kit/output/client/_app/immutable/nodes/7.D7LwxSvT.js → build/client/_app/immutable/nodes/7.C-pKvVZy.js} +1 -18
- package/frontend/build/client/_app/immutable/nodes/7.C-pKvVZy.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/7.C-pKvVZy.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/{8.CCkNX20G.js → 8.BEUdazrw.js} +1 -18
- package/frontend/build/client/_app/immutable/nodes/8.BEUdazrw.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/8.BEUdazrw.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/{9.HDerA6JV.js → 9.CrLHYPEJ.js} +1 -18
- package/frontend/build/client/_app/immutable/nodes/9.CrLHYPEJ.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/9.CrLHYPEJ.js.gz +0 -0
- package/frontend/build/client/_app/version.json +1 -1
- package/frontend/build/client/_app/version.json.br +0 -0
- package/frontend/build/client/_app/version.json.gz +0 -0
- package/frontend/build/env.js +0 -17
- package/frontend/build/handler.js +0 -17
- package/frontend/build/index.js +0 -17
- package/frontend/build/server/chunks/0-Cn_2hzqk.js +22 -0
- package/frontend/build/server/chunks/0-Cn_2hzqk.js.map +5 -0
- package/frontend/build/server/chunks/1-BrRGJFSB.js +14 -0
- package/frontend/build/server/chunks/1-BrRGJFSB.js.map +5 -0
- package/frontend/build/server/chunks/10-l6_ikL_D.js +14 -0
- package/frontend/build/server/chunks/{10-Bhe409bL.js.map → 10-l6_ikL_D.js.map} +1 -17
- package/frontend/build/server/chunks/11-BLPbHJqB.js +14 -0
- package/frontend/build/server/chunks/{11-DqyXW7n1.js.map → 11-BLPbHJqB.js.map} +1 -17
- package/frontend/build/server/chunks/12-S1ujUrHy.js +14 -0
- package/frontend/build/server/chunks/{12-BCpjMUbs.js.map → 12-S1ujUrHy.js.map} +1 -17
- package/frontend/build/server/chunks/2-Cte30Dgy.js +14 -0
- package/frontend/build/server/chunks/2-Cte30Dgy.js.map +5 -0
- package/frontend/build/server/chunks/3-BHkXVoNI.js +14 -0
- package/frontend/build/server/chunks/{3-y2kzPO2X.js.map → 3-BHkXVoNI.js.map} +1 -17
- package/frontend/build/server/chunks/4-Bo04DC5Z.js +14 -0
- package/frontend/build/server/chunks/4-Bo04DC5Z.js.map +5 -0
- package/frontend/build/server/chunks/5-F1ZsXMt2.js +14 -0
- package/frontend/build/server/chunks/5-F1ZsXMt2.js.map +5 -0
- package/frontend/build/server/chunks/6-FlZLnYJ6.js +14 -0
- package/frontend/build/server/chunks/6-FlZLnYJ6.js.map +5 -0
- package/frontend/build/server/chunks/7-DiQJZEF_.js +14 -0
- package/frontend/build/server/chunks/{7-DekQfQHu.js.map → 7-DiQJZEF_.js.map} +1 -17
- package/frontend/build/server/chunks/8-DXReUGxi.js +14 -0
- package/frontend/build/server/chunks/8-DXReUGxi.js.map +5 -0
- package/frontend/build/server/chunks/9-Cy_mGmt4.js +14 -0
- package/frontend/build/server/chunks/{9-C5sKo9aY.js.map → 9-Cy_mGmt4.js.map} +1 -17
- package/frontend/build/server/chunks/{BackLink-KxZNqsaq.js → BackLink-BJ8NaemM.js} +2 -19
- package/frontend/build/server/chunks/{BackLink-KxZNqsaq.js.map → BackLink-BJ8NaemM.js.map} +1 -17
- package/frontend/build/server/chunks/Badge-44ZTDx0V.js +18 -0
- package/frontend/build/server/chunks/{Badge-B5V-z6pI.js.map → Badge-44ZTDx0V.js.map} +1 -17
- package/frontend/build/server/chunks/{ConfirmModal-Ckkt99Pn.js → ConfirmModal-C0EAXcq_.js} +4 -21
- package/frontend/build/server/chunks/{ConfirmModal-Ckkt99Pn.js.map → ConfirmModal-C0EAXcq_.js.map} +1 -17
- package/frontend/build/server/chunks/{EmptyState-BwwbShnX.js → EmptyState-BA_eXaeR.js} +3 -20
- package/frontend/build/server/chunks/{EmptyState-BwwbShnX.js.map → EmptyState-BA_eXaeR.js.map} +1 -17
- package/frontend/build/server/chunks/{Modal-DG-6c5si.js → Modal-DChG187n.js} +2 -19
- package/frontend/build/server/chunks/{Modal-DG-6c5si.js.map → Modal-DChG187n.js.map} +1 -17
- package/frontend/build/server/chunks/{Toast-CIG4edEp.js → Toast-v-q4ZnYq.js} +2 -19
- package/frontend/build/server/chunks/{Toast-CIG4edEp.js.map → Toast-v-q4ZnYq.js.map} +1 -17
- package/frontend/build/server/chunks/_layout.svelte-CHVI3Prt.js +29 -0
- package/frontend/build/server/chunks/{_layout.svelte-BjPrZpoG.js.map → _layout.svelte-CHVI3Prt.js.map} +1 -17
- package/frontend/build/server/chunks/{_page.svelte-BbZNxvCl.js → _page.svelte-1as75nPc.js} +14 -30
- package/frontend/build/server/chunks/{_page.svelte-BbZNxvCl.js.map → _page.svelte-1as75nPc.js.map} +1 -17
- package/frontend/build/server/chunks/{_page.svelte-CLFpft5D.js → _page.svelte-1jo8MapI.js} +11 -28
- package/frontend/build/server/chunks/{_page.svelte-CLFpft5D.js.map → _page.svelte-1jo8MapI.js.map} +1 -17
- package/frontend/build/server/chunks/{_page.svelte-BHw14GPR.js → _page.svelte-BuFusRK1.js} +12 -29
- package/frontend/build/server/chunks/{_page.svelte-BHw14GPR.js.map → _page.svelte-BuFusRK1.js.map} +1 -17
- package/frontend/build/server/chunks/{_page.svelte-D78qaBDN.js → _page.svelte-CAVyp70V.js} +14 -30
- package/frontend/build/server/chunks/{_page.svelte-D78qaBDN.js.map → _page.svelte-CAVyp70V.js.map} +1 -17
- package/frontend/build/server/chunks/{_page.svelte-D2oF79cT.js → _page.svelte-CB8-QBNg.js} +11 -28
- package/frontend/build/server/chunks/{_page.svelte-D2oF79cT.js.map → _page.svelte-CB8-QBNg.js.map} +1 -17
- package/frontend/build/server/chunks/{_page.svelte-DyyuZN_3.js → _page.svelte-CWWeZuid.js} +11 -28
- package/frontend/build/server/chunks/{_page.svelte-DyyuZN_3.js.map → _page.svelte-CWWeZuid.js.map} +1 -17
- package/frontend/build/server/chunks/_page.svelte-CpB-fgJl.js +224 -0
- package/frontend/build/server/chunks/_page.svelte-CpB-fgJl.js.map +5 -0
- package/frontend/build/server/chunks/_page.svelte-D3E6Eojd.js +32 -0
- package/frontend/build/server/chunks/{_page.svelte-B9rjnZWE.js.map → _page.svelte-D3E6Eojd.js.map} +1 -17
- package/frontend/build/server/chunks/_page.svelte-Kg69DDaM.js +32 -0
- package/frontend/build/server/chunks/{_page.svelte-D1aYn1PL.js.map → _page.svelte-Kg69DDaM.js.map} +1 -17
- package/frontend/build/server/chunks/{_page.svelte-ubW5EUCf.js → _page.svelte-L9fuiN_q.js} +10 -27
- package/frontend/build/server/chunks/{_page.svelte-ubW5EUCf.js.map → _page.svelte-L9fuiN_q.js.map} +1 -17
- package/frontend/build/server/chunks/{_page.svelte-Cr16HubD.js → _page.svelte-wKyUmA2e.js} +12 -29
- package/frontend/build/server/chunks/{_page.svelte-Cr16HubD.js.map → _page.svelte-wKyUmA2e.js.map} +1 -17
- package/frontend/build/server/chunks/attributes-BeaNKpgU.js +0 -17
- package/frontend/build/server/chunks/attributes-BeaNKpgU.js.map +0 -16
- package/frontend/build/server/chunks/{auth-rlH-cIzn.js → auth-Chw-wBpI.js} +2 -19
- package/frontend/build/server/chunks/{auth-rlH-cIzn.js.map → auth-Chw-wBpI.js.map} +1 -17
- package/frontend/build/server/chunks/auth2-C02yYDpz.js +0 -17
- package/frontend/build/server/chunks/auth2-C02yYDpz.js.map +0 -16
- package/frontend/build/server/chunks/{client-DyII78e0.js → client-DEmxR_a-.js} +2 -19
- package/frontend/build/server/chunks/{client-DyII78e0.js.map → client-DEmxR_a-.js.map} +1 -17
- package/frontend/build/server/chunks/common-DYYTVHPw.js +26 -0
- package/frontend/build/server/chunks/common-DYYTVHPw.js.map +5 -0
- package/frontend/build/server/chunks/constants-CXTaQaB6.js +27 -0
- package/frontend/build/server/chunks/constants-CXTaQaB6.js.map +5 -0
- package/frontend/build/server/chunks/error.svelte-BD3xNemk.js +33 -0
- package/frontend/build/server/chunks/{error.svelte-BDW3iP1O.js.map → error.svelte-BD3xNemk.js.map} +1 -17
- package/frontend/build/server/chunks/escaping-CqgfEcN3.js +0 -17
- package/frontend/build/server/chunks/escaping-CqgfEcN3.js.map +0 -16
- package/frontend/build/server/chunks/exports-D0QHgeSL.js +0 -17
- package/frontend/build/server/chunks/exports-D0QHgeSL.js.map +0 -16
- package/frontend/build/server/chunks/{format-0SSB1oGG.js → format-CiNRMfHu.js} +2 -19
- package/frontend/build/server/chunks/{format-0SSB1oGG.js.map → format-CiNRMfHu.js.map} +1 -17
- package/frontend/build/server/chunks/index-server-B3M9vyh2.js +19 -0
- package/frontend/build/server/chunks/index-server-B3M9vyh2.js.map +5 -0
- package/frontend/build/server/chunks/{index2-DG8XHU5D.js → index2-5R1tbrep.js} +2 -19
- package/frontend/build/server/chunks/{index2-DG8XHU5D.js.map → index2-5R1tbrep.js.map} +1 -17
- package/frontend/build/server/chunks/{reports-DnYbvluH.js → reports-D_ApeeNh.js} +2 -19
- package/frontend/build/server/chunks/{reports-DnYbvluH.js.map → reports-D_ApeeNh.js.map} +1 -17
- package/frontend/build/server/chunks/{reports2-DR4XlcJg.js → reports2-BtElN_53.js} +2 -19
- package/frontend/build/server/chunks/{reports2-DR4XlcJg.js.map → reports2-BtElN_53.js.map} +1 -17
- package/frontend/build/server/chunks/{repository-D9Derhnk.js → repository-FYYV_vKE.js} +3 -21
- package/frontend/build/server/chunks/repository-FYYV_vKE.js.map +5 -0
- package/frontend/build/server/chunks/{runner-DE5sufZH.js → runner-DC7hXbnY.js} +5 -22
- package/frontend/build/server/chunks/runner-DC7hXbnY.js.map +5 -0
- package/frontend/build/server/chunks/stores-BLenR3c1.js +32 -0
- package/frontend/build/server/chunks/{stores-DlkXV308.js.map → stores-BLenR3c1.js.map} +1 -17
- package/frontend/build/server/chunks/theme-nAx-GvX_.js +15 -0
- package/frontend/build/server/chunks/theme-nAx-GvX_.js.map +5 -0
- package/frontend/build/server/index.js +2 -19
- package/frontend/build/server/index.js.map +1 -17
- package/frontend/build/server/manifest.js +14 -31
- package/frontend/build/server/manifest.js.map +1 -17
- package/frontend/build/shims.js +0 -17
- package/frontend/package.json +1 -0
- package/frontend/src/app.css +1 -13
- package/frontend/src/app.html +1 -13
- package/frontend/src/lib/api/activeRuns.js +18 -0
- package/frontend/src/lib/api/auth.js +1 -13
- package/frontend/src/lib/api/reports.js +1 -13
- package/frontend/src/lib/api/repository.js +1 -13
- package/frontend/src/lib/api/runners.js +26 -21
- package/frontend/src/lib/api/schedules.js +1 -13
- package/frontend/src/lib/api/settings.js +11 -23
- package/frontend/src/lib/api/tests.js +1 -13
- package/frontend/src/lib/api/users.js +1 -13
- package/frontend/src/lib/components/icons/BrowserIcon.svelte +1 -13
- package/frontend/src/lib/components/layout/Nav.svelte +1 -13
- package/frontend/src/lib/components/layout/PageShell.svelte +1 -13
- package/frontend/src/lib/components/layout/RunnerPanel.svelte +146 -105
- package/frontend/src/lib/components/ui/AutomatedBadge.svelte +2 -31
- package/frontend/src/lib/components/ui/BackLink.svelte +1 -30
- package/frontend/src/lib/components/ui/Badge.svelte +1 -13
- package/frontend/src/lib/components/ui/Button.svelte +1 -13
- package/frontend/src/lib/components/ui/CaseIdChip.svelte +1 -30
- package/frontend/src/lib/components/ui/ConfirmModal.svelte +8 -17
- package/frontend/src/lib/components/ui/EmptyState.svelte +26 -15
- package/frontend/src/lib/components/ui/Modal.svelte +1 -13
- package/frontend/src/lib/components/ui/Pagination.svelte +1 -13
- package/frontend/src/lib/components/ui/PriorityBadge.svelte +1 -30
- package/frontend/src/lib/components/ui/ResultChip.svelte +1 -30
- package/frontend/src/lib/components/ui/StatusDot.svelte +1 -30
- package/frontend/src/lib/components/ui/StepKeyword.svelte +1 -30
- package/frontend/src/lib/components/ui/StepStatusIcon.svelte +1 -30
- package/frontend/src/lib/components/ui/TagChip.svelte +1 -30
- package/frontend/src/lib/components/ui/Terminal.svelte +1 -13
- package/frontend/src/lib/components/ui/Toast.svelte +1 -13
- package/frontend/src/lib/constants.js +5 -17
- package/frontend/src/lib/copy/auth.js +29 -0
- package/frontend/src/lib/copy/common.js +39 -0
- package/frontend/src/lib/copy/dashboard.js +28 -0
- package/frontend/src/lib/copy/reports.js +83 -0
- package/frontend/src/lib/copy/repository.js +153 -0
- package/frontend/src/lib/copy/runners.js +59 -0
- package/frontend/src/lib/copy/schedules.js +96 -0
- package/frontend/src/lib/copy/settings.js +295 -0
- package/frontend/src/lib/index.js +1 -13
- package/frontend/src/lib/socketEvents.js +36 -0
- package/frontend/src/lib/stores/auth.js +1 -13
- package/frontend/src/lib/stores/runner.js +10 -18
- package/frontend/src/lib/stores/theme.js +1 -13
- package/frontend/src/lib/styles/global.css +1 -13
- package/frontend/src/lib/styles/reset.css +1 -13
- package/frontend/src/lib/styles/tokens.css +1 -13
- package/frontend/src/lib/utils/format.js +1 -13
- package/frontend/src/routes/+layout.js +1 -13
- package/frontend/src/routes/+layout.svelte +1 -13
- package/frontend/src/routes/+page.svelte +296 -115
- package/frontend/src/routes/login/+page.svelte +22 -23
- package/frontend/src/routes/reports/+page.svelte +37 -38
- package/frontend/src/routes/reports/[id]/+page.svelte +54 -43
- package/frontend/src/routes/reports/live/+page.svelte +57 -42
- package/frontend/src/routes/scheduled-tests/+page.svelte +134 -117
- package/frontend/src/routes/settings/+page.svelte +490 -267
- package/frontend/src/routes/setup/+page.svelte +30 -27
- package/frontend/src/routes/test-repository/+page.svelte +120 -91
- package/frontend/src/routes/test-repository/runs/[id]/+page.svelte +95 -60
- package/frontend/src/routes/test-repository/suites/[id]/+page.svelte +145 -91
- package/frontend/svelte.config.js +1 -13
- package/frontend/vite.config.js +1 -13
- package/package.json +2 -2
- package/resources/mit-license.txt +2 -0
- package/backend/scripts/create-test.js +0 -149
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/_page.CrXpMrqh.css +0 -23
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/2.CrXpMrqh.css +0 -23
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/_page.CrXpMrqh.css +0 -23
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/4N1zIH8t.js +0 -23
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/BhvHtTRh.js +0 -23
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/C1sukchk.js +0 -23
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/DW85KPAh.js +0 -24
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/DW_iTTZe.js +0 -23
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/DtGXv8RA.js +0 -25
- package/frontend/.svelte-kit/output/client/_app/immutable/entry/start.2_AF42wj.js +0 -23
- package/frontend/.svelte-kit/output/client/_app/immutable/nodes/0.BAqq2UTE.js +0 -28
- package/frontend/.svelte-kit/output/client/_app/immutable/nodes/1.D5VvLtGP.js +0 -23
- package/frontend/.svelte-kit/output/client/_app/immutable/nodes/12.0YGtl1uj.js +0 -23
- package/frontend/.svelte-kit/output/client/_app/immutable/nodes/2.C2jjMA-Z.js +0 -23
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/_page.CrXpMrqh.css +0 -23
- package/frontend/build/client/_app/immutable/assets/2.CrXpMrqh.css +0 -23
- package/frontend/build/client/_app/immutable/assets/2.CrXpMrqh.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/2.CrXpMrqh.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.CrXpMrqh.css +0 -23
- package/frontend/build/client/_app/immutable/assets/_page.CrXpMrqh.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.CrXpMrqh.css.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/3IV-uqHa.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/3IV-uqHa.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/4N1zIH8t.js +0 -23
- package/frontend/build/client/_app/immutable/chunks/4N1zIH8t.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/4N1zIH8t.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/B98sHkeB.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/B98sHkeB.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/BhvHtTRh.js +0 -23
- package/frontend/build/client/_app/immutable/chunks/BhvHtTRh.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/BhvHtTRh.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/BjUpWNbl.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/BjUpWNbl.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/C1sukchk.js +0 -23
- package/frontend/build/client/_app/immutable/chunks/C1sukchk.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/C1sukchk.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/D2cvzNT9.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/D2cvzNT9.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/D2gYTmAA.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/D2gYTmAA.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/DDblTLLE.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/DDblTLLE.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/DW85KPAh.js +0 -24
- package/frontend/build/client/_app/immutable/chunks/DW85KPAh.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/DW85KPAh.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/DW_iTTZe.js +0 -23
- package/frontend/build/client/_app/immutable/chunks/DW_iTTZe.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/DW_iTTZe.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/DYlaQsvN.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/DYlaQsvN.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/DkNBSlo2.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/DkNBSlo2.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/DlNYZJ7K.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/DlNYZJ7K.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/DtGXv8RA.js +0 -25
- package/frontend/build/client/_app/immutable/chunks/DtGXv8RA.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/DtGXv8RA.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/oN0Z3NSF.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/oN0Z3NSF.js.gz +0 -0
- package/frontend/build/client/_app/immutable/entry/app.BCWbw5zZ.js.br +0 -0
- package/frontend/build/client/_app/immutable/entry/app.BCWbw5zZ.js.gz +0 -0
- package/frontend/build/client/_app/immutable/entry/start.2_AF42wj.js +0 -23
- package/frontend/build/client/_app/immutable/entry/start.2_AF42wj.js.br +0 -22
- package/frontend/build/client/_app/immutable/entry/start.2_AF42wj.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/0.BAqq2UTE.js +0 -28
- package/frontend/build/client/_app/immutable/nodes/0.BAqq2UTE.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/0.BAqq2UTE.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/1.D5VvLtGP.js +0 -23
- package/frontend/build/client/_app/immutable/nodes/1.D5VvLtGP.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/1.D5VvLtGP.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/10.Bn4Ma-MU.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/10.Bn4Ma-MU.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/11.BacEu7sW.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/11.BacEu7sW.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/12.0YGtl1uj.js +0 -23
- package/frontend/build/client/_app/immutable/nodes/12.0YGtl1uj.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/12.0YGtl1uj.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/2.C2jjMA-Z.js +0 -23
- package/frontend/build/client/_app/immutable/nodes/2.C2jjMA-Z.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/2.C2jjMA-Z.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/3.DHx0kho3.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/3.DHx0kho3.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/4.CnaMiirx.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/4.CnaMiirx.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/5.B6m-zTVe.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/5.B6m-zTVe.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/6.BPDag1zv.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/6.BPDag1zv.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/7.D7LwxSvT.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/7.D7LwxSvT.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/8.CCkNX20G.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/8.CCkNX20G.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/9.HDerA6JV.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/9.HDerA6JV.js.gz +0 -0
- package/frontend/build/server/chunks/0-Di4jNU9J.js +0 -39
- package/frontend/build/server/chunks/0-Di4jNU9J.js.map +0 -21
- package/frontend/build/server/chunks/1-DR5YRUTa.js +0 -31
- package/frontend/build/server/chunks/1-DR5YRUTa.js.map +0 -21
- package/frontend/build/server/chunks/10-Bhe409bL.js +0 -31
- package/frontend/build/server/chunks/11-DqyXW7n1.js +0 -31
- package/frontend/build/server/chunks/12-BCpjMUbs.js +0 -31
- package/frontend/build/server/chunks/2-D-0buH5i.js +0 -31
- package/frontend/build/server/chunks/2-D-0buH5i.js.map +0 -21
- package/frontend/build/server/chunks/3-y2kzPO2X.js +0 -31
- package/frontend/build/server/chunks/4-CFrK8HST.js +0 -31
- package/frontend/build/server/chunks/4-CFrK8HST.js.map +0 -21
- package/frontend/build/server/chunks/5-B0lJu5bT.js +0 -31
- package/frontend/build/server/chunks/5-B0lJu5bT.js.map +0 -21
- package/frontend/build/server/chunks/6-BD4CEJ3Z.js +0 -31
- package/frontend/build/server/chunks/6-BD4CEJ3Z.js.map +0 -21
- package/frontend/build/server/chunks/7-DekQfQHu.js +0 -31
- package/frontend/build/server/chunks/8-BMqmu7WF.js +0 -31
- package/frontend/build/server/chunks/8-BMqmu7WF.js.map +0 -21
- package/frontend/build/server/chunks/9-C5sKo9aY.js +0 -31
- package/frontend/build/server/chunks/Badge-B5V-z6pI.js +0 -35
- package/frontend/build/server/chunks/_layout.svelte-BjPrZpoG.js +0 -46
- package/frontend/build/server/chunks/_page.svelte-B9rjnZWE.js +0 -49
- package/frontend/build/server/chunks/_page.svelte-D1aYn1PL.js +0 -49
- package/frontend/build/server/chunks/_page.svelte-sbqebZYx.js +0 -206
- package/frontend/build/server/chunks/_page.svelte-sbqebZYx.js.map +0 -21
- package/frontend/build/server/chunks/common-Db-bgKYG.js +0 -42
- package/frontend/build/server/chunks/common-Db-bgKYG.js.map +0 -21
- package/frontend/build/server/chunks/constants-cZ2kUwWa.js +0 -41
- package/frontend/build/server/chunks/constants-cZ2kUwWa.js.map +0 -21
- package/frontend/build/server/chunks/error.svelte-BDW3iP1O.js +0 -50
- package/frontend/build/server/chunks/index-server-Dr2Nvcmu.js +0 -36
- package/frontend/build/server/chunks/index-server-Dr2Nvcmu.js.map +0 -21
- package/frontend/build/server/chunks/repository-D9Derhnk.js.map +0 -21
- package/frontend/build/server/chunks/runner-DE5sufZH.js.map +0 -21
- package/frontend/build/server/chunks/stores-DlkXV308.js +0 -49
- package/frontend/build/server/chunks/theme-D_NKm6iI.js +0 -32
- package/frontend/build/server/chunks/theme-D_NKm6iI.js.map +0 -21
- package/resources/gpl-3.0-license.txt +0 -14
|
@@ -1,26 +1,9 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* This file is part of Plum.
|
|
3
|
-
*
|
|
4
|
-
* Plum is free software: you can redistribute it and/or modify
|
|
5
|
-
* it under the terms of the GNU General Public License as published by
|
|
6
|
-
* the Free Software Foundation, either version 3 of the License, or
|
|
7
|
-
* (at your option) any later version.
|
|
8
|
-
*
|
|
9
|
-
* Plum is distributed in the hope that it will be useful,
|
|
10
|
-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
11
|
-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
12
|
-
* GNU General Public License for more details.
|
|
13
|
-
*
|
|
14
|
-
* You should have received a copy of the GNU General Public License
|
|
15
|
-
* along with Plum. If not, see https://www.gnu.org/licenses/.
|
|
16
|
-
*/
|
|
17
|
-
|
|
18
1
|
/*
|
|
19
2
|
* This file is part of Plum.
|
|
20
3
|
* Licensed under the MIT License. See LICENSE file in the project root for details.
|
|
21
4
|
*/
|
|
22
5
|
|
|
23
|
-
import { a4 as fallback, a7 as slot, a5 as bind_props } from './index2-
|
|
6
|
+
import { a4 as fallback, a7 as slot, a5 as bind_props } from './index2-5R1tbrep.js';
|
|
24
7
|
import { a as attr } from './attributes-BeaNKpgU.js';
|
|
25
8
|
import { e as escape_html } from './escaping-CqgfEcN3.js';
|
|
26
9
|
|
|
@@ -40,4 +23,4 @@ function Modal($$payload, $$props) {
|
|
|
40
23
|
}
|
|
41
24
|
|
|
42
25
|
export { Modal as M };
|
|
43
|
-
//# sourceMappingURL=Modal-
|
|
26
|
+
//# sourceMappingURL=Modal-DChG187n.js.map
|
|
@@ -1,21 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
2
|
This file is part of Plum.
|
|
3
|
-
|
|
4
|
-
Plum is free software: you can redistribute it and/or modify
|
|
5
|
-
it under the terms of the GNU General Public License as published by
|
|
6
|
-
the Free Software Foundation, either version 3 of the License, or
|
|
7
|
-
(at your option) any later version.
|
|
8
|
-
|
|
9
|
-
Plum is distributed in the hope that it will be useful,
|
|
10
|
-
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
11
|
-
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
12
|
-
GNU General Public License for more details.
|
|
13
|
-
|
|
14
|
-
You should have received a copy of the GNU General Public License
|
|
15
|
-
along with Plum. If not, see https://www.gnu.org/licenses/.
|
|
16
|
-
*/
|
|
17
|
-
/*
|
|
18
|
-
This file is part of Plum.
|
|
19
3
|
Licensed under the MIT License. See LICENSE file in the project root for details.
|
|
20
4
|
*/
|
|
21
|
-
{"version":3,"file":"Modal-
|
|
5
|
+
{"version":3,"file":"Modal-DChG187n.js","sources":["../../../.svelte-kit/adapter-node/chunks/Modal.js"],"sourcesContent":["import { a0 as fallback, a5 as slot, a1 as bind_props } from \"./index.js\";\n/* empty css */\nimport { a as attr } from \"./attributes.js\";\nimport { e as escape_html } from \"./escaping.js\";\nfunction Modal($$payload, $$props) {\n let open = fallback($$props[\"open\"], false);\n let title = fallback($$props[\"title\"], \"\");\n if (open) {\n $$payload.out += \"<!--[-->\";\n $$payload.out += `<div class=\"backdrop svelte-v85iae\" role=\"presentation\"><div class=\"panel svelte-v85iae\" role=\"dialog\" aria-modal=\"true\"${attr(\"aria-label\", title)}><div class=\"header svelte-v85iae\"><h3 class=\"title svelte-v85iae\">${escape_html(title)}</h3> <button class=\"close-btn svelte-v85iae\" aria-label=\"Close\"><svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\"><path d=\"M1 1l12 12M13 1L1 13\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\"></path></svg></button></div> <div class=\"body svelte-v85iae\"><!---->`;\n slot($$payload, $$props, \"default\", {}, null);\n $$payload.out += `<!----></div></div></div>`;\n } else {\n $$payload.out += \"<!--[!-->\";\n }\n $$payload.out += `<!--]-->`;\n bind_props($$props, { open, title });\n}\nexport {\n Modal as M\n};\n"],"names":[],"mappings":";;;;AAIA,SAAS,KAAK,CAAC,SAAS,EAAE,OAAO,EAAE;AACnC,EAAE,IAAI,IAAI,GAAG,QAAQ,CAAC,OAAO,CAAC,MAAM,CAAC,EAAE,KAAK,CAAC;AAC7C,EAAE,IAAI,KAAK,GAAG,QAAQ,CAAC,OAAO,CAAC,OAAO,CAAC,EAAE,EAAE,CAAC;AAC5C,EAAE,IAAI,IAAI,EAAE;AACZ,IAAI,SAAS,CAAC,GAAG,IAAI,UAAU;AAC/B,IAAI,SAAS,CAAC,GAAG,IAAI,CAAC,wHAAwH,EAAE,IAAI,CAAC,YAAY,EAAE,KAAK,CAAC,CAAC,mEAAmE,EAAE,WAAW,CAAC,KAAK,CAAC,CAAC,gSAAgS,CAAC;AACniB,IAAI,IAAI,CAAC,SAAS,EAAE,OAAO,EAAE,SAAS,EAAE,EAAE,EAAE,IAAI,CAAC;AACjD,IAAI,SAAS,CAAC,GAAG,IAAI,CAAC,yBAAyB,CAAC;AAChD,EAAE,CAAC,MAAM;AACT,IAAI,SAAS,CAAC,GAAG,IAAI,WAAW;AAChC,EAAE;AACF,EAAE,SAAS,CAAC,GAAG,IAAI,CAAC,QAAQ,CAAC;AAC7B,EAAE,UAAU,CAAC,OAAO,EAAE,EAAE,IAAI,EAAE,KAAK,EAAE,CAAC;AACtC;;;;"}
|
|
@@ -1,26 +1,9 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* This file is part of Plum.
|
|
3
|
-
*
|
|
4
|
-
* Plum is free software: you can redistribute it and/or modify
|
|
5
|
-
* it under the terms of the GNU General Public License as published by
|
|
6
|
-
* the Free Software Foundation, either version 3 of the License, or
|
|
7
|
-
* (at your option) any later version.
|
|
8
|
-
*
|
|
9
|
-
* Plum is distributed in the hope that it will be useful,
|
|
10
|
-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
11
|
-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
12
|
-
* GNU General Public License for more details.
|
|
13
|
-
*
|
|
14
|
-
* You should have received a copy of the GNU General Public License
|
|
15
|
-
* along with Plum. If not, see https://www.gnu.org/licenses/.
|
|
16
|
-
*/
|
|
17
|
-
|
|
18
1
|
/*
|
|
19
2
|
* This file is part of Plum.
|
|
20
3
|
* Licensed under the MIT License. See LICENSE file in the project root for details.
|
|
21
4
|
*/
|
|
22
5
|
|
|
23
|
-
import { N as push, a4 as fallback,
|
|
6
|
+
import { N as push, a4 as fallback, $ as stringify, a5 as bind_props, P as pop, a7 as slot } from './index2-5R1tbrep.js';
|
|
24
7
|
import { a as attr } from './attributes-BeaNKpgU.js';
|
|
25
8
|
import { e as escape_html } from './escaping-CqgfEcN3.js';
|
|
26
9
|
|
|
@@ -49,4 +32,4 @@ function Toast($$payload, $$props) {
|
|
|
49
32
|
}
|
|
50
33
|
|
|
51
34
|
export { Button as B, Toast as T };
|
|
52
|
-
//# sourceMappingURL=Toast-
|
|
35
|
+
//# sourceMappingURL=Toast-v-q4ZnYq.js.map
|
|
@@ -1,21 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
2
|
This file is part of Plum.
|
|
3
|
-
|
|
4
|
-
Plum is free software: you can redistribute it and/or modify
|
|
5
|
-
it under the terms of the GNU General Public License as published by
|
|
6
|
-
the Free Software Foundation, either version 3 of the License, or
|
|
7
|
-
(at your option) any later version.
|
|
8
|
-
|
|
9
|
-
Plum is distributed in the hope that it will be useful,
|
|
10
|
-
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
11
|
-
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
12
|
-
GNU General Public License for more details.
|
|
13
|
-
|
|
14
|
-
You should have received a copy of the GNU General Public License
|
|
15
|
-
along with Plum. If not, see https://www.gnu.org/licenses/.
|
|
16
|
-
*/
|
|
17
|
-
/*
|
|
18
|
-
This file is part of Plum.
|
|
19
3
|
Licensed under the MIT License. See LICENSE file in the project root for details.
|
|
20
4
|
*/
|
|
21
|
-
{"version":3,"file":"Toast-
|
|
5
|
+
{"version":3,"file":"Toast-v-q4ZnYq.js","sources":["../../../.svelte-kit/adapter-node/chunks/Toast.js"],"sourcesContent":["import { a0 as fallback, Z as stringify, a5 as slot, a1 as bind_props, a as push, p as pop } from \"./index.js\";\nimport { a as attr } from \"./attributes.js\";\nimport { e as escape_html } from \"./escaping.js\";\nfunction Button($$payload, $$props) {\n let variant = fallback($$props[\"variant\"], \"primary\");\n let size = fallback($$props[\"size\"], \"md\");\n let type = fallback($$props[\"type\"], \"button\");\n let disabled = fallback($$props[\"disabled\"], false);\n $$payload.out += `<button${attr(\"type\", type)}${attr(\"disabled\", disabled, true)}${attr(\"class\", `btn ${stringify(variant)} ${stringify(size)} svelte-m1euen`)}><!---->`;\n slot($$payload, $$props, \"default\", {}, null);\n $$payload.out += `<!----></button>`;\n bind_props($$props, { variant, size, type, disabled });\n}\nfunction Toast($$payload, $$props) {\n push();\n let toast = fallback($$props[\"toast\"], null);\n if (toast) {\n $$payload.out += \"<!--[-->\";\n $$payload.out += `<div${attr(\"class\", `toast alert alert-${stringify(toast.type)} svelte-1fg63qf`)}>${escape_html(toast.message)}</div>`;\n } else {\n $$payload.out += \"<!--[!-->\";\n }\n $$payload.out += `<!--]-->`;\n bind_props($$props, { toast });\n pop();\n}\nexport {\n Button as B,\n Toast as T\n};\n"],"names":[],"mappings":";;;;AAGA,SAAS,MAAM,CAAC,SAAS,EAAE,OAAO,EAAE;AACpC,EAAE,IAAI,OAAO,GAAG,QAAQ,CAAC,OAAO,CAAC,SAAS,CAAC,EAAE,SAAS,CAAC;AACvD,EAAE,IAAI,IAAI,GAAG,QAAQ,CAAC,OAAO,CAAC,MAAM,CAAC,EAAE,IAAI,CAAC;AAC5C,EAAE,IAAI,IAAI,GAAG,QAAQ,CAAC,OAAO,CAAC,MAAM,CAAC,EAAE,QAAQ,CAAC;AAChD,EAAE,IAAI,QAAQ,GAAG,QAAQ,CAAC,OAAO,CAAC,UAAU,CAAC,EAAE,KAAK,CAAC;AACrD,EAAE,SAAS,CAAC,GAAG,IAAI,CAAC,OAAO,EAAE,IAAI,CAAC,MAAM,EAAE,IAAI,CAAC,CAAC,EAAE,IAAI,CAAC,UAAU,EAAE,QAAQ,EAAE,IAAI,CAAC,CAAC,EAAE,IAAI,CAAC,OAAO,EAAE,CAAC,IAAI,EAAE,SAAS,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,SAAS,CAAC,IAAI,CAAC,CAAC,cAAc,CAAC,CAAC,CAAC,QAAQ,CAAC;AAC1K,EAAE,IAAI,CAAC,SAAS,EAAE,OAAO,EAAE,SAAS,EAAE,EAAE,EAAE,IAAI,CAAC;AAC/C,EAAE,SAAS,CAAC,GAAG,IAAI,CAAC,gBAAgB,CAAC;AACrC,EAAE,UAAU,CAAC,OAAO,EAAE,EAAE,OAAO,EAAE,IAAI,EAAE,IAAI,EAAE,QAAQ,EAAE,CAAC;AACxD;AACA,SAAS,KAAK,CAAC,SAAS,EAAE,OAAO,EAAE;AACnC,EAAE,IAAI,EAAE;AACR,EAAE,IAAI,KAAK,GAAG,QAAQ,CAAC,OAAO,CAAC,OAAO,CAAC,EAAE,IAAI,CAAC;AAC9C,EAAE,IAAI,KAAK,EAAE;AACb,IAAI,SAAS,CAAC,GAAG,IAAI,UAAU;AAC/B,IAAI,SAAS,CAAC,GAAG,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC,OAAO,EAAE,CAAC,kBAAkB,EAAE,SAAS,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,eAAe,CAAC,CAAC,CAAC,CAAC,EAAE,WAAW,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,MAAM,CAAC;AAC5I,EAAE,CAAC,MAAM;AACT,IAAI,SAAS,CAAC,GAAG,IAAI,WAAW;AAChC,EAAE;AACF,EAAE,SAAS,CAAC,GAAG,IAAI,CAAC,QAAQ,CAAC;AAC7B,EAAE,UAAU,CAAC,OAAO,EAAE,EAAE,KAAK,EAAE,CAAC;AAChC,EAAE,GAAG,EAAE;AACP;;;;"}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* This file is part of Plum.
|
|
3
|
+
* Licensed under the MIT License. See LICENSE file in the project root for details.
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
import { N as push, P as pop } from './index2-5R1tbrep.js';
|
|
7
|
+
import './client-DEmxR_a-.js';
|
|
8
|
+
import './auth-Chw-wBpI.js';
|
|
9
|
+
import 'socket.io-client';
|
|
10
|
+
import './runner-DC7hXbnY.js';
|
|
11
|
+
import './format-CiNRMfHu.js';
|
|
12
|
+
import './exports-D0QHgeSL.js';
|
|
13
|
+
import './constants-CXTaQaB6.js';
|
|
14
|
+
|
|
15
|
+
/* empty css */
|
|
16
|
+
/* empty css */
|
|
17
|
+
/* empty css */
|
|
18
|
+
function _layout($$payload, $$props) {
|
|
19
|
+
push();
|
|
20
|
+
{
|
|
21
|
+
$$payload.out += "<!--[!-->";
|
|
22
|
+
$$payload.out += `<div class="boot-loading svelte-3qbr79">Loading…</div>`;
|
|
23
|
+
}
|
|
24
|
+
$$payload.out += `<!--]-->`;
|
|
25
|
+
pop();
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
export { _layout as default };
|
|
29
|
+
//# sourceMappingURL=_layout.svelte-CHVI3Prt.js.map
|
|
@@ -1,21 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
2
|
This file is part of Plum.
|
|
3
|
-
|
|
4
|
-
Plum is free software: you can redistribute it and/or modify
|
|
5
|
-
it under the terms of the GNU General Public License as published by
|
|
6
|
-
the Free Software Foundation, either version 3 of the License, or
|
|
7
|
-
(at your option) any later version.
|
|
8
|
-
|
|
9
|
-
Plum is distributed in the hope that it will be useful,
|
|
10
|
-
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
11
|
-
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
12
|
-
GNU General Public License for more details.
|
|
13
|
-
|
|
14
|
-
You should have received a copy of the GNU General Public License
|
|
15
|
-
along with Plum. If not, see https://www.gnu.org/licenses/.
|
|
16
|
-
*/
|
|
17
|
-
/*
|
|
18
|
-
This file is part of Plum.
|
|
19
3
|
Licensed under the MIT License. See LICENSE file in the project root for details.
|
|
20
4
|
*/
|
|
21
|
-
{"version":3,"file":"_layout.svelte-
|
|
5
|
+
{"version":3,"file":"_layout.svelte-CHVI3Prt.js","sources":["../../../.svelte-kit/adapter-node/entries/pages/_layout.svelte.js"],"sourcesContent":["import \"clsx\";\nimport { p as pop, a as push } from \"../../chunks/index.js\";\nimport \"../../chunks/client.js\";\nimport \"../../chunks/auth.js\";\nimport \"socket.io-client\";\nimport \"../../chunks/runner.js\";\nimport \"../../chunks/format.js\";\n/* empty css */\n/* empty css */\n/* empty css */\nfunction _layout($$payload, $$props) {\n push();\n {\n $$payload.out += \"<!--[!-->\";\n $$payload.out += `<div class=\"boot-loading svelte-3qbr79\">Loading…</div>`;\n }\n $$payload.out += `<!--]-->`;\n pop();\n}\nexport {\n _layout as default\n};\n"],"names":[],"mappings":";;;;;;;;;AAOA;AACA;AACA;AACA,SAAS,OAAO,CAAC,SAAS,EAAE,OAAO,EAAE;AACrC,EAAE,IAAI,EAAE;AACR,EAAE;AACF,IAAI,SAAS,CAAC,GAAG,IAAI,WAAW;AAChC,IAAI,SAAS,CAAC,GAAG,IAAI,CAAC,sDAAsD,CAAC;AAC7E,EAAE;AACF,EAAE,SAAS,CAAC,GAAG,IAAI,CAAC,QAAQ,CAAC;AAC7B,EAAE,GAAG,EAAE;AACP;;;;"}
|
|
@@ -1,39 +1,23 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* This file is part of Plum.
|
|
3
|
-
*
|
|
4
|
-
* Plum is free software: you can redistribute it and/or modify
|
|
5
|
-
* it under the terms of the GNU General Public License as published by
|
|
6
|
-
* the Free Software Foundation, either version 3 of the License, or
|
|
7
|
-
* (at your option) any later version.
|
|
8
|
-
*
|
|
9
|
-
* Plum is distributed in the hope that it will be useful,
|
|
10
|
-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
11
|
-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
12
|
-
* GNU General Public License for more details.
|
|
13
|
-
*
|
|
14
|
-
* You should have received a copy of the GNU General Public License
|
|
15
|
-
* along with Plum. If not, see https://www.gnu.org/licenses/.
|
|
16
|
-
*/
|
|
17
|
-
|
|
18
1
|
/*
|
|
19
2
|
* This file is part of Plum.
|
|
20
3
|
* Licensed under the MIT License. See LICENSE file in the project root for details.
|
|
21
4
|
*/
|
|
22
5
|
|
|
23
|
-
import { N as push,
|
|
24
|
-
import { t as tick } from './index-server-
|
|
25
|
-
import { f as fetchReports, r as reportUrl } from './reports-
|
|
26
|
-
import { r as reportsVersion } from './runner-
|
|
27
|
-
import { R as REPORTS_PER_PAGE, B as BROWSERS } from './constants-
|
|
28
|
-
import { s as stagger, i as isScheduled, t as triggerVariant, a as triggerLabel } from './format-
|
|
29
|
-
import { B as Badge } from './Badge-
|
|
6
|
+
import { N as push, a0 as store_get, a2 as copy_payload, a3 as assign_payload, a1 as unsubscribe_stores, P as pop, Z as head, $ as stringify, _ as ensure_array_like, a4 as fallback, a5 as bind_props } from './index2-5R1tbrep.js';
|
|
7
|
+
import { t as tick } from './index-server-B3M9vyh2.js';
|
|
8
|
+
import { f as fetchReports, r as reportUrl } from './reports-D_ApeeNh.js';
|
|
9
|
+
import { r as reportsVersion } from './runner-DC7hXbnY.js';
|
|
10
|
+
import { R as REPORTS_PER_PAGE, B as BROWSERS } from './constants-CXTaQaB6.js';
|
|
11
|
+
import { s as stagger, i as isScheduled, t as triggerVariant, a as triggerLabel } from './format-CiNRMfHu.js';
|
|
12
|
+
import { B as Badge } from './Badge-44ZTDx0V.js';
|
|
30
13
|
import { a as attr } from './attributes-BeaNKpgU.js';
|
|
31
14
|
import { e as escape_html } from './escaping-CqgfEcN3.js';
|
|
32
|
-
import { C as ConfirmModal } from './ConfirmModal-
|
|
33
|
-
import { E as EmptyState } from './EmptyState-
|
|
34
|
-
import { t as trendDotTitle, S as SELECT_ALL_TITLE, d as deleteSelectedLabel, a as SELECT_ROW_TITLE, D as DELETE_REPORT_TITLE, L as LIST_PAGE_TITLE, b as deleteReportsBody, c as deleteReportsTitle, H as HEADING, r as runsRecorded, P as PASSING_LABEL, p as passedCountLabel, f as failedCountLabel, R as RECENT_LABEL, T as TREND_HINT, N as NO_REPORTS_MESSAGE } from './reports2-
|
|
35
|
-
import './
|
|
36
|
-
import './
|
|
15
|
+
import { C as ConfirmModal } from './ConfirmModal-C0EAXcq_.js';
|
|
16
|
+
import { E as EmptyState } from './EmptyState-BA_eXaeR.js';
|
|
17
|
+
import { t as trendDotTitle, S as SELECT_ALL_TITLE, d as deleteSelectedLabel, a as SELECT_ROW_TITLE, D as DELETE_REPORT_TITLE, L as LIST_PAGE_TITLE, b as deleteReportsBody, c as deleteReportsTitle, H as HEADING, r as runsRecorded, P as PASSING_LABEL, p as passedCountLabel, f as failedCountLabel, R as RECENT_LABEL, T as TREND_HINT, N as NO_REPORTS_MESSAGE } from './reports2-BtElN_53.js';
|
|
18
|
+
import './auth-Chw-wBpI.js';
|
|
19
|
+
import './Modal-DChG187n.js';
|
|
20
|
+
import './common-DYYTVHPw.js';
|
|
37
21
|
|
|
38
22
|
function Pagination($$payload, $$props) {
|
|
39
23
|
push();
|
|
@@ -214,4 +198,4 @@ function _page($$payload, $$props) {
|
|
|
214
198
|
}
|
|
215
199
|
|
|
216
200
|
export { _page as default };
|
|
217
|
-
//# sourceMappingURL=_page.svelte-
|
|
201
|
+
//# sourceMappingURL=_page.svelte-1as75nPc.js.map
|
package/frontend/build/server/chunks/{_page.svelte-BbZNxvCl.js.map → _page.svelte-1as75nPc.js.map}
RENAMED
|
@@ -1,21 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
2
|
This file is part of Plum.
|
|
3
|
-
|
|
4
|
-
Plum is free software: you can redistribute it and/or modify
|
|
5
|
-
it under the terms of the GNU General Public License as published by
|
|
6
|
-
the Free Software Foundation, either version 3 of the License, or
|
|
7
|
-
(at your option) any later version.
|
|
8
|
-
|
|
9
|
-
Plum is distributed in the hope that it will be useful,
|
|
10
|
-
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
11
|
-
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
12
|
-
GNU General Public License for more details.
|
|
13
|
-
|
|
14
|
-
You should have received a copy of the GNU General Public License
|
|
15
|
-
along with Plum. If not, see https://www.gnu.org/licenses/.
|
|
16
|
-
*/
|
|
17
|
-
/*
|
|
18
|
-
This file is part of Plum.
|
|
19
3
|
Licensed under the MIT License. See LICENSE file in the project root for details.
|
|
20
4
|
*/
|
|
21
|
-
{"version":3,"file":"_page.svelte-BbZNxvCl.js","sources":["../../../.svelte-kit/adapter-node/entries/pages/reports/_page.svelte.js"],"sourcesContent":["import { a as push, a0 as fallback, Z as ensure_array_like, _ as stringify, a1 as bind_props, p as pop, X as store_get, a2 as copy_payload, a3 as assign_payload, $ as unsubscribe_stores, Y as head } from \"../../../chunks/index.js\";\nimport { t as tick } from \"../../../chunks/index-server.js\";\nimport { f as fetchReports, r as reportUrl } from \"../../../chunks/reports.js\";\nimport { r as reportsVersion } from \"../../../chunks/runner.js\";\nimport { R as REPORTS_PER_PAGE, B as BROWSERS } from \"../../../chunks/constants.js\";\nimport { s as stagger, i as isScheduled, t as triggerVariant, a as triggerLabel } from \"../../../chunks/format.js\";\nimport { B as Badge } from \"../../../chunks/Badge.js\";\n/* empty css */\nimport { a as attr } from \"../../../chunks/attributes.js\";\nimport { e as escape_html } from \"../../../chunks/escaping.js\";\nimport { C as ConfirmModal } from \"../../../chunks/ConfirmModal.js\";\nimport { E as EmptyState } from \"../../../chunks/EmptyState.js\";\nimport { d as deleteReportsTitle, t as trendDotTitle, S as SELECT_ALL_TITLE, a as deleteSelectedLabel, b as SELECT_ROW_TITLE, D as DELETE_REPORT_TITLE, L as LIST_PAGE_TITLE, c as deleteReportsBody, H as HEADING, r as runsRecorded, P as PASSING_LABEL, p as passedCountLabel, f as failedCountLabel, R as RECENT_LABEL, T as TREND_HINT, N as NO_REPORTS_MESSAGE } from \"../../../chunks/reports2.js\";\nfunction Pagination($$payload, $$props) {\n push();\n let current = fallback($$props[\"current\"], 1);\n let total = fallback($$props[\"total\"], 1);\n if (total > 1) {\n $$payload.out += \"<!--[-->\";\n const each_array = ensure_array_like(Array(total));\n $$payload.out += `<div class=\"pagination svelte-1a7b06a\"><button class=\"arrow svelte-1a7b06a\"${attr(\"disabled\", current === 1, true)} aria-label=\"Previous\">←</button> <!--[-->`;\n for (let i = 0, $$length = each_array.length; i < $$length; i++) {\n each_array[i];\n $$payload.out += `<button${attr(\"class\", `page svelte-1a7b06a ${stringify([current === i + 1 ? \"active\" : \"\"].filter(Boolean).join(\" \"))}`)}>${escape_html(i + 1)}</button>`;\n }\n $$payload.out += `<!--]--> <button class=\"arrow svelte-1a7b06a\"${attr(\"disabled\", current === total, true)} aria-label=\"Next\">→</button></div>`;\n } else {\n $$payload.out += \"<!--[!-->\";\n }\n $$payload.out += `<!--]-->`;\n bind_props($$props, { current, total });\n pop();\n}\nfunction _page($$payload, $$props) {\n push();\n var $$store_subs;\n let totalPages, passRate, trendDots, allOnPageSelected, someSelected;\n let reports = [];\n let total = 0;\n let passCount = 0;\n let failCount = 0;\n let trend = [];\n let currentPage = 1;\n let animateBar = false;\n let selected = /* @__PURE__ */ new Set();\n let deleteModal = { open: false, targets: [] };\n let deleting = false;\n async function loadReports() {\n try {\n let data = await fetchReports({ page: currentPage, limit: REPORTS_PER_PAGE });\n if (data.reports.length === 0 && currentPage > 1) {\n currentPage = Math.max(1, Math.ceil(data.total / REPORTS_PER_PAGE));\n data = await fetchReports({ page: currentPage, limit: REPORTS_PER_PAGE });\n }\n reports = data.reports;\n total = data.total;\n passCount = data.passCount;\n failCount = data.failCount;\n trend = data.trend;\n selected = /* @__PURE__ */ new Set();\n await tick();\n animateBar = true;\n } catch (e) {\n console.error(\"Failed to fetch reports\", e);\n }\n }\n totalPages = Math.ceil(total / REPORTS_PER_PAGE);\n passRate = total ? Math.round(passCount / total * 100) : 0;\n trendDots = [...trend].reverse();\n allOnPageSelected = reports.length > 0 && reports.every((r) => selected.has(r.id));\n someSelected = selected.size > 0;\n if (store_get($$store_subs ??= {}, \"$reportsVersion\", reportsVersion)) loadReports();\n let $$settled = true;\n let $$inner_payload;\n function $$render_inner($$payload2) {\n head($$payload2, ($$payload3) => {\n $$payload3.title = `<title>${escape_html(LIST_PAGE_TITLE)}</title>`;\n });\n ConfirmModal($$payload2, {\n title: deleteReportsTitle(deleteModal.targets.length),\n loading: deleting,\n get open() {\n return deleteModal.open;\n },\n set open($$value) {\n deleteModal.open = $$value;\n $$settled = false;\n },\n children: ($$payload3) => {\n $$payload3.out += `<!---->${escape_html(deleteReportsBody(deleteModal.targets.length))}`;\n },\n $$slots: { default: true }\n });\n $$payload2.out += `<!----> <div class=\"page-header svelte-wkly2m\"><div class=\"header-top svelte-wkly2m\"><div><h1 class=\"svelte-wkly2m\">${escape_html(HEADING)}</h1> <p class=\"subtitle svelte-wkly2m\">${escape_html(runsRecorded(total))}</p></div> `;\n if (total > 0) {\n $$payload2.out += \"<!--[-->\";\n $$payload2.out += `<div class=\"rate-display svelte-wkly2m\"><span${attr(\"class\", `rate-number svelte-wkly2m ${stringify([\n passRate >= 80 ? \"pass\" : \"\",\n passRate < 80 && passRate >= 50 ? \"warn\" : \"\",\n passRate < 50 ? \"fail\" : \"\"\n ].filter(Boolean).join(\" \"))}`)}>${escape_html(passRate)}%</span> <span class=\"rate-label svelte-wkly2m\">${escape_html(PASSING_LABEL)}</span></div>`;\n } else {\n $$payload2.out += \"<!--[!-->\";\n }\n $$payload2.out += `<!--]--></div> `;\n if (total > 0) {\n $$payload2.out += \"<!--[-->\";\n const each_array = ensure_array_like(trendDots);\n $$payload2.out += `<div class=\"stats-bar svelte-wkly2m\"><div class=\"pass-bar-track svelte-wkly2m\"><div class=\"pass-bar-fill svelte-wkly2m\"${attr(\"style\", `width: ${stringify(animateBar ? passRate + \"%\" : \"0\")}`)}></div></div> <div class=\"bar-legend svelte-wkly2m\"><span class=\"legend-pass svelte-wkly2m\">${escape_html(passedCountLabel(passCount))}</span> <span class=\"legend-fail svelte-wkly2m\">${escape_html(failedCountLabel(failCount))}</span></div></div> <div class=\"trend-row svelte-wkly2m\"><span class=\"trend-label svelte-wkly2m\">${escape_html(RECENT_LABEL)}</span> <div class=\"trend-dots svelte-wkly2m\"><!--[-->`;\n for (let i = 0, $$length = each_array.length; i < $$length; i++) {\n let r = each_array[i];\n $$payload2.out += `<span${attr(\"class\", `trend-dot svelte-wkly2m ${stringify([\n r.status === \"PASS\" ? \"pass\" : \"\",\n r.status !== \"PASS\" ? \"fail\" : \"\"\n ].filter(Boolean).join(\" \"))}`)}${attr(\"style\", stagger(i, 35))}${attr(\"title\", trendDotTitle(r.status, r.tags, r.date))}></span>`;\n }\n $$payload2.out += `<!--]--></div> <span class=\"trend-hint svelte-wkly2m\">${escape_html(TREND_HINT)}</span></div>`;\n } else {\n $$payload2.out += \"<!--[!-->\";\n }\n $$payload2.out += `<!--]--></div> `;\n if (total === 0) {\n $$payload2.out += \"<!--[-->\";\n EmptyState($$payload2, { message: NO_REPORTS_MESSAGE });\n } else {\n $$payload2.out += \"<!--[!-->\";\n const each_array_1 = ensure_array_like(reports);\n $$payload2.out += `<div class=\"list-header svelte-wkly2m\"><label class=\"select-all-wrap svelte-wkly2m\"${attr(\"title\", SELECT_ALL_TITLE)}><input type=\"checkbox\" class=\"checkbox svelte-wkly2m\"${attr(\"checked\", allOnPageSelected, true)}${attr(\"indeterminate\", someSelected && !allOnPageSelected, true)}></label> `;\n if (someSelected) {\n $$payload2.out += \"<!--[-->\";\n $$payload2.out += `<button class=\"btn-delete-selected svelte-wkly2m\">${escape_html(deleteSelectedLabel(selected.size))}</button>`;\n } else {\n $$payload2.out += \"<!--[!-->\";\n }\n $$payload2.out += `<!--]--></div> <div class=\"report-list svelte-wkly2m\"><!--[-->`;\n for (let i = 0, $$length = each_array_1.length; i < $$length; i++) {\n let report = each_array_1[i];\n $$payload2.out += `<div${attr(\"class\", `report-row svelte-wkly2m ${stringify([\n selected.has(report.id) ? \"is-selected\" : \"\"\n ].filter(Boolean).join(\" \"))}`)}${attr(\"style\", stagger(i))}><label class=\"row-check-wrap svelte-wkly2m\"${attr(\"title\", SELECT_ROW_TITLE)}><input type=\"checkbox\" class=\"checkbox svelte-wkly2m\"${attr(\"checked\", selected.has(report.id), true)}></label> <a${attr(\"class\", `report-item svelte-wkly2m ${stringify([\n report.status === \"PASS\" ? \"is-pass\" : \"\",\n report.status !== \"PASS\" ? \"is-fail\" : \"\"\n ].filter(Boolean).join(\" \"))}`)}${attr(\"href\", reportUrl(report.id))}><div class=\"item-left svelte-wkly2m\"><span${attr(\"class\", `status-mark svelte-wkly2m ${stringify([\n report.status === \"PASS\" ? \"pass\" : \"\",\n report.status !== \"PASS\" ? \"fail\" : \"\"\n ].filter(Boolean).join(\" \"))}`)}>${escape_html(report.status === \"PASS\" ? \"✓\" : \"✗\")}</span> <div class=\"item-meta svelte-wkly2m\"><span class=\"item-tags svelte-wkly2m\">${escape_html(report.testRun?.title ?? (isScheduled(report.triggerType) ? report.triggerType : report.tags))}</span> <div class=\"item-badges svelte-wkly2m\">`;\n Badge($$payload2, {\n variant: triggerVariant(report.triggerType),\n children: ($$payload3) => {\n $$payload3.out += `<!---->${escape_html(triggerLabel(report.triggerType))}`;\n },\n $$slots: { default: true }\n });\n $$payload2.out += `<!----> `;\n if (report.browser && report.browser !== BROWSERS[0].id) {\n $$payload2.out += \"<!--[-->\";\n Badge($$payload2, {\n variant: \"neutral\",\n children: ($$payload3) => {\n $$payload3.out += `<!---->${escape_html(report.browser)}`;\n },\n $$slots: { default: true }\n });\n } else {\n $$payload2.out += \"<!--[!-->\";\n }\n $$payload2.out += `<!--]--></div></div></div> <div class=\"item-right svelte-wkly2m\"><span class=\"item-date svelte-wkly2m\">${escape_html(report.date)}</span> <svg class=\"item-arrow svelte-wkly2m\" width=\"14\" height=\"14\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\"><line x1=\"5\" y1=\"12\" x2=\"19\" y2=\"12\"></line><polyline points=\"12 5 19 12 12 19\"></polyline></svg></div></a> <button class=\"row-delete-btn svelte-wkly2m\"${attr(\"title\", DELETE_REPORT_TITLE)}><svg width=\"14\" height=\"14\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><polyline points=\"3 6 5 6 21 6\"></polyline><path d=\"M19 6l-1 14H6L5 6\"></path><path d=\"M10 11v6M14 11v6\"></path><path d=\"M9 6V4h6v2\"></path></svg></button></div>`;\n }\n $$payload2.out += `<!--]--></div> `;\n if (totalPages > 1) {\n $$payload2.out += \"<!--[-->\";\n $$payload2.out += `<div class=\"pagination-wrap svelte-wkly2m\">`;\n Pagination($$payload2, { current: currentPage, total: totalPages });\n $$payload2.out += `<!----></div>`;\n } else {\n $$payload2.out += \"<!--[!-->\";\n }\n $$payload2.out += `<!--]-->`;\n }\n $$payload2.out += `<!--]-->`;\n }\n do {\n $$settled = true;\n $$inner_payload = copy_payload($$payload);\n $$render_inner($$inner_payload);\n } while (!$$settled);\n assign_payload($$payload, $$inner_payload);\n if ($$store_subs) unsubscribe_stores($$store_subs);\n pop();\n}\nexport {\n _page as default\n};\n"],"names":[],"mappings":";;;;;;;;;;;;;;;AAaA,SAAS,UAAU,CAAC,SAAS,EAAE,OAAO,EAAE;AACxC,EAAE,IAAI,EAAE;AACR,EAAE,IAAI,OAAO,GAAG,QAAQ,CAAC,OAAO,CAAC,SAAS,CAAC,EAAE,CAAC,CAAC;AAC/C,EAAE,IAAI,KAAK,GAAG,QAAQ,CAAC,OAAO,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC;AAC3C,EAAE,IAAI,KAAK,GAAG,CAAC,EAAE;AACjB,IAAI,SAAS,CAAC,GAAG,IAAI,UAAU;AAC/B,IAAI,MAAM,UAAU,GAAG,iBAAiB,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;AACtD,IAAI,SAAS,CAAC,GAAG,IAAI,CAAC,2EAA2E,EAAE,IAAI,CAAC,UAAU,EAAE,OAAO,KAAK,CAAC,EAAE,IAAI,CAAC,CAAC,0CAA0C,CAAC;AACpL,IAAI,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,QAAQ,GAAG,UAAU,CAAC,MAAM,EAAE,CAAC,GAAG,QAAQ,EAAE,CAAC,EAAE,EAAE;AACrE,MAAM,UAAU,CAAC,CAAC,CAAC;AACnB,MAAM,SAAS,CAAC,GAAG,IAAI,CAAC,OAAO,EAAE,IAAI,CAAC,OAAO,EAAE,CAAC,oBAAoB,EAAE,SAAS,CAAC,CAAC,OAAO,KAAK,CAAC,GAAG,CAAC,GAAG,QAAQ,GAAG,EAAE,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,WAAW,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,SAAS,CAAC;AAClL,IAAI;AACJ,IAAI,SAAS,CAAC,GAAG,IAAI,CAAC,6CAA6C,EAAE,IAAI,CAAC,UAAU,EAAE,OAAO,KAAK,KAAK,EAAE,IAAI,CAAC,CAAC,mCAAmC,CAAC;AACnJ,EAAE,CAAC,MAAM;AACT,IAAI,SAAS,CAAC,GAAG,IAAI,WAAW;AAChC,EAAE;AACF,EAAE,SAAS,CAAC,GAAG,IAAI,CAAC,QAAQ,CAAC;AAC7B,EAAE,UAAU,CAAC,OAAO,EAAE,EAAE,OAAO,EAAE,KAAK,EAAE,CAAC;AACzC,EAAE,GAAG,EAAE;AACP;AACA,SAAS,KAAK,CAAC,SAAS,EAAE,OAAO,EAAE;AACnC,EAAE,IAAI,EAAE;AACR,EAAE,IAAI,YAAY;AAClB,EAAE,IAAI,UAAU,EAAE,QAAQ,EAAE,SAAS,EAAE,iBAAiB,EAAE,YAAY;AACtE,EAAE,IAAI,OAAO,GAAG,EAAE;AAClB,EAAE,IAAI,KAAK,GAAG,CAAC;AACf,EAAE,IAAI,SAAS,GAAG,CAAC;AACnB,EAAE,IAAI,SAAS,GAAG,CAAC;AACnB,EAAE,IAAI,KAAK,GAAG,EAAE;AAChB,EAAE,IAAI,WAAW,GAAG,CAAC;AACrB,EAAE,IAAI,UAAU,GAAG,KAAK;AACxB,EAAE,IAAI,QAAQ,mBAAmB,IAAI,GAAG,EAAE;AAC1C,EAAE,IAAI,WAAW,GAAG,EAAE,IAAI,EAAE,KAAK,EAAE,OAAO,EAAE,EAAE,EAAE;AAChD,EAAE,IAAI,QAAQ,GAAG,KAAK;AACtB,EAAE,eAAe,WAAW,GAAG;AAC/B,IAAI,IAAI;AACR,MAAM,IAAI,IAAI,GAAG,MAAM,YAAY,CAAC,EAAE,IAAI,EAAE,WAAW,EAAE,KAAK,EAAE,gBAAgB,EAAE,CAAC;AACnF,MAAM,IAAI,IAAI,CAAC,OAAO,CAAC,MAAM,KAAK,CAAC,IAAI,WAAW,GAAG,CAAC,EAAE;AACxD,QAAQ,WAAW,GAAG,IAAI,CAAC,GAAG,CAAC,CAAC,EAAE,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,KAAK,GAAG,gBAAgB,CAAC,CAAC;AAC3E,QAAQ,IAAI,GAAG,MAAM,YAAY,CAAC,EAAE,IAAI,EAAE,WAAW,EAAE,KAAK,EAAE,gBAAgB,EAAE,CAAC;AACjF,MAAM;AACN,MAAM,OAAO,GAAG,IAAI,CAAC,OAAO;AAC5B,MAAM,KAAK,GAAG,IAAI,CAAC,KAAK;AACxB,MAAM,SAAS,GAAG,IAAI,CAAC,SAAS;AAChC,MAAM,SAAS,GAAG,IAAI,CAAC,SAAS;AAChC,MAAM,KAAK,GAAG,IAAI,CAAC,KAAK;AACxB,MAAM,QAAQ,mBAAmB,IAAI,GAAG,EAAE;AAC1C,MAAM,MAAM,IAAI,EAAE;AAClB,MAAM,UAAU,GAAG,IAAI;AACvB,IAAI,CAAC,CAAC,OAAO,CAAC,EAAE;AAChB,MAAM,OAAO,CAAC,KAAK,CAAC,yBAAyB,EAAE,CAAC,CAAC;AACjD,IAAI;AACJ,EAAE;AACF,EAAE,UAAU,GAAG,IAAI,CAAC,IAAI,CAAC,KAAK,GAAG,gBAAgB,CAAC;AAClD,EAAE,QAAQ,GAAG,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,SAAS,GAAG,KAAK,GAAG,GAAG,CAAC,GAAG,CAAC;AAC5D,EAAE,SAAS,GAAG,CAAC,GAAG,KAAK,CAAC,CAAC,OAAO,EAAE;AAClC,EAAE,iBAAiB,GAAG,OAAO,CAAC,MAAM,GAAG,CAAC,IAAI,OAAO,CAAC,KAAK,CAAC,CAAC,CAAC,KAAK,QAAQ,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC;AACpF,EAAE,YAAY,GAAG,QAAQ,CAAC,IAAI,GAAG,CAAC;AAClC,EAAE,IAAI,SAAS,CAAC,YAAY,KAAK,EAAE,EAAE,iBAAiB,EAAE,cAAc,CAAC,EAAE,WAAW,EAAE;AACtF,EAAE,IAAI,SAAS,GAAG,IAAI;AACtB,EAAE,IAAI,eAAe;AACrB,EAAE,SAAS,cAAc,CAAC,UAAU,EAAE;AACtC,IAAI,IAAI,CAAC,UAAU,EAAE,CAAC,UAAU,KAAK;AACrC,MAAM,UAAU,CAAC,KAAK,GAAG,CAAC,OAAO,EAAE,WAAW,CAAC,eAAe,CAAC,CAAC,QAAQ,CAAC;AACzE,IAAI,CAAC,CAAC;AACN,IAAI,YAAY,CAAC,UAAU,EAAE;AAC7B,MAAM,KAAK,EAAE,kBAAkB,CAAC,WAAW,CAAC,OAAO,CAAC,MAAM,CAAC;AAC3D,MAAM,OAAO,EAAE,QAAQ;AACvB,MAAM,IAAI,IAAI,GAAG;AACjB,QAAQ,OAAO,WAAW,CAAC,IAAI;AAC/B,MAAM,CAAC;AACP,MAAM,IAAI,IAAI,CAAC,OAAO,EAAE;AACxB,QAAQ,WAAW,CAAC,IAAI,GAAG,OAAO;AAClC,QAAQ,SAAS,GAAG,KAAK;AACzB,MAAM,CAAC;AACP,MAAM,QAAQ,EAAE,CAAC,UAAU,KAAK;AAChC,QAAQ,UAAU,CAAC,GAAG,IAAI,CAAC,OAAO,EAAE,WAAW,CAAC,iBAAiB,CAAC,WAAW,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC;AAChG,MAAM,CAAC;AACP,MAAM,OAAO,EAAE,EAAE,OAAO,EAAE,IAAI;AAC9B,KAAK,CAAC;AACN,IAAI,UAAU,CAAC,GAAG,IAAI,CAAC,oHAAoH,EAAE,WAAW,CAAC,OAAO,CAAC,CAAC,wCAAwC,EAAE,WAAW,CAAC,YAAY,CAAC,KAAK,CAAC,CAAC,CAAC,WAAW,CAAC;AACzP,IAAI,IAAI,KAAK,GAAG,CAAC,EAAE;AACnB,MAAM,UAAU,CAAC,GAAG,IAAI,UAAU;AAClC,MAAM,UAAU,CAAC,GAAG,IAAI,CAAC,6CAA6C,EAAE,IAAI,CAAC,OAAO,EAAE,CAAC,0BAA0B,EAAE,SAAS,CAAC;AAC7H,QAAQ,QAAQ,IAAI,EAAE,GAAG,MAAM,GAAG,EAAE;AACpC,QAAQ,QAAQ,GAAG,EAAE,IAAI,QAAQ,IAAI,EAAE,GAAG,MAAM,GAAG,EAAE;AACrD,QAAQ,QAAQ,GAAG,EAAE,GAAG,MAAM,GAAG;AACjC,OAAO,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,WAAW,CAAC,QAAQ,CAAC,CAAC,gDAAgD,EAAE,WAAW,CAAC,aAAa,CAAC,CAAC,aAAa,CAAC;AAC1J,IAAI,CAAC,MAAM;AACX,MAAM,UAAU,CAAC,GAAG,IAAI,WAAW;AACnC,IAAI;AACJ,IAAI,UAAU,CAAC,GAAG,IAAI,CAAC,eAAe,CAAC;AACvC,IAAI,IAAI,KAAK,GAAG,CAAC,EAAE;AACnB,MAAM,UAAU,CAAC,GAAG,IAAI,UAAU;AAClC,MAAM,MAAM,UAAU,GAAG,iBAAiB,CAAC,SAAS,CAAC;AACrD,MAAM,UAAU,CAAC,GAAG,IAAI,CAAC,uHAAuH,EAAE,IAAI,CAAC,OAAO,EAAE,CAAC,OAAO,EAAE,SAAS,CAAC,UAAU,GAAG,QAAQ,GAAG,GAAG,GAAG,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,4FAA4F,EAAE,WAAW,CAAC,gBAAgB,CAAC,SAAS,CAAC,CAAC,CAAC,gDAAgD,EAAE,WAAW,CAAC,gBAAgB,CAAC,SAAS,CAAC,CAAC,CAAC,iGAAiG,EAAE,WAAW,CAAC,YAAY,CAAC,CAAC,sDAAsD,CAAC;AAChnB,MAAM,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,QAAQ,GAAG,UAAU,CAAC,MAAM,EAAE,CAAC,GAAG,QAAQ,EAAE,CAAC,EAAE,EAAE;AACvE,QAAQ,IAAI,CAAC,GAAG,UAAU,CAAC,CAAC,CAAC;AAC7B,QAAQ,UAAU,CAAC,GAAG,IAAI,CAAC,KAAK,EAAE,IAAI,CAAC,OAAO,EAAE,CAAC,wBAAwB,EAAE,SAAS,CAAC;AACrF,UAAU,CAAC,CAAC,MAAM,KAAK,MAAM,GAAG,MAAM,GAAG,EAAE;AAC3C,UAAU,CAAC,CAAC,MAAM,KAAK,MAAM,GAAG,MAAM,GAAG;AACzC,SAAS,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,IAAI,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,IAAI,CAAC,OAAO,EAAE,aAAa,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,IAAI,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,QAAQ,CAAC;AAC1I,MAAM;AACN,MAAM,UAAU,CAAC,GAAG,IAAI,CAAC,sDAAsD,EAAE,WAAW,CAAC,UAAU,CAAC,CAAC,aAAa,CAAC;AACvH,IAAI,CAAC,MAAM;AACX,MAAM,UAAU,CAAC,GAAG,IAAI,WAAW;AACnC,IAAI;AACJ,IAAI,UAAU,CAAC,GAAG,IAAI,CAAC,eAAe,CAAC;AACvC,IAAI,IAAI,KAAK,KAAK,CAAC,EAAE;AACrB,MAAM,UAAU,CAAC,GAAG,IAAI,UAAU;AAClC,MAAM,UAAU,CAAC,UAAU,EAAE,EAAE,OAAO,EAAE,kBAAkB,EAAE,CAAC;AAC7D,IAAI,CAAC,MAAM;AACX,MAAM,UAAU,CAAC,GAAG,IAAI,WAAW;AACnC,MAAM,MAAM,YAAY,GAAG,iBAAiB,CAAC,OAAO,CAAC;AACrD,MAAM,UAAU,CAAC,GAAG,IAAI,CAAC,mFAAmF,EAAE,IAAI,CAAC,OAAO,EAAE,gBAAgB,CAAC,CAAC,sDAAsD,EAAE,IAAI,CAAC,SAAS,EAAE,iBAAiB,EAAE,IAAI,CAAC,CAAC,EAAE,IAAI,CAAC,eAAe,EAAE,YAAY,IAAI,CAAC,iBAAiB,EAAE,IAAI,CAAC,CAAC,UAAU,CAAC;AAC5T,MAAM,IAAI,YAAY,EAAE;AACxB,QAAQ,UAAU,CAAC,GAAG,IAAI,UAAU;AACpC,QAAQ,UAAU,CAAC,GAAG,IAAI,CAAC,kDAAkD,EAAE,WAAW,CAAC,mBAAmB,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;AACzI,MAAM,CAAC,MAAM;AACb,QAAQ,UAAU,CAAC,GAAG,IAAI,WAAW;AACrC,MAAM;AACN,MAAM,UAAU,CAAC,GAAG,IAAI,CAAC,8DAA8D,CAAC;AACxF,MAAM,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,QAAQ,GAAG,YAAY,CAAC,MAAM,EAAE,CAAC,GAAG,QAAQ,EAAE,CAAC,EAAE,EAAE;AACzE,QAAQ,IAAI,MAAM,GAAG,YAAY,CAAC,CAAC,CAAC;AACpC,QAAQ,UAAU,CAAC,GAAG,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC,OAAO,EAAE,CAAC,yBAAyB,EAAE,SAAS,CAAC;AACrF,UAAU,QAAQ,CAAC,GAAG,CAAC,MAAM,CAAC,EAAE,CAAC,GAAG,aAAa,GAAG;AACpD,SAAS,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,IAAI,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,4CAA4C,EAAE,IAAI,CAAC,OAAO,EAAE,gBAAgB,CAAC,CAAC,sDAAsD,EAAE,IAAI,CAAC,SAAS,EAAE,QAAQ,CAAC,GAAG,CAAC,MAAM,CAAC,EAAE,CAAC,EAAE,IAAI,CAAC,CAAC,YAAY,EAAE,IAAI,CAAC,OAAO,EAAE,CAAC,0BAA0B,EAAE,SAAS,CAAC;AAC5T,UAAU,MAAM,CAAC,MAAM,KAAK,MAAM,GAAG,SAAS,GAAG,EAAE;AACnD,UAAU,MAAM,CAAC,MAAM,KAAK,MAAM,GAAG,SAAS,GAAG;AACjD,SAAS,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,IAAI,CAAC,MAAM,EAAE,SAAS,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,CAAC,2CAA2C,EAAE,IAAI,CAAC,OAAO,EAAE,CAAC,0BAA0B,EAAE,SAAS,CAAC;AAC/K,UAAU,MAAM,CAAC,MAAM,KAAK,MAAM,GAAG,MAAM,GAAG,EAAE;AAChD,UAAU,MAAM,CAAC,MAAM,KAAK,MAAM,GAAG,MAAM,GAAG;AAC9C,SAAS,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,WAAW,CAAC,MAAM,CAAC,MAAM,KAAK,MAAM,GAAG,GAAG,GAAG,GAAG,CAAC,CAAC,mFAAmF,EAAE,WAAW,CAAC,MAAM,CAAC,OAAO,EAAE,KAAK,KAAK,WAAW,CAAC,MAAM,CAAC,WAAW,CAAC,GAAG,MAAM,CAAC,WAAW,GAAG,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,+CAA+C,CAAC;AAC7U,QAAQ,KAAK,CAAC,UAAU,EAAE;AAC1B,UAAU,OAAO,EAAE,cAAc,CAAC,MAAM,CAAC,WAAW,CAAC;AACrD,UAAU,QAAQ,EAAE,CAAC,UAAU,KAAK;AACpC,YAAY,UAAU,CAAC,GAAG,IAAI,CAAC,OAAO,EAAE,WAAW,CAAC,YAAY,CAAC,MAAM,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC;AACvF,UAAU,CAAC;AACX,UAAU,OAAO,EAAE,EAAE,OAAO,EAAE,IAAI;AAClC,SAAS,CAAC;AACV,QAAQ,UAAU,CAAC,GAAG,IAAI,CAAC,QAAQ,CAAC;AACpC,QAAQ,IAAI,MAAM,CAAC,OAAO,IAAI,MAAM,CAAC,OAAO,KAAK,QAAQ,CAAC,CAAC,CAAC,CAAC,EAAE,EAAE;AACjE,UAAU,UAAU,CAAC,GAAG,IAAI,UAAU;AACtC,UAAU,KAAK,CAAC,UAAU,EAAE;AAC5B,YAAY,OAAO,EAAE,SAAS;AAC9B,YAAY,QAAQ,EAAE,CAAC,UAAU,KAAK;AACtC,cAAc,UAAU,CAAC,GAAG,IAAI,CAAC,OAAO,EAAE,WAAW,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,CAAC;AACvE,YAAY,CAAC;AACb,YAAY,OAAO,EAAE,EAAE,OAAO,EAAE,IAAI;AACpC,WAAW,CAAC;AACZ,QAAQ,CAAC,MAAM;AACf,UAAU,UAAU,CAAC,GAAG,IAAI,WAAW;AACvC,QAAQ;AACR,QAAQ,UAAU,CAAC,GAAG,IAAI,CAAC,uGAAuG,EAAE,WAAW,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,2TAA2T,EAAE,IAAI,CAAC,OAAO,EAAE,mBAAmB,CAAC,CAAC,oTAAoT,CAAC;AAClzB,MAAM;AACN,MAAM,UAAU,CAAC,GAAG,IAAI,CAAC,eAAe,CAAC;AACzC,MAAM,IAAI,UAAU,GAAG,CAAC,EAAE;AAC1B,QAAQ,UAAU,CAAC,GAAG,IAAI,UAAU;AACpC,QAAQ,UAAU,CAAC,GAAG,IAAI,CAAC,2CAA2C,CAAC;AACvE,QAAQ,UAAU,CAAC,UAAU,EAAE,EAAE,OAAO,EAAE,WAAW,EAAE,KAAK,EAAE,UAAU,EAAE,CAAC;AAC3E,QAAQ,UAAU,CAAC,GAAG,IAAI,CAAC,aAAa,CAAC;AACzC,MAAM,CAAC,MAAM;AACb,QAAQ,UAAU,CAAC,GAAG,IAAI,WAAW;AACrC,MAAM;AACN,MAAM,UAAU,CAAC,GAAG,IAAI,CAAC,QAAQ,CAAC;AAClC,IAAI;AACJ,IAAI,UAAU,CAAC,GAAG,IAAI,CAAC,QAAQ,CAAC;AAChC,EAAE;AACF,EAAE,GAAG;AACL,IAAI,SAAS,GAAG,IAAI;AACpB,IAAI,eAAe,GAAG,YAAY,CAAC,SAAS,CAAC;AAC7C,IAAI,cAAc,CAAC,eAAe,CAAC;AACnC,EAAE,CAAC,QAAQ,CAAC,SAAS;AACrB,EAAE,cAAc,CAAC,SAAS,EAAE,eAAe,CAAC;AAC5C,EAAE,IAAI,YAAY,EAAE,kBAAkB,CAAC,YAAY,CAAC;AACpD,EAAE,GAAG,EAAE;AACP;;;;"}
|
|
5
|
+
{"version":3,"file":"_page.svelte-1as75nPc.js","sources":["../../../.svelte-kit/adapter-node/entries/pages/reports/_page.svelte.js"],"sourcesContent":["import { a as push, a0 as fallback, Y as ensure_array_like, Z as stringify, a1 as bind_props, p as pop, _ as store_get, a2 as copy_payload, a3 as assign_payload, $ as unsubscribe_stores, X as head } from \"../../../chunks/index.js\";\nimport { t as tick } from \"../../../chunks/index-server.js\";\nimport { f as fetchReports, r as reportUrl } from \"../../../chunks/reports.js\";\nimport { r as reportsVersion } from \"../../../chunks/runner.js\";\nimport { R as REPORTS_PER_PAGE, B as BROWSERS } from \"../../../chunks/constants.js\";\nimport { s as stagger, i as isScheduled, t as triggerVariant, a as triggerLabel } from \"../../../chunks/format.js\";\nimport { B as Badge } from \"../../../chunks/Badge.js\";\n/* empty css */\nimport { a as attr } from \"../../../chunks/attributes.js\";\nimport { e as escape_html } from \"../../../chunks/escaping.js\";\nimport { C as ConfirmModal } from \"../../../chunks/ConfirmModal.js\";\nimport { E as EmptyState } from \"../../../chunks/EmptyState.js\";\nimport { d as deleteReportsTitle, t as trendDotTitle, S as SELECT_ALL_TITLE, a as deleteSelectedLabel, b as SELECT_ROW_TITLE, D as DELETE_REPORT_TITLE, L as LIST_PAGE_TITLE, c as deleteReportsBody, H as HEADING, r as runsRecorded, P as PASSING_LABEL, p as passedCountLabel, f as failedCountLabel, R as RECENT_LABEL, T as TREND_HINT, N as NO_REPORTS_MESSAGE } from \"../../../chunks/reports2.js\";\nfunction Pagination($$payload, $$props) {\n push();\n let current = fallback($$props[\"current\"], 1);\n let total = fallback($$props[\"total\"], 1);\n if (total > 1) {\n $$payload.out += \"<!--[-->\";\n const each_array = ensure_array_like(Array(total));\n $$payload.out += `<div class=\"pagination svelte-1a7b06a\"><button class=\"arrow svelte-1a7b06a\"${attr(\"disabled\", current === 1, true)} aria-label=\"Previous\">←</button> <!--[-->`;\n for (let i = 0, $$length = each_array.length; i < $$length; i++) {\n each_array[i];\n $$payload.out += `<button${attr(\"class\", `page svelte-1a7b06a ${stringify([current === i + 1 ? \"active\" : \"\"].filter(Boolean).join(\" \"))}`)}>${escape_html(i + 1)}</button>`;\n }\n $$payload.out += `<!--]--> <button class=\"arrow svelte-1a7b06a\"${attr(\"disabled\", current === total, true)} aria-label=\"Next\">→</button></div>`;\n } else {\n $$payload.out += \"<!--[!-->\";\n }\n $$payload.out += `<!--]-->`;\n bind_props($$props, { current, total });\n pop();\n}\nfunction _page($$payload, $$props) {\n push();\n var $$store_subs;\n let totalPages, passRate, trendDots, allOnPageSelected, someSelected;\n let reports = [];\n let total = 0;\n let passCount = 0;\n let failCount = 0;\n let trend = [];\n let currentPage = 1;\n let animateBar = false;\n let selected = /* @__PURE__ */ new Set();\n let deleteModal = { open: false, targets: [] };\n let deleting = false;\n async function loadReports() {\n try {\n let data = await fetchReports({ page: currentPage, limit: REPORTS_PER_PAGE });\n if (data.reports.length === 0 && currentPage > 1) {\n currentPage = Math.max(1, Math.ceil(data.total / REPORTS_PER_PAGE));\n data = await fetchReports({ page: currentPage, limit: REPORTS_PER_PAGE });\n }\n reports = data.reports;\n total = data.total;\n passCount = data.passCount;\n failCount = data.failCount;\n trend = data.trend;\n selected = /* @__PURE__ */ new Set();\n await tick();\n animateBar = true;\n } catch (e) {\n console.error(\"Failed to fetch reports\", e);\n }\n }\n totalPages = Math.ceil(total / REPORTS_PER_PAGE);\n passRate = total ? Math.round(passCount / total * 100) : 0;\n trendDots = [...trend].reverse();\n allOnPageSelected = reports.length > 0 && reports.every((r) => selected.has(r.id));\n someSelected = selected.size > 0;\n if (store_get($$store_subs ??= {}, \"$reportsVersion\", reportsVersion)) loadReports();\n let $$settled = true;\n let $$inner_payload;\n function $$render_inner($$payload2) {\n head($$payload2, ($$payload3) => {\n $$payload3.title = `<title>${escape_html(LIST_PAGE_TITLE)}</title>`;\n });\n ConfirmModal($$payload2, {\n title: deleteReportsTitle(deleteModal.targets.length),\n loading: deleting,\n get open() {\n return deleteModal.open;\n },\n set open($$value) {\n deleteModal.open = $$value;\n $$settled = false;\n },\n children: ($$payload3) => {\n $$payload3.out += `<!---->${escape_html(deleteReportsBody(deleteModal.targets.length))}`;\n },\n $$slots: { default: true }\n });\n $$payload2.out += `<!----> <div class=\"page-header svelte-wkly2m\"><div class=\"header-top svelte-wkly2m\"><div><h1 class=\"svelte-wkly2m\">${escape_html(HEADING)}</h1> <p class=\"subtitle svelte-wkly2m\">${escape_html(runsRecorded(total))}</p></div> `;\n if (total > 0) {\n $$payload2.out += \"<!--[-->\";\n $$payload2.out += `<div class=\"rate-display svelte-wkly2m\"><span${attr(\"class\", `rate-number svelte-wkly2m ${stringify([\n passRate >= 80 ? \"pass\" : \"\",\n passRate < 80 && passRate >= 50 ? \"warn\" : \"\",\n passRate < 50 ? \"fail\" : \"\"\n ].filter(Boolean).join(\" \"))}`)}>${escape_html(passRate)}%</span> <span class=\"rate-label svelte-wkly2m\">${escape_html(PASSING_LABEL)}</span></div>`;\n } else {\n $$payload2.out += \"<!--[!-->\";\n }\n $$payload2.out += `<!--]--></div> `;\n if (total > 0) {\n $$payload2.out += \"<!--[-->\";\n const each_array = ensure_array_like(trendDots);\n $$payload2.out += `<div class=\"stats-bar svelte-wkly2m\"><div class=\"pass-bar-track svelte-wkly2m\"><div class=\"pass-bar-fill svelte-wkly2m\"${attr(\"style\", `width: ${stringify(animateBar ? passRate + \"%\" : \"0\")}`)}></div></div> <div class=\"bar-legend svelte-wkly2m\"><span class=\"legend-pass svelte-wkly2m\">${escape_html(passedCountLabel(passCount))}</span> <span class=\"legend-fail svelte-wkly2m\">${escape_html(failedCountLabel(failCount))}</span></div></div> <div class=\"trend-row svelte-wkly2m\"><span class=\"trend-label svelte-wkly2m\">${escape_html(RECENT_LABEL)}</span> <div class=\"trend-dots svelte-wkly2m\"><!--[-->`;\n for (let i = 0, $$length = each_array.length; i < $$length; i++) {\n let r = each_array[i];\n $$payload2.out += `<span${attr(\"class\", `trend-dot svelte-wkly2m ${stringify([\n r.status === \"PASS\" ? \"pass\" : \"\",\n r.status !== \"PASS\" ? \"fail\" : \"\"\n ].filter(Boolean).join(\" \"))}`)}${attr(\"style\", stagger(i, 35))}${attr(\"title\", trendDotTitle(r.status, r.tags, r.date))}></span>`;\n }\n $$payload2.out += `<!--]--></div> <span class=\"trend-hint svelte-wkly2m\">${escape_html(TREND_HINT)}</span></div>`;\n } else {\n $$payload2.out += \"<!--[!-->\";\n }\n $$payload2.out += `<!--]--></div> `;\n if (total === 0) {\n $$payload2.out += \"<!--[-->\";\n EmptyState($$payload2, { message: NO_REPORTS_MESSAGE });\n } else {\n $$payload2.out += \"<!--[!-->\";\n const each_array_1 = ensure_array_like(reports);\n $$payload2.out += `<div class=\"list-header svelte-wkly2m\"><label class=\"select-all-wrap svelte-wkly2m\"${attr(\"title\", SELECT_ALL_TITLE)}><input type=\"checkbox\" class=\"checkbox svelte-wkly2m\"${attr(\"checked\", allOnPageSelected, true)}${attr(\"indeterminate\", someSelected && !allOnPageSelected, true)}></label> `;\n if (someSelected) {\n $$payload2.out += \"<!--[-->\";\n $$payload2.out += `<button class=\"btn-delete-selected svelte-wkly2m\">${escape_html(deleteSelectedLabel(selected.size))}</button>`;\n } else {\n $$payload2.out += \"<!--[!-->\";\n }\n $$payload2.out += `<!--]--></div> <div class=\"report-list svelte-wkly2m\"><!--[-->`;\n for (let i = 0, $$length = each_array_1.length; i < $$length; i++) {\n let report = each_array_1[i];\n $$payload2.out += `<div${attr(\"class\", `report-row svelte-wkly2m ${stringify([\n selected.has(report.id) ? \"is-selected\" : \"\"\n ].filter(Boolean).join(\" \"))}`)}${attr(\"style\", stagger(i))}><label class=\"row-check-wrap svelte-wkly2m\"${attr(\"title\", SELECT_ROW_TITLE)}><input type=\"checkbox\" class=\"checkbox svelte-wkly2m\"${attr(\"checked\", selected.has(report.id), true)}></label> <a${attr(\"class\", `report-item svelte-wkly2m ${stringify([\n report.status === \"PASS\" ? \"is-pass\" : \"\",\n report.status !== \"PASS\" ? \"is-fail\" : \"\"\n ].filter(Boolean).join(\" \"))}`)}${attr(\"href\", reportUrl(report.id))}><div class=\"item-left svelte-wkly2m\"><span${attr(\"class\", `status-mark svelte-wkly2m ${stringify([\n report.status === \"PASS\" ? \"pass\" : \"\",\n report.status !== \"PASS\" ? \"fail\" : \"\"\n ].filter(Boolean).join(\" \"))}`)}>${escape_html(report.status === \"PASS\" ? \"✓\" : \"✗\")}</span> <div class=\"item-meta svelte-wkly2m\"><span class=\"item-tags svelte-wkly2m\">${escape_html(report.testRun?.title ?? (isScheduled(report.triggerType) ? report.triggerType : report.tags))}</span> <div class=\"item-badges svelte-wkly2m\">`;\n Badge($$payload2, {\n variant: triggerVariant(report.triggerType),\n children: ($$payload3) => {\n $$payload3.out += `<!---->${escape_html(triggerLabel(report.triggerType))}`;\n },\n $$slots: { default: true }\n });\n $$payload2.out += `<!----> `;\n if (report.browser && report.browser !== BROWSERS[0].id) {\n $$payload2.out += \"<!--[-->\";\n Badge($$payload2, {\n variant: \"neutral\",\n children: ($$payload3) => {\n $$payload3.out += `<!---->${escape_html(report.browser)}`;\n },\n $$slots: { default: true }\n });\n } else {\n $$payload2.out += \"<!--[!-->\";\n }\n $$payload2.out += `<!--]--></div></div></div> <div class=\"item-right svelte-wkly2m\"><span class=\"item-date svelte-wkly2m\">${escape_html(report.date)}</span> <svg class=\"item-arrow svelte-wkly2m\" width=\"14\" height=\"14\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\"><line x1=\"5\" y1=\"12\" x2=\"19\" y2=\"12\"></line><polyline points=\"12 5 19 12 12 19\"></polyline></svg></div></a> <button class=\"row-delete-btn svelte-wkly2m\"${attr(\"title\", DELETE_REPORT_TITLE)}><svg width=\"14\" height=\"14\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><polyline points=\"3 6 5 6 21 6\"></polyline><path d=\"M19 6l-1 14H6L5 6\"></path><path d=\"M10 11v6M14 11v6\"></path><path d=\"M9 6V4h6v2\"></path></svg></button></div>`;\n }\n $$payload2.out += `<!--]--></div> `;\n if (totalPages > 1) {\n $$payload2.out += \"<!--[-->\";\n $$payload2.out += `<div class=\"pagination-wrap svelte-wkly2m\">`;\n Pagination($$payload2, { current: currentPage, total: totalPages });\n $$payload2.out += `<!----></div>`;\n } else {\n $$payload2.out += \"<!--[!-->\";\n }\n $$payload2.out += `<!--]-->`;\n }\n $$payload2.out += `<!--]-->`;\n }\n do {\n $$settled = true;\n $$inner_payload = copy_payload($$payload);\n $$render_inner($$inner_payload);\n } while (!$$settled);\n assign_payload($$payload, $$inner_payload);\n if ($$store_subs) unsubscribe_stores($$store_subs);\n pop();\n}\nexport {\n _page as default\n};\n"],"names":[],"mappings":"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"}
|
|
@@ -1,38 +1,21 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* This file is part of Plum.
|
|
3
|
-
*
|
|
4
|
-
* Plum is free software: you can redistribute it and/or modify
|
|
5
|
-
* it under the terms of the GNU General Public License as published by
|
|
6
|
-
* the Free Software Foundation, either version 3 of the License, or
|
|
7
|
-
* (at your option) any later version.
|
|
8
|
-
*
|
|
9
|
-
* Plum is distributed in the hope that it will be useful,
|
|
10
|
-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
11
|
-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
12
|
-
* GNU General Public License for more details.
|
|
13
|
-
*
|
|
14
|
-
* You should have received a copy of the GNU General Public License
|
|
15
|
-
* along with Plum. If not, see https://www.gnu.org/licenses/.
|
|
16
|
-
*/
|
|
17
|
-
|
|
18
1
|
/*
|
|
19
2
|
* This file is part of Plum.
|
|
20
3
|
* Licensed under the MIT License. See LICENSE file in the project root for details.
|
|
21
4
|
*/
|
|
22
5
|
|
|
23
|
-
import { N as push,
|
|
24
|
-
import { p as page } from './stores-
|
|
25
|
-
import { a as auth } from './auth-
|
|
26
|
-
import './runner-
|
|
27
|
-
import { T as Toast, B as Button } from './Toast-
|
|
28
|
-
import { M as Modal } from './Modal-
|
|
29
|
-
import {
|
|
30
|
-
import {
|
|
6
|
+
import { N as push, a0 as store_get, a2 as copy_payload, a3 as assign_payload, a1 as unsubscribe_stores, P as pop, Z as head } from './index2-5R1tbrep.js';
|
|
7
|
+
import { p as page } from './stores-BLenR3c1.js';
|
|
8
|
+
import { a as auth } from './auth-Chw-wBpI.js';
|
|
9
|
+
import './runner-DC7hXbnY.js';
|
|
10
|
+
import { T as Toast, B as Button } from './Toast-v-q4ZnYq.js';
|
|
11
|
+
import { M as Modal } from './Modal-DChG187n.js';
|
|
12
|
+
import { c as SAVE_LABEL, a as CANCEL_LABEL, L as LOADING_LABEL } from './common-DYYTVHPw.js';
|
|
13
|
+
import { x as runDetailTitle, E as EDIT_RUN_MODAL_TITLE, T as TITLE_LABEL, y as TEST_REPOSITORY_BREADCRUMB } from './repository-FYYV_vKE.js';
|
|
31
14
|
import { e as escape_html } from './escaping-CqgfEcN3.js';
|
|
32
15
|
import { a as attr } from './attributes-BeaNKpgU.js';
|
|
33
|
-
import './client-
|
|
16
|
+
import './client-DEmxR_a-.js';
|
|
34
17
|
import './exports-D0QHgeSL.js';
|
|
35
|
-
import './constants-
|
|
18
|
+
import './constants-CXTaQaB6.js';
|
|
36
19
|
|
|
37
20
|
function _page($$payload, $$props) {
|
|
38
21
|
push();
|
|
@@ -115,4 +98,4 @@ function _page($$payload, $$props) {
|
|
|
115
98
|
}
|
|
116
99
|
|
|
117
100
|
export { _page as default };
|
|
118
|
-
//# sourceMappingURL=_page.svelte-
|
|
101
|
+
//# sourceMappingURL=_page.svelte-1jo8MapI.js.map
|
package/frontend/build/server/chunks/{_page.svelte-CLFpft5D.js.map → _page.svelte-1jo8MapI.js.map}
RENAMED
|
@@ -1,21 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
2
|
This file is part of Plum.
|
|
3
|
-
|
|
4
|
-
Plum is free software: you can redistribute it and/or modify
|
|
5
|
-
it under the terms of the GNU General Public License as published by
|
|
6
|
-
the Free Software Foundation, either version 3 of the License, or
|
|
7
|
-
(at your option) any later version.
|
|
8
|
-
|
|
9
|
-
Plum is distributed in the hope that it will be useful,
|
|
10
|
-
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
11
|
-
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
12
|
-
GNU General Public License for more details.
|
|
13
|
-
|
|
14
|
-
You should have received a copy of the GNU General Public License
|
|
15
|
-
along with Plum. If not, see https://www.gnu.org/licenses/.
|
|
16
|
-
*/
|
|
17
|
-
/*
|
|
18
|
-
This file is part of Plum.
|
|
19
3
|
Licensed under the MIT License. See LICENSE file in the project root for details.
|
|
20
4
|
*/
|
|
21
|
-
{"version":3,"file":"_page.svelte-
|
|
5
|
+
{"version":3,"file":"_page.svelte-1jo8MapI.js","sources":["../../../.svelte-kit/adapter-node/entries/pages/test-repository/runs/_id_/_page.svelte.js"],"sourcesContent":["import { _ as store_get, a2 as copy_payload, a3 as assign_payload, $ as unsubscribe_stores, p as pop, a as push, X as head } from \"../../../../../chunks/index.js\";\nimport { p as page } from \"../../../../../chunks/stores.js\";\nimport { a as auth } from \"../../../../../chunks/auth.js\";\nimport \"../../../../../chunks/runner.js\";\nimport { T as Toast, B as Button } from \"../../../../../chunks/Toast.js\";\nimport { M as Modal } from \"../../../../../chunks/Modal.js\";\nimport { a as SAVE_LABEL, b as CANCEL_LABEL, L as LOADING_LABEL } from \"../../../../../chunks/common.js\";\n/* empty css */\nimport { E as EDIT_RUN_MODAL_TITLE, x as runDetailTitle, T as TITLE_LABEL, y as TEST_REPOSITORY_BREADCRUMB } from \"../../../../../chunks/repository.js\";\nimport { e as escape_html } from \"../../../../../chunks/escaping.js\";\nimport { a as attr } from \"../../../../../chunks/attributes.js\";\nfunction _page($$payload, $$props) {\n push();\n var $$store_subs;\n let runCaseIds;\n store_get($$store_subs ??= {}, \"$page\", page).params.id;\n let suites = [];\n let toast = null;\n (() => {\n try {\n const v = sessionStorage.getItem(\"plum:run:entries:sort\");\n if (v) return JSON.parse(v);\n } catch {\n }\n return { by: \"order\", order: \"asc\" };\n })();\n let editRunOpen = false;\n let editRunForm = {};\n let editRunSaving = false;\n store_get($$store_subs ??= {}, \"$auth\", auth)?.user?.id ?? null;\n runCaseIds = /* @__PURE__ */ new Set([]);\n suites.map((suite) => ({\n ...suite,\n _totalCases: (suite.cases ?? []).length,\n cases: (suite.cases ?? []).filter((tc) => !runCaseIds.has(tc.id) && true)\n })).filter((suite) => true);\n let $$settled = true;\n let $$inner_payload;\n function $$render_inner($$payload2) {\n head($$payload2, ($$payload3) => {\n $$payload3.title = `<title>${escape_html(runDetailTitle())}</title>`;\n });\n Toast($$payload2, { toast });\n $$payload2.out += `<!----> `;\n Modal($$payload2, {\n title: EDIT_RUN_MODAL_TITLE,\n get open() {\n return editRunOpen;\n },\n set open($$value) {\n editRunOpen = $$value;\n $$settled = false;\n },\n children: ($$payload3) => {\n $$payload3.out += `<div class=\"form-fields svelte-1mxlw2t\"><div class=\"field\"><label class=\"field-label\" for=\"er-title\">${escape_html(TITLE_LABEL)}</label> <input id=\"er-title\" type=\"text\" class=\"field-input\"${attr(\"value\", editRunForm.title)}></div> <div class=\"modal-actions svelte-1mxlw2t\">`;\n Button($$payload3, {\n disabled: editRunSaving,\n children: ($$payload4) => {\n $$payload4.out += `<!---->${escape_html(SAVE_LABEL)}`;\n },\n $$slots: { default: true }\n });\n $$payload3.out += `<!----> `;\n Button($$payload3, {\n variant: \"ghost\",\n children: ($$payload4) => {\n $$payload4.out += `<!---->${escape_html(CANCEL_LABEL)}`;\n },\n $$slots: { default: true }\n });\n $$payload3.out += `<!----></div></div>`;\n },\n $$slots: { default: true }\n });\n $$payload2.out += `<!----> <div class=\"breadcrumb svelte-1mxlw2t\"><a href=\"/test-repository\" class=\"bc-link svelte-1mxlw2t\">${escape_html(TEST_REPOSITORY_BREADCRUMB)}</a> <span class=\"bc-sep svelte-1mxlw2t\">›</span> <span class=\"bc-current\">${escape_html(\"…\")}</span></div> `;\n {\n $$payload2.out += \"<!--[-->\";\n $$payload2.out += `<div class=\"loading-state svelte-1mxlw2t\">${escape_html(LOADING_LABEL)}</div>`;\n }\n $$payload2.out += `<!--]-->`;\n }\n do {\n $$settled = true;\n $$inner_payload = copy_payload($$payload);\n $$render_inner($$inner_payload);\n } while (!$$settled);\n assign_payload($$payload, $$inner_payload);\n if ($$store_subs) unsubscribe_stores($$store_subs);\n pop();\n}\nexport {\n _page as default\n};\n"],"names":[],"mappings":";;;;;;;;;;;;;;AAWA,SAAS,KAAK,CAAC,SAAS,EAAE,OAAO,EAAE;AACnC,EAAE,IAAI,EAAE;AACR,EAAE,IAAI,YAAY;AAClB,EAAE,IAAI,UAAU;AAChB,EAAE,SAAS,CAAC,YAAY,KAAK,EAAE,EAAE,OAAO,EAAE,IAAI,CAAC,CAAC,MAAM,CAAC,EAAE;AACzD,EAAE,IAAI,MAAM,GAAG,EAAE;AACjB,EAAE,IAAI,KAAK,GAAG,IAAI;AAClB,EAAE,CAAC,MAAM;AACT,IAAI,IAAI;AACR,MAAM,MAAM,CAAC,GAAG,cAAc,CAAC,OAAO,CAAC,uBAAuB,CAAC;AAC/D,MAAM,IAAI,CAAC,EAAE,OAAO,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC;AACjC,IAAI,CAAC,CAAC,MAAM;AACZ,IAAI;AACJ,IAAI,OAAO,EAAE,EAAE,EAAE,OAAO,EAAE,KAAK,EAAE,KAAK,EAAE;AACxC,EAAE,CAAC,GAAG;AACN,EAAE,IAAI,WAAW,GAAG,KAAK;AACzB,EAAE,IAAI,WAAW,GAAG,EAAE;AACtB,EAAE,IAAI,aAAa,GAAG,KAAK;AAC3B,EAAE,SAAS,CAAC,YAAY,KAAK,EAAE,EAAE,OAAO,EAAE,IAAI,CAAC,EAAE,IAAI,EAAE,EAAE,IAAI,IAAI;AACjE,EAAE,UAAU,mBAAmB,IAAI,GAAG,CAAC,EAAE,CAAC;AAC1C,EAAE,MAAM,CAAC,GAAG,CAAC,CAAC,KAAK,MAAM;AACzB,IAAI,GAAG,KAAK;AACZ,IAAI,WAAW,EAAE,CAAC,KAAK,CAAC,KAAK,IAAI,EAAE,EAAE,MAAM;AAC3C,IAAI,KAAK,EAAE,CAAC,KAAK,CAAC,KAAK,IAAI,EAAE,EAAE,MAAM,CAAC,CAAC,EAAE,KAAK,CAAC,UAAU,CAAC,GAAG,CAAC,EAAE,CAAC,EAAE,CAAC,IAAI,IAAI;AAC5E,GAAG,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,KAAK,KAAK,IAAI,CAAC;AAC7B,EAAE,IAAI,SAAS,GAAG,IAAI;AACtB,EAAE,IAAI,eAAe;AACrB,EAAE,SAAS,cAAc,CAAC,UAAU,EAAE;AACtC,IAAI,IAAI,CAAC,UAAU,EAAE,CAAC,UAAU,KAAK;AACrC,MAAM,UAAU,CAAC,KAAK,GAAG,CAAC,OAAO,EAAE,WAAW,CAAC,cAAc,EAAE,CAAC,CAAC,QAAQ,CAAC;AAC1E,IAAI,CAAC,CAAC;AACN,IAAI,KAAK,CAAC,UAAU,EAAE,EAAE,KAAK,EAAE,CAAC;AAChC,IAAI,UAAU,CAAC,GAAG,IAAI,CAAC,QAAQ,CAAC;AAChC,IAAI,KAAK,CAAC,UAAU,EAAE;AACtB,MAAM,KAAK,EAAE,oBAAoB;AACjC,MAAM,IAAI,IAAI,GAAG;AACjB,QAAQ,OAAO,WAAW;AAC1B,MAAM,CAAC;AACP,MAAM,IAAI,IAAI,CAAC,OAAO,EAAE;AACxB,QAAQ,WAAW,GAAG,OAAO;AAC7B,QAAQ,SAAS,GAAG,KAAK;AACzB,MAAM,CAAC;AACP,MAAM,QAAQ,EAAE,CAAC,UAAU,KAAK;AAChC,QAAQ,UAAU,CAAC,GAAG,IAAI,CAAC,qGAAqG,EAAE,WAAW,CAAC,WAAW,CAAC,CAAC,6DAA6D,EAAE,IAAI,CAAC,OAAO,EAAE,WAAW,CAAC,KAAK,CAAC,CAAC,kDAAkD,CAAC;AAC9S,QAAQ,MAAM,CAAC,UAAU,EAAE;AAC3B,UAAU,QAAQ,EAAE,aAAa;AACjC,UAAU,QAAQ,EAAE,CAAC,UAAU,KAAK;AACpC,YAAY,UAAU,CAAC,GAAG,IAAI,CAAC,OAAO,EAAE,WAAW,CAAC,UAAU,CAAC,CAAC,CAAC;AACjE,UAAU,CAAC;AACX,UAAU,OAAO,EAAE,EAAE,OAAO,EAAE,IAAI;AAClC,SAAS,CAAC;AACV,QAAQ,UAAU,CAAC,GAAG,IAAI,CAAC,QAAQ,CAAC;AACpC,QAAQ,MAAM,CAAC,UAAU,EAAE;AAC3B,UAAU,OAAO,EAAE,OAAO;AAC1B,UAAU,QAAQ,EAAE,CAAC,UAAU,KAAK;AACpC,YAAY,UAAU,CAAC,GAAG,IAAI,CAAC,OAAO,EAAE,WAAW,CAAC,YAAY,CAAC,CAAC,CAAC;AACnE,UAAU,CAAC;AACX,UAAU,OAAO,EAAE,EAAE,OAAO,EAAE,IAAI;AAClC,SAAS,CAAC;AACV,QAAQ,UAAU,CAAC,GAAG,IAAI,CAAC,mBAAmB,CAAC;AAC/C,MAAM,CAAC;AACP,MAAM,OAAO,EAAE,EAAE,OAAO,EAAE,IAAI;AAC9B,KAAK,CAAC;AACN,IAAI,UAAU,CAAC,GAAG,IAAI,CAAC,yGAAyG,EAAE,WAAW,CAAC,0BAA0B,CAAC,CAAC,2EAA2E,EAAE,WAAW,CAAC,GAAG,CAAC,CAAC,cAAc,CAAC;AACvR,IAAI;AACJ,MAAM,UAAU,CAAC,GAAG,IAAI,UAAU;AAClC,MAAM,UAAU,CAAC,GAAG,IAAI,CAAC,0CAA0C,EAAE,WAAW,CAAC,aAAa,CAAC,CAAC,MAAM,CAAC;AACvG,IAAI;AACJ,IAAI,UAAU,CAAC,GAAG,IAAI,CAAC,QAAQ,CAAC;AAChC,EAAE;AACF,EAAE,GAAG;AACL,IAAI,SAAS,GAAG,IAAI;AACpB,IAAI,eAAe,GAAG,YAAY,CAAC,SAAS,CAAC;AAC7C,IAAI,cAAc,CAAC,eAAe,CAAC;AACnC,EAAE,CAAC,QAAQ,CAAC,SAAS;AACrB,EAAE,cAAc,CAAC,SAAS,EAAE,eAAe,CAAC;AAC5C,EAAE,IAAI,YAAY,EAAE,kBAAkB,CAAC,YAAY,CAAC;AACpD,EAAE,GAAG,EAAE;AACP;;;;"}
|
|
@@ -1,36 +1,19 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* This file is part of Plum.
|
|
3
|
-
*
|
|
4
|
-
* Plum is free software: you can redistribute it and/or modify
|
|
5
|
-
* it under the terms of the GNU General Public License as published by
|
|
6
|
-
* the Free Software Foundation, either version 3 of the License, or
|
|
7
|
-
* (at your option) any later version.
|
|
8
|
-
*
|
|
9
|
-
* Plum is distributed in the hope that it will be useful,
|
|
10
|
-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
11
|
-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
12
|
-
* GNU General Public License for more details.
|
|
13
|
-
*
|
|
14
|
-
* You should have received a copy of the GNU General Public License
|
|
15
|
-
* along with Plum. If not, see https://www.gnu.org/licenses/.
|
|
16
|
-
*/
|
|
17
|
-
|
|
18
1
|
/*
|
|
19
2
|
* This file is part of Plum.
|
|
20
3
|
* Licensed under the MIT License. See LICENSE file in the project root for details.
|
|
21
4
|
*/
|
|
22
5
|
|
|
23
|
-
import { N as push, a2 as copy_payload, a3 as assign_payload, P as pop,
|
|
24
|
-
import { b as BUILTIN_RUNNER_ID, B as BROWSERS } from './constants-
|
|
25
|
-
import './auth-
|
|
26
|
-
import { b as backgroundRuns } from './runner-
|
|
27
|
-
import { B as BUILTIN_RUNNER_LABEL, C as CANNOT_BE_UNDONE_SUFFIX, E as EDIT_LABEL, D as DELETE_LABEL } from './common-
|
|
28
|
-
import { s as stagger } from './format-
|
|
29
|
-
import { T as Toast, B as Button } from './Toast-
|
|
30
|
-
import { B as Badge } from './Badge-
|
|
31
|
-
import { M as Modal } from './Modal-
|
|
32
|
-
import { C as ConfirmModal } from './ConfirmModal-
|
|
33
|
-
import { E as EmptyState } from './EmptyState-
|
|
6
|
+
import { N as push, a2 as copy_payload, a3 as assign_payload, P as pop, Z as head, _ as ensure_array_like, $ as stringify, a0 as store_get, a1 as unsubscribe_stores } from './index2-5R1tbrep.js';
|
|
7
|
+
import { b as BUILTIN_RUNNER_ID, B as BROWSERS } from './constants-CXTaQaB6.js';
|
|
8
|
+
import './auth-Chw-wBpI.js';
|
|
9
|
+
import { b as backgroundRuns } from './runner-DC7hXbnY.js';
|
|
10
|
+
import { B as BUILTIN_RUNNER_LABEL, C as CANNOT_BE_UNDONE_SUFFIX, E as EDIT_LABEL, D as DELETE_LABEL } from './common-DYYTVHPw.js';
|
|
11
|
+
import { s as stagger } from './format-CiNRMfHu.js';
|
|
12
|
+
import { T as Toast, B as Button } from './Toast-v-q4ZnYq.js';
|
|
13
|
+
import { B as Badge } from './Badge-44ZTDx0V.js';
|
|
14
|
+
import { M as Modal } from './Modal-DChG187n.js';
|
|
15
|
+
import { C as ConfirmModal } from './ConfirmModal-C0EAXcq_.js';
|
|
16
|
+
import { E as EmptyState } from './EmptyState-BA_eXaeR.js';
|
|
34
17
|
import { e as escape_html } from './escaping-CqgfEcN3.js';
|
|
35
18
|
import { a as attr } from './attributes-BeaNKpgU.js';
|
|
36
19
|
|
|
@@ -256,4 +239,4 @@ function _page($$payload, $$props) {
|
|
|
256
239
|
}
|
|
257
240
|
|
|
258
241
|
export { _page as default };
|
|
259
|
-
//# sourceMappingURL=_page.svelte-
|
|
242
|
+
//# sourceMappingURL=_page.svelte-BuFusRK1.js.map
|