plum-e2e 2.5.14 → 2.6.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/README.md +1 -1
- package/backend/constants/triggers.js +3 -1
- package/backend/lib/screenshotPoller.js +43 -0
- package/backend/mcp/server.js +8 -1
- package/backend/prisma/migrations/20260713090000_add_report_duration/migration.sql +2 -0
- package/backend/prisma/schema.prisma +1 -0
- package/backend/routes/trigger.routes.js +51 -4
- package/backend/server.js +1 -0
- package/backend/services/cronService.js +119 -29
- package/backend/services/reportService.js +10 -4
- package/backend/websockets/socketHandler.js +6 -24
- package/frontend/.svelte-kit/adapter-node/.vite/manifest.json +312 -37
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/BackLink.CvWWuO3h.css +18 -0
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/Badge.D1SV0Gv7.css +18 -0
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/ConfirmModal.CdhOYVBb.css +18 -0
- package/frontend/.svelte-kit/{output/client/_app/immutable/chunks/rVEKg0Ak.js → adapter-node/_app/immutable/assets/EmptyState.BdO1q9cJ.css} +1 -1
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/Pagination.DZmi2Po-.css +18 -0
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/Toast.DENwYn3g.css +18 -0
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/_layout.BuhMvMUj.css +18 -0
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/_page.0Eln51hV.css +18 -0
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/_page.5IJAEAjc.css +18 -0
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/_page.BJ-I1gHO.css +18 -0
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/_page.BR3wgXcZ.css +18 -0
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/_page.BZfe6nWe.css +18 -0
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/_page.Bhof07Eg.css +18 -0
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/_page.Bj_a_5lv.css +18 -0
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/_page.CBHi6pzT.css +18 -0
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/_page.CFnbmY-D.css +18 -0
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/_page.CrXpMrqh.css +18 -0
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/_page._h2o67kg.css +18 -0
- package/frontend/.svelte-kit/adapter-node/chunks/BackLink.js +29 -0
- package/frontend/.svelte-kit/adapter-node/chunks/Badge.js +3 -3
- package/frontend/.svelte-kit/adapter-node/chunks/Button.js +4 -3
- package/frontend/.svelte-kit/adapter-node/chunks/ConfirmModal.js +74 -0
- package/frontend/.svelte-kit/adapter-node/chunks/EmptyState.js +34 -0
- package/frontend/.svelte-kit/adapter-node/chunks/Toast.js +36 -0
- package/frontend/.svelte-kit/adapter-node/chunks/auth.js +61 -0
- package/frontend/.svelte-kit/adapter-node/chunks/client.js +9 -2
- package/frontend/.svelte-kit/adapter-node/chunks/constants.js +41 -0
- package/frontend/.svelte-kit/adapter-node/chunks/exports.js +7 -65
- package/frontend/.svelte-kit/adapter-node/chunks/format.js +51 -0
- package/frontend/.svelte-kit/adapter-node/chunks/index-server.js +31 -0
- package/frontend/.svelte-kit/adapter-node/chunks/index.js +71 -50
- package/frontend/.svelte-kit/adapter-node/chunks/index2.js +76 -0
- package/frontend/.svelte-kit/adapter-node/chunks/internal.js +3 -4
- package/frontend/.svelte-kit/adapter-node/chunks/reports.js +16 -33
- package/frontend/.svelte-kit/adapter-node/chunks/runner.js +45 -0
- package/frontend/.svelte-kit/adapter-node/chunks/stores.js +43 -0
- package/frontend/{build/client/_app/immutable/chunks/rVEKg0Ak.js → .svelte-kit/adapter-node/chunks/theme.js} +9 -1
- package/frontend/.svelte-kit/{output/client/_app/immutable/entry/start.GiBry-lw.js → adapter-node/entries/pages/_layout.js} +4 -1
- package/frontend/.svelte-kit/adapter-node/entries/pages/_layout.svelte.js +10 -154
- package/frontend/.svelte-kit/adapter-node/entries/pages/_page.svelte.js +46 -28
- package/frontend/.svelte-kit/adapter-node/entries/pages/login/_page.svelte.js +40 -0
- package/frontend/.svelte-kit/adapter-node/entries/pages/reports/_id_/_page.svelte.js +62 -0
- package/frontend/.svelte-kit/adapter-node/entries/pages/reports/_page.svelte.js +167 -89
- package/frontend/.svelte-kit/adapter-node/entries/pages/reports/live/_page.svelte.js +257 -0
- package/frontend/.svelte-kit/adapter-node/entries/pages/scheduled-tests/_page.svelte.js +91 -52
- package/frontend/.svelte-kit/adapter-node/entries/pages/settings/_page.svelte.js +562 -0
- package/frontend/.svelte-kit/adapter-node/entries/pages/setup/_page.svelte.js +40 -0
- package/frontend/.svelte-kit/adapter-node/entries/pages/test-repository/_page.svelte.js +421 -0
- package/frontend/.svelte-kit/adapter-node/entries/pages/test-repository/runs/_id_/_page.svelte.js +62 -0
- package/frontend/.svelte-kit/adapter-node/entries/pages/test-repository/suites/_id_/_page.svelte.js +198 -0
- package/frontend/.svelte-kit/adapter-node/index.js +2 -1
- package/frontend/.svelte-kit/adapter-node/manifest-full.js +64 -8
- package/frontend/.svelte-kit/adapter-node/manifest.js +64 -8
- package/frontend/.svelte-kit/adapter-node/nodes/0.js +5 -3
- package/frontend/.svelte-kit/adapter-node/nodes/1.js +1 -1
- package/frontend/.svelte-kit/adapter-node/nodes/10.js +25 -0
- package/frontend/.svelte-kit/adapter-node/nodes/11.js +25 -0
- package/frontend/.svelte-kit/adapter-node/nodes/12.js +25 -0
- package/frontend/.svelte-kit/adapter-node/nodes/2.js +2 -2
- package/frontend/.svelte-kit/adapter-node/nodes/3.js +3 -3
- package/frontend/.svelte-kit/adapter-node/nodes/4.js +3 -3
- package/frontend/.svelte-kit/adapter-node/nodes/5.js +3 -3
- package/frontend/.svelte-kit/adapter-node/nodes/6.js +25 -0
- package/frontend/.svelte-kit/adapter-node/nodes/7.js +25 -0
- package/frontend/.svelte-kit/adapter-node/nodes/8.js +25 -0
- package/frontend/.svelte-kit/adapter-node/nodes/9.js +25 -0
- package/frontend/.svelte-kit/ambient.d.ts +4 -0
- package/frontend/.svelte-kit/generated/client-optimized/app.js +18 -4
- package/frontend/.svelte-kit/generated/client-optimized/nodes/0.js +2 -0
- package/frontend/.svelte-kit/generated/client-optimized/nodes/10.js +18 -0
- package/frontend/.svelte-kit/generated/client-optimized/nodes/11.js +18 -0
- package/frontend/.svelte-kit/generated/client-optimized/nodes/12.js +18 -0
- package/frontend/.svelte-kit/generated/client-optimized/nodes/3.js +1 -1
- package/frontend/.svelte-kit/generated/client-optimized/nodes/4.js +1 -1
- package/frontend/.svelte-kit/generated/client-optimized/nodes/5.js +1 -1
- package/frontend/.svelte-kit/generated/client-optimized/nodes/6.js +18 -0
- package/frontend/.svelte-kit/generated/client-optimized/nodes/7.js +18 -0
- package/frontend/.svelte-kit/generated/client-optimized/nodes/8.js +18 -0
- package/frontend/.svelte-kit/generated/client-optimized/nodes/9.js +18 -0
- package/frontend/.svelte-kit/generated/server/internal.js +1 -1
- package/frontend/.svelte-kit/output/client/.vite/manifest.json +486 -155
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/0.BhSG-jZH.css +18 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/10.CdaQUS6U.css +18 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/11.BJ-I1gHO.css +18 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/12.Bj_a_5lv.css +18 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/2.CrXpMrqh.css +18 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/3.BR3wgXcZ.css +18 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/4.0Eln51hV.css +18 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/5.DFV9OgAu.css +18 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/6.CFnbmY-D.css +18 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/7.CBHi6pzT.css +18 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/8.Bhof07Eg.css +18 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/9._h2o67kg.css +18 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/BackLink.CvWWuO3h.css +18 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/Badge.D1SV0Gv7.css +18 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/Button.FOWXxvc7.css +18 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/ConfirmModal.CdhOYVBb.css +18 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/ConfirmModal.DmxkcwXv.css +18 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/EmptyState.BdO1q9cJ.css +18 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/Pagination.DZmi2Po-.css +18 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/Toast.DENwYn3g.css +18 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/_layout.BuhMvMUj.css +18 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/_page.0Eln51hV.css +18 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/_page.5IJAEAjc.css +18 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/_page.BJ-I1gHO.css +18 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/_page.BR3wgXcZ.css +18 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/_page.BZfe6nWe.css +18 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/_page.Bhof07Eg.css +18 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/_page.Bj_a_5lv.css +18 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/_page.CBHi6pzT.css +18 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/_page.CFnbmY-D.css +18 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/_page.CrXpMrqh.css +18 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/_page._h2o67kg.css +18 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/B0pefNHY.js +18 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/BFEiffAL.js +18 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/{CJ8q7g9Y.js → BFgtfHj2.js} +1 -1
- package/frontend/.svelte-kit/{adapter-node/chunks/equality.js → output/client/_app/immutable/chunks/BIRVeCLU.js} +1 -14
- package/frontend/.svelte-kit/output/{server/chunks/equality.js → client/_app/immutable/chunks/BKCNyxZ2.js} +1 -14
- package/frontend/{build/client/_app/immutable/chunks/CHV2KnPr.js → .svelte-kit/output/client/_app/immutable/chunks/BLAiBE__.js} +1 -1
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/BVMec-1T.js +18 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/BeO8veBd.js +18 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/Bfc47y5P.js +18 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/BgNaeXAp.js +18 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/BkKmeUbA.js +18 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/C3SY6-sX.js +19 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/C4eeChIU.js +18 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/C67QNx7Z.js +18 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/CVV6HrFb.js +18 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/CstKKb9b.js +18 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/CxTX_lpP.js +18 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/CyQ_oBw2.js +18 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/{CwBTqcbj.js → DGryW1Vp.js} +1 -1
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/{BKz6FZdB.js → DIx44H9N.js} +1 -1
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/DP6QP4L6.js +18 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/DmRbbcS3.js +23 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/IFIFk6zi.js +18 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/KJdjlibc.js +20 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/ll-VsEGv.js +18 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/raHbXn_9.js +18 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/uFRI_bmR.js +18 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/entry/app.Dz_CBZcR.js +19 -0
- package/frontend/{build/client/_app/immutable/entry/start.GiBry-lw.js → .svelte-kit/output/client/_app/immutable/entry/start.MMlC62np.js} +1 -1
- package/frontend/.svelte-kit/output/client/_app/immutable/nodes/0.CKD9Qja6.js +23 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/nodes/{1.N4gjrCnX.js → 1.Dbck5ct8.js} +1 -1
- package/frontend/.svelte-kit/output/client/_app/immutable/nodes/10.BfmGpmC1.js +19 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/nodes/11.C7l9HPom.js +18 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/nodes/12.Iu9bcGdC.js +19 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/nodes/2.BqQhRvYh.js +18 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/nodes/3.BZRTKadS.js +18 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/nodes/4.BfKoPKdM.js +18 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/nodes/5.B4a2uCWn.js +18 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/nodes/6.CI508CMS.js +18 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/nodes/7.3x_eiof1.js +18 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/nodes/8.BfUuob4H.js +29 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/nodes/9.BZhCKRJe.js +18 -0
- package/frontend/.svelte-kit/output/client/_app/version.json +1 -1
- package/frontend/.svelte-kit/output/client/favicon-32x32.png +0 -0
- package/frontend/.svelte-kit/output/client/favicon.ico +0 -0
- package/frontend/.svelte-kit/output/server/.vite/manifest.json +312 -37
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/BackLink.CvWWuO3h.css +18 -0
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/Badge.D1SV0Gv7.css +18 -0
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/ConfirmModal.CdhOYVBb.css +18 -0
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/EmptyState.BdO1q9cJ.css +18 -0
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/Pagination.DZmi2Po-.css +18 -0
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/Toast.DENwYn3g.css +18 -0
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/_layout.BuhMvMUj.css +18 -0
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/_page.0Eln51hV.css +18 -0
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/_page.5IJAEAjc.css +18 -0
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/_page.BJ-I1gHO.css +18 -0
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/_page.BR3wgXcZ.css +18 -0
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/_page.BZfe6nWe.css +18 -0
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/_page.Bhof07Eg.css +18 -0
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/_page.Bj_a_5lv.css +18 -0
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/_page.CBHi6pzT.css +18 -0
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/_page.CFnbmY-D.css +18 -0
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/_page.CrXpMrqh.css +18 -0
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/_page._h2o67kg.css +18 -0
- package/frontend/.svelte-kit/output/server/chunks/BackLink.js +29 -0
- package/frontend/.svelte-kit/output/server/chunks/Badge.js +3 -3
- package/frontend/.svelte-kit/output/server/chunks/Button.js +4 -3
- package/frontend/.svelte-kit/output/server/chunks/ConfirmModal.js +74 -0
- package/frontend/.svelte-kit/output/server/chunks/EmptyState.js +34 -0
- package/frontend/.svelte-kit/output/server/chunks/Toast.js +36 -0
- package/frontend/.svelte-kit/output/server/chunks/auth.js +61 -0
- package/frontend/.svelte-kit/output/server/chunks/client.js +9 -2
- package/frontend/.svelte-kit/output/server/chunks/constants.js +41 -0
- package/frontend/.svelte-kit/output/server/chunks/exports.js +7 -65
- package/frontend/.svelte-kit/output/server/chunks/format.js +51 -0
- package/frontend/.svelte-kit/output/server/chunks/index-server.js +31 -0
- package/frontend/.svelte-kit/output/server/chunks/index.js +71 -50
- package/frontend/.svelte-kit/output/server/chunks/index2.js +76 -0
- package/frontend/.svelte-kit/output/server/chunks/internal.js +3 -4
- package/frontend/.svelte-kit/output/server/chunks/reports.js +16 -33
- package/frontend/.svelte-kit/output/server/chunks/runner.js +45 -0
- package/frontend/.svelte-kit/output/server/chunks/stores.js +43 -0
- package/frontend/.svelte-kit/output/server/chunks/theme.js +26 -0
- package/frontend/.svelte-kit/output/server/entries/pages/_layout.js +21 -0
- package/frontend/.svelte-kit/output/server/entries/pages/_layout.svelte.js +10 -154
- package/frontend/.svelte-kit/output/server/entries/pages/_page.svelte.js +46 -28
- package/frontend/.svelte-kit/output/server/entries/pages/login/_page.svelte.js +40 -0
- package/frontend/.svelte-kit/output/server/entries/pages/reports/_id_/_page.svelte.js +62 -0
- package/frontend/.svelte-kit/output/server/entries/pages/reports/_page.svelte.js +167 -89
- package/frontend/.svelte-kit/output/server/entries/pages/reports/live/_page.svelte.js +257 -0
- package/frontend/.svelte-kit/output/server/entries/pages/scheduled-tests/_page.svelte.js +91 -52
- package/frontend/.svelte-kit/output/server/entries/pages/settings/_page.svelte.js +562 -0
- package/frontend/.svelte-kit/output/server/entries/pages/setup/_page.svelte.js +40 -0
- package/frontend/.svelte-kit/output/server/entries/pages/test-repository/_page.svelte.js +421 -0
- package/frontend/.svelte-kit/output/server/entries/pages/test-repository/runs/_id_/_page.svelte.js +62 -0
- package/frontend/.svelte-kit/output/server/entries/pages/test-repository/suites/_id_/_page.svelte.js +198 -0
- package/frontend/.svelte-kit/output/server/index.js +2 -1
- package/frontend/.svelte-kit/output/server/manifest-full.js +64 -8
- package/frontend/.svelte-kit/output/server/manifest.js +64 -8
- package/frontend/.svelte-kit/output/server/nodes/0.js +5 -3
- package/frontend/.svelte-kit/output/server/nodes/1.js +1 -1
- package/frontend/.svelte-kit/output/server/nodes/10.js +25 -0
- package/frontend/.svelte-kit/output/server/nodes/11.js +25 -0
- package/frontend/.svelte-kit/output/server/nodes/12.js +25 -0
- package/frontend/.svelte-kit/output/server/nodes/2.js +2 -2
- package/frontend/.svelte-kit/output/server/nodes/3.js +3 -3
- package/frontend/.svelte-kit/output/server/nodes/4.js +3 -3
- package/frontend/.svelte-kit/output/server/nodes/5.js +3 -3
- package/frontend/.svelte-kit/output/server/nodes/6.js +25 -0
- package/frontend/.svelte-kit/output/server/nodes/7.js +25 -0
- package/frontend/.svelte-kit/output/server/nodes/8.js +25 -0
- package/frontend/.svelte-kit/output/server/nodes/9.js +25 -0
- package/frontend/build/client/_app/immutable/assets/0.BhSG-jZH.css +18 -0
- 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 +18 -0
- 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.BJ-I1gHO.css +18 -0
- package/frontend/build/client/_app/immutable/assets/11.BJ-I1gHO.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/11.BJ-I1gHO.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/12.Bj_a_5lv.css +18 -0
- 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.CrXpMrqh.css +18 -0
- 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/3.BR3wgXcZ.css +18 -0
- 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 +18 -0
- 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 +18 -0
- 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 +18 -0
- 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 +18 -0
- 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.Bhof07Eg.css +18 -0
- package/frontend/build/client/_app/immutable/assets/8.Bhof07Eg.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/8.Bhof07Eg.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/9._h2o67kg.css +18 -0
- 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 +18 -0
- package/frontend/build/client/_app/immutable/{chunks/rVEKg0Ak.js.br → assets/BackLink.CvWWuO3h.css.br} +0 -0
- package/frontend/build/client/_app/immutable/{chunks/rVEKg0Ak.js.gz → assets/BackLink.CvWWuO3h.css.gz} +0 -0
- package/frontend/build/client/_app/immutable/assets/Badge.D1SV0Gv7.css +18 -0
- package/frontend/build/client/_app/immutable/assets/Badge.D1SV0Gv7.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/{Badge.DLLowvEA.css.gz → Badge.D1SV0Gv7.css.gz} +0 -0
- package/frontend/build/client/_app/immutable/assets/Button.FOWXxvc7.css +18 -0
- 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.CdhOYVBb.css +18 -0
- package/frontend/build/client/_app/immutable/assets/ConfirmModal.CdhOYVBb.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/ConfirmModal.CdhOYVBb.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/ConfirmModal.DmxkcwXv.css +18 -0
- package/frontend/build/client/_app/immutable/assets/ConfirmModal.DmxkcwXv.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/ConfirmModal.DmxkcwXv.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/EmptyState.BdO1q9cJ.css +18 -0
- package/frontend/build/client/_app/immutable/{chunks/CJ8q7g9Y.js.br → assets/EmptyState.BdO1q9cJ.css.br} +0 -0
- package/frontend/build/client/_app/immutable/assets/EmptyState.BdO1q9cJ.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/Pagination.DZmi2Po-.css +18 -0
- 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 +18 -0
- 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 +18 -0
- 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 +18 -0
- 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 +18 -0
- 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.BJ-I1gHO.css +18 -0
- package/frontend/build/client/_app/immutable/assets/_page.BJ-I1gHO.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.BJ-I1gHO.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.BR3wgXcZ.css +18 -0
- 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.BZfe6nWe.css +18 -0
- 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.Bhof07Eg.css +18 -0
- package/frontend/build/client/_app/immutable/assets/_page.Bhof07Eg.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.Bhof07Eg.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.Bj_a_5lv.css +18 -0
- 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.CBHi6pzT.css +18 -0
- 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 +18 -0
- 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.CrXpMrqh.css +18 -0
- 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/assets/_page._h2o67kg.css +18 -0
- 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/B0pefNHY.js +18 -0
- package/frontend/build/client/_app/immutable/chunks/B0pefNHY.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/B0pefNHY.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/BFEiffAL.js +18 -0
- package/frontend/build/client/_app/immutable/chunks/BFEiffAL.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/BFEiffAL.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/{CJ8q7g9Y.js → BFgtfHj2.js} +1 -1
- package/frontend/build/client/_app/immutable/chunks/BFgtfHj2.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/{CJ8q7g9Y.js.gz → BFgtfHj2.js.gz} +0 -0
- package/frontend/build/client/_app/immutable/chunks/BIRVeCLU.js +18 -0
- package/frontend/build/client/_app/immutable/chunks/{CHV2KnPr.js.gz → BIRVeCLU.js.br} +0 -0
- package/frontend/build/client/_app/immutable/chunks/BIRVeCLU.js.gz +0 -0
- package/frontend/{.svelte-kit/output/client/_app/immutable/chunks/oc0we5Us.js → build/client/_app/immutable/chunks/BKCNyxZ2.js} +1 -1
- package/frontend/build/client/_app/immutable/chunks/BKCNyxZ2.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/BKCNyxZ2.js.gz +0 -0
- package/frontend/{.svelte-kit/output/client/_app/immutable/chunks/CHV2KnPr.js → build/client/_app/immutable/chunks/BLAiBE__.js} +1 -1
- package/frontend/build/client/_app/immutable/chunks/{CHV2KnPr.js.br → BLAiBE__.js.br} +2 -2
- package/frontend/build/client/_app/immutable/{assets/Badge.DLLowvEA.css.br → chunks/BLAiBE__.js.gz} +0 -0
- package/frontend/build/client/_app/immutable/chunks/BVMec-1T.js +18 -0
- package/frontend/build/client/_app/immutable/chunks/BVMec-1T.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/BVMec-1T.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/BeO8veBd.js +18 -0
- package/frontend/build/client/_app/immutable/chunks/BeO8veBd.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/BeO8veBd.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/Bfc47y5P.js +18 -0
- 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/build/client/_app/immutable/chunks/BgNaeXAp.js +18 -0
- package/frontend/build/client/_app/immutable/chunks/BgNaeXAp.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/BgNaeXAp.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/BkKmeUbA.js +18 -0
- package/frontend/build/client/_app/immutable/chunks/BkKmeUbA.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/BkKmeUbA.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/C3SY6-sX.js +19 -0
- package/frontend/build/client/_app/immutable/chunks/C3SY6-sX.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/C3SY6-sX.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/C4eeChIU.js +18 -0
- package/frontend/build/client/_app/immutable/chunks/C4eeChIU.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/C4eeChIU.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/C67QNx7Z.js +18 -0
- package/frontend/build/client/_app/immutable/chunks/C67QNx7Z.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/C67QNx7Z.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/CVV6HrFb.js +18 -0
- package/frontend/build/client/_app/immutable/chunks/CVV6HrFb.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/CVV6HrFb.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/CstKKb9b.js +18 -0
- package/frontend/build/client/_app/immutable/chunks/CstKKb9b.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/CstKKb9b.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/CxTX_lpP.js +18 -0
- package/frontend/build/client/_app/immutable/chunks/CxTX_lpP.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/CxTX_lpP.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/CyQ_oBw2.js +18 -0
- package/frontend/build/client/_app/immutable/chunks/CyQ_oBw2.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/CyQ_oBw2.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/DGryW1Vp.js +18 -0
- package/frontend/build/client/_app/immutable/chunks/DGryW1Vp.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/DGryW1Vp.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/DIx44H9N.js +18 -0
- package/frontend/build/client/_app/immutable/chunks/DIx44H9N.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/DIx44H9N.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/DP6QP4L6.js +18 -0
- package/frontend/build/client/_app/immutable/chunks/DP6QP4L6.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/DP6QP4L6.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/DmRbbcS3.js +23 -0
- package/frontend/build/client/_app/immutable/chunks/DmRbbcS3.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/DmRbbcS3.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/IFIFk6zi.js +18 -0
- package/frontend/build/client/_app/immutable/chunks/IFIFk6zi.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/IFIFk6zi.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/KJdjlibc.js +20 -0
- package/frontend/build/client/_app/immutable/chunks/KJdjlibc.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/KJdjlibc.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/ll-VsEGv.js +18 -0
- package/frontend/build/client/_app/immutable/chunks/ll-VsEGv.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/ll-VsEGv.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/raHbXn_9.js +18 -0
- package/frontend/build/client/_app/immutable/chunks/raHbXn_9.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/raHbXn_9.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/uFRI_bmR.js +18 -0
- package/frontend/build/client/_app/immutable/chunks/uFRI_bmR.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/uFRI_bmR.js.gz +0 -0
- package/frontend/build/client/_app/immutable/entry/app.Dz_CBZcR.js +19 -0
- package/frontend/build/client/_app/immutable/entry/app.Dz_CBZcR.js.br +0 -0
- package/frontend/build/client/_app/immutable/entry/app.Dz_CBZcR.js.gz +0 -0
- package/frontend/build/client/_app/immutable/entry/start.MMlC62np.js +18 -0
- package/frontend/build/client/_app/immutable/entry/{start.GiBry-lw.js.br → start.MMlC62np.js.br} +1 -1
- package/frontend/build/client/_app/immutable/entry/{start.GiBry-lw.js.gz → start.MMlC62np.js.gz} +0 -0
- package/frontend/build/client/_app/immutable/nodes/0.CKD9Qja6.js +23 -0
- package/frontend/build/client/_app/immutable/nodes/0.CKD9Qja6.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/0.CKD9Qja6.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/{1.N4gjrCnX.js → 1.Dbck5ct8.js} +1 -1
- package/frontend/build/client/_app/immutable/nodes/1.Dbck5ct8.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/1.Dbck5ct8.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/10.BfmGpmC1.js +19 -0
- package/frontend/build/client/_app/immutable/nodes/10.BfmGpmC1.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/10.BfmGpmC1.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/11.C7l9HPom.js +18 -0
- package/frontend/build/client/_app/immutable/nodes/11.C7l9HPom.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/11.C7l9HPom.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/12.Iu9bcGdC.js +19 -0
- package/frontend/build/client/_app/immutable/nodes/12.Iu9bcGdC.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/12.Iu9bcGdC.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/2.BqQhRvYh.js +18 -0
- package/frontend/build/client/_app/immutable/nodes/2.BqQhRvYh.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/2.BqQhRvYh.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/3.BZRTKadS.js +18 -0
- package/frontend/build/client/_app/immutable/nodes/3.BZRTKadS.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/3.BZRTKadS.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/4.BfKoPKdM.js +18 -0
- package/frontend/build/client/_app/immutable/nodes/4.BfKoPKdM.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/4.BfKoPKdM.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/5.B4a2uCWn.js +18 -0
- package/frontend/build/client/_app/immutable/nodes/5.B4a2uCWn.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/5.B4a2uCWn.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/6.CI508CMS.js +18 -0
- package/frontend/build/client/_app/immutable/nodes/6.CI508CMS.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/6.CI508CMS.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/7.3x_eiof1.js +18 -0
- package/frontend/build/client/_app/immutable/nodes/7.3x_eiof1.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/7.3x_eiof1.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/8.BfUuob4H.js +29 -0
- package/frontend/build/client/_app/immutable/nodes/8.BfUuob4H.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/8.BfUuob4H.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/9.BZhCKRJe.js +18 -0
- package/frontend/build/client/_app/immutable/nodes/9.BZhCKRJe.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/9.BZhCKRJe.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/client/favicon-32x32.png +0 -0
- package/frontend/build/client/favicon.ico +0 -0
- package/frontend/build/server/chunks/0-Dzas6zkl.js +34 -0
- package/frontend/build/server/chunks/0-Dzas6zkl.js.map +17 -0
- package/frontend/build/server/chunks/{1-hso3H4Ax.js → 1-B4EsP8yr.js} +3 -3
- package/frontend/build/server/chunks/{1-hso3H4Ax.js.map → 1-B4EsP8yr.js.map} +1 -1
- package/frontend/build/server/chunks/10-UhDQZ5BY.js +26 -0
- package/frontend/build/server/chunks/10-UhDQZ5BY.js.map +17 -0
- package/frontend/build/server/chunks/11-mTH3nQlX.js +26 -0
- package/frontend/build/server/chunks/11-mTH3nQlX.js.map +17 -0
- package/frontend/build/server/chunks/12-9mg6kp53.js +26 -0
- package/frontend/build/server/chunks/12-9mg6kp53.js.map +17 -0
- package/frontend/build/server/chunks/{4-2UUrCVtM.js → 2-Bkz8H7CT.js} +5 -5
- package/frontend/build/server/chunks/2-Bkz8H7CT.js.map +17 -0
- package/frontend/build/server/chunks/{3-BYumY9dv.js → 3-DDtaiqu7.js} +4 -4
- package/frontend/build/server/chunks/3-DDtaiqu7.js.map +17 -0
- package/frontend/build/server/chunks/4-DbdkTAvS.js +26 -0
- package/frontend/build/server/chunks/4-DbdkTAvS.js.map +17 -0
- package/frontend/build/server/chunks/{5-C2_y_fwT.js → 5-CK5hY2WF.js} +4 -4
- package/frontend/build/server/chunks/5-CK5hY2WF.js.map +17 -0
- package/frontend/build/server/chunks/6-Cps9fL3Z.js +26 -0
- package/frontend/build/server/chunks/6-Cps9fL3Z.js.map +17 -0
- package/frontend/build/server/chunks/7-CgUpbaJD.js +26 -0
- package/frontend/build/server/chunks/7-CgUpbaJD.js.map +17 -0
- package/frontend/build/server/chunks/8-dilaVKYo.js +26 -0
- package/frontend/build/server/chunks/8-dilaVKYo.js.map +17 -0
- package/frontend/build/server/chunks/{2-BSZWXCWp.js → 9-CUJxgoIN.js} +5 -5
- package/frontend/build/server/chunks/9-CUJxgoIN.js.map +17 -0
- package/frontend/build/server/chunks/BackLink-KxZNqsaq.js +30 -0
- package/frontend/build/server/chunks/BackLink-KxZNqsaq.js.map +17 -0
- package/frontend/build/server/chunks/{Badge-CC4U7C0c.js → Badge-B5V-z6pI.js} +4 -4
- package/frontend/build/server/chunks/Badge-B5V-z6pI.js.map +17 -0
- package/frontend/build/server/chunks/{Button-BLkPicwS.js → Button-CuacyA7Y.js} +4 -4
- package/frontend/build/server/chunks/Button-CuacyA7Y.js.map +17 -0
- package/frontend/build/server/chunks/ConfirmModal-DBtnLLsU.js +73 -0
- package/frontend/build/server/chunks/ConfirmModal-DBtnLLsU.js.map +17 -0
- package/frontend/build/server/chunks/EmptyState-B74-VZ15.js +34 -0
- package/frontend/build/server/chunks/EmptyState-B74-VZ15.js.map +17 -0
- package/frontend/build/server/chunks/Toast-DDF2wi_5.js +37 -0
- package/frontend/build/server/chunks/Toast-DDF2wi_5.js.map +17 -0
- package/frontend/build/server/chunks/_layout.svelte-DoJXDbP1.js +39 -0
- package/frontend/build/server/chunks/_layout.svelte-DoJXDbP1.js.map +17 -0
- package/frontend/build/server/chunks/_page.svelte-BETENC2e.js +67 -0
- package/frontend/build/server/chunks/_page.svelte-BETENC2e.js.map +17 -0
- package/frontend/build/server/chunks/_page.svelte-C0vstY93.js +219 -0
- package/frontend/build/server/chunks/_page.svelte-C0vstY93.js.map +17 -0
- package/frontend/build/server/chunks/_page.svelte-CC27sZag.js +421 -0
- package/frontend/build/server/chunks/_page.svelte-CC27sZag.js.map +17 -0
- package/frontend/build/server/chunks/{_page.svelte-s6ZIOitT.js → _page.svelte-CYkOPxn2.js} +47 -29
- package/frontend/build/server/chunks/_page.svelte-CYkOPxn2.js.map +17 -0
- package/frontend/build/server/chunks/_page.svelte-CperUuP9.js +564 -0
- package/frontend/build/server/chunks/_page.svelte-CperUuP9.js.map +17 -0
- package/frontend/build/server/chunks/_page.svelte-CwrCf0C8.js +65 -0
- package/frontend/build/server/chunks/_page.svelte-CwrCf0C8.js.map +17 -0
- package/frontend/build/server/chunks/_page.svelte-DALHRFEX.js +43 -0
- package/frontend/build/server/chunks/_page.svelte-DALHRFEX.js.map +17 -0
- package/frontend/build/server/chunks/_page.svelte-DNNyBx4y.js +43 -0
- package/frontend/build/server/chunks/_page.svelte-DNNyBx4y.js.map +17 -0
- package/frontend/build/server/chunks/_page.svelte-DqWsUJRp.js +199 -0
- package/frontend/build/server/chunks/_page.svelte-DqWsUJRp.js.map +17 -0
- package/frontend/build/server/chunks/_page.svelte-LcJmR5du.js +219 -0
- package/frontend/build/server/chunks/_page.svelte-LcJmR5du.js.map +17 -0
- package/frontend/build/server/chunks/_page.svelte-gnktnXKP.js +259 -0
- package/frontend/build/server/chunks/_page.svelte-gnktnXKP.js.map +17 -0
- package/frontend/build/server/chunks/auth-rlH-cIzn.js +62 -0
- package/frontend/build/server/chunks/auth-rlH-cIzn.js.map +17 -0
- package/frontend/build/server/chunks/{client-C9IaEwNo.js → client-DyII78e0.js} +9 -4
- package/frontend/build/server/chunks/client-DyII78e0.js.map +17 -0
- package/frontend/build/server/chunks/constants-Drz-Vo39.js +35 -0
- package/frontend/build/server/chunks/constants-Drz-Vo39.js.map +17 -0
- package/frontend/build/server/chunks/{error.svelte-HKBv5sQT.js → error.svelte-BDW3iP1O.js} +4 -4
- package/frontend/build/server/chunks/{error.svelte-HKBv5sQT.js.map → error.svelte-BDW3iP1O.js.map} +1 -1
- package/frontend/build/server/chunks/{exports-OxlCJ8yE.js → exports-D0QHgeSL.js} +2 -67
- package/frontend/build/server/chunks/exports-D0QHgeSL.js.map +17 -0
- package/frontend/build/server/chunks/format-D26ZQccb.js +49 -0
- package/frontend/build/server/chunks/format-D26ZQccb.js.map +17 -0
- package/frontend/build/server/chunks/index-server-Dr2Nvcmu.js +31 -0
- package/frontend/build/{client/_app/immutable/chunks/BKz6FZdB.js.br → server/chunks/index-server-Dr2Nvcmu.js.map} +0 -0
- package/frontend/build/server/chunks/{index-CjHlq1kt.js → index2-DG8XHU5D.js} +81 -10
- package/frontend/build/server/chunks/index2-DG8XHU5D.js.map +17 -0
- package/frontend/build/server/chunks/reports-Bgi7V5N7.js +40 -0
- package/frontend/build/server/chunks/reports-Bgi7V5N7.js.map +17 -0
- package/frontend/build/server/chunks/runner-D18Ml_vF.js +42 -0
- package/frontend/build/server/chunks/runner-D18Ml_vF.js.map +17 -0
- package/frontend/build/server/chunks/{reports-D3ZeYSmi.js → stores-DlkXV308.js} +4 -16
- package/frontend/build/server/chunks/stores-DlkXV308.js.map +17 -0
- package/frontend/build/server/chunks/theme-D_NKm6iI.js +27 -0
- package/frontend/build/server/chunks/theme-D_NKm6iI.js.map +17 -0
- package/frontend/build/server/index.js +4 -4
- package/frontend/build/server/index.js.map +1 -1
- package/frontend/build/server/manifest.js +69 -13
- package/frontend/build/server/manifest.js.map +1 -1
- package/frontend/src/lib/components/layout/RunnerPanel.svelte +108 -21
- package/frontend/src/lib/components/ui/Badge.svelte +6 -1
- package/frontend/src/lib/constants.js +2 -1
- package/frontend/src/lib/stores/runner.js +5 -2
- package/frontend/src/lib/styles/tokens.css +4 -0
- package/frontend/src/lib/utils/format.js +3 -0
- package/frontend/src/routes/reports/[id]/+page.svelte +5 -1
- package/frontend/src/routes/reports/live/+page.svelte +38 -17
- package/frontend/src/routes/scheduled-tests/+page.svelte +2 -2
- package/frontend/src/routes/settings/+page.svelte +50 -1
- package/package.json +1 -1
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/Badge.DLLowvEA.css +0 -34
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/Button.cBruH0aD.css +0 -34
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/_layout.D7eM-6MV.css +0 -34
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/_page.BVnUajEa.css +0 -34
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/_page.CGnCsn5q.css +0 -34
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/_page.DBhBrHFz.css +0 -34
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/_page.DOqo0UR4.css +0 -34
- package/frontend/.svelte-kit/adapter-node/entries/pages/reports/_slug_/_page.svelte.js +0 -42
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/0.CnXRuPt4.css +0 -34
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/2.CGnCsn5q.css +0 -34
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/3.BVnUajEa.css +0 -34
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/4.DBhBrHFz.css +0 -34
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/5.D93VAB-w.css +0 -34
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/Badge.DLLowvEA.css +0 -34
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/Button.cBruH0aD.css +0 -34
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/_layout.D7eM-6MV.css +0 -34
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/_page.BVnUajEa.css +0 -34
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/_page.CGnCsn5q.css +0 -34
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/_page.DBhBrHFz.css +0 -34
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/_page.DOqo0UR4.css +0 -34
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/B0bn91RF.js +0 -18
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/B1kE5jmt.js +0 -23
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/Be4iUAB0.js +0 -18
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/BpaMqo9O.js +0 -18
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/Bt3-Z7H1.js +0 -18
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/Cit9MuSg.js +0 -20
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/DBk3zeq4.js +0 -18
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/DFJLQFic.js +0 -18
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/DTUE7kkY.js +0 -18
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/IYPwzKs_.js +0 -20
- package/frontend/.svelte-kit/output/client/_app/immutable/entry/app.C2MbX06K.js +0 -19
- package/frontend/.svelte-kit/output/client/_app/immutable/nodes/0.BsCYK-Tn.js +0 -21
- package/frontend/.svelte-kit/output/client/_app/immutable/nodes/2.D9yQNzK8.js +0 -18
- package/frontend/.svelte-kit/output/client/_app/immutable/nodes/3.CBC5WvNb.js +0 -18
- package/frontend/.svelte-kit/output/client/_app/immutable/nodes/4.BU6UZHSE.js +0 -19
- package/frontend/.svelte-kit/output/client/_app/immutable/nodes/5.Dzzfrntl.js +0 -18
- package/frontend/.svelte-kit/output/client/favicon.png +0 -0
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/Badge.DLLowvEA.css +0 -34
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/Button.cBruH0aD.css +0 -34
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/_layout.D7eM-6MV.css +0 -34
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/_page.BVnUajEa.css +0 -34
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/_page.CGnCsn5q.css +0 -34
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/_page.DBhBrHFz.css +0 -34
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/_page.DOqo0UR4.css +0 -34
- package/frontend/.svelte-kit/output/server/entries/pages/reports/_slug_/_page.svelte.js +0 -42
- package/frontend/build/client/_app/immutable/assets/0.CnXRuPt4.css +0 -34
- package/frontend/build/client/_app/immutable/assets/0.CnXRuPt4.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/0.CnXRuPt4.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/2.CGnCsn5q.css +0 -34
- package/frontend/build/client/_app/immutable/assets/2.CGnCsn5q.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/2.CGnCsn5q.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/3.BVnUajEa.css +0 -34
- package/frontend/build/client/_app/immutable/assets/3.BVnUajEa.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/3.BVnUajEa.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/4.DBhBrHFz.css +0 -34
- package/frontend/build/client/_app/immutable/assets/4.DBhBrHFz.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/4.DBhBrHFz.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/5.D93VAB-w.css +0 -34
- package/frontend/build/client/_app/immutable/assets/5.D93VAB-w.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/5.D93VAB-w.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/Badge.DLLowvEA.css +0 -34
- package/frontend/build/client/_app/immutable/assets/Button.cBruH0aD.css +0 -34
- package/frontend/build/client/_app/immutable/assets/Button.cBruH0aD.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/Button.cBruH0aD.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/_layout.D7eM-6MV.css +0 -34
- package/frontend/build/client/_app/immutable/assets/_layout.D7eM-6MV.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/_layout.D7eM-6MV.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.BVnUajEa.css +0 -34
- package/frontend/build/client/_app/immutable/assets/_page.BVnUajEa.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.BVnUajEa.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.CGnCsn5q.css +0 -34
- package/frontend/build/client/_app/immutable/assets/_page.CGnCsn5q.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.CGnCsn5q.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.DBhBrHFz.css +0 -34
- package/frontend/build/client/_app/immutable/assets/_page.DBhBrHFz.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.DBhBrHFz.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.DOqo0UR4.css +0 -34
- package/frontend/build/client/_app/immutable/assets/_page.DOqo0UR4.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.DOqo0UR4.css.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/B0bn91RF.js +0 -18
- package/frontend/build/client/_app/immutable/chunks/B0bn91RF.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/B0bn91RF.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/B1kE5jmt.js +0 -23
- package/frontend/build/client/_app/immutable/chunks/B1kE5jmt.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/B1kE5jmt.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/BKz6FZdB.js +0 -18
- package/frontend/build/client/_app/immutable/chunks/BKz6FZdB.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/Be4iUAB0.js +0 -18
- package/frontend/build/client/_app/immutable/chunks/Be4iUAB0.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/Be4iUAB0.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/BpaMqo9O.js +0 -18
- package/frontend/build/client/_app/immutable/chunks/BpaMqo9O.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/BpaMqo9O.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/Bt3-Z7H1.js +0 -18
- package/frontend/build/client/_app/immutable/chunks/Bt3-Z7H1.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/Bt3-Z7H1.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/Cit9MuSg.js +0 -20
- package/frontend/build/client/_app/immutable/chunks/Cit9MuSg.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/Cit9MuSg.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/CwBTqcbj.js +0 -18
- package/frontend/build/client/_app/immutable/chunks/CwBTqcbj.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/CwBTqcbj.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/DBk3zeq4.js +0 -18
- package/frontend/build/client/_app/immutable/chunks/DBk3zeq4.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/DBk3zeq4.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/DFJLQFic.js +0 -18
- package/frontend/build/client/_app/immutable/chunks/DFJLQFic.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/DFJLQFic.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/DTUE7kkY.js +0 -18
- package/frontend/build/client/_app/immutable/chunks/DTUE7kkY.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/DTUE7kkY.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/IYPwzKs_.js +0 -20
- package/frontend/build/client/_app/immutable/chunks/IYPwzKs_.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/IYPwzKs_.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/oc0we5Us.js +0 -18
- package/frontend/build/client/_app/immutable/chunks/oc0we5Us.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/oc0we5Us.js.gz +0 -0
- package/frontend/build/client/_app/immutable/entry/app.C2MbX06K.js +0 -19
- package/frontend/build/client/_app/immutable/entry/app.C2MbX06K.js.br +0 -0
- package/frontend/build/client/_app/immutable/entry/app.C2MbX06K.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/0.BsCYK-Tn.js +0 -21
- package/frontend/build/client/_app/immutable/nodes/0.BsCYK-Tn.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/0.BsCYK-Tn.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/1.N4gjrCnX.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/1.N4gjrCnX.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/2.D9yQNzK8.js +0 -18
- package/frontend/build/client/_app/immutable/nodes/2.D9yQNzK8.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/2.D9yQNzK8.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/3.CBC5WvNb.js +0 -18
- package/frontend/build/client/_app/immutable/nodes/3.CBC5WvNb.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/3.CBC5WvNb.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/4.BU6UZHSE.js +0 -19
- package/frontend/build/client/_app/immutable/nodes/4.BU6UZHSE.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/4.BU6UZHSE.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/5.Dzzfrntl.js +0 -18
- package/frontend/build/client/_app/immutable/nodes/5.Dzzfrntl.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/5.Dzzfrntl.js.gz +0 -0
- package/frontend/build/client/favicon.png +0 -0
- package/frontend/build/server/chunks/0-BFfqmlsS.js +0 -26
- package/frontend/build/server/chunks/0-BFfqmlsS.js.map +0 -17
- package/frontend/build/server/chunks/2-BSZWXCWp.js.map +0 -17
- package/frontend/build/server/chunks/3-BYumY9dv.js.map +0 -17
- package/frontend/build/server/chunks/4-2UUrCVtM.js.map +0 -17
- package/frontend/build/server/chunks/5-C2_y_fwT.js.map +0 -17
- package/frontend/build/server/chunks/Badge-CC4U7C0c.js.map +0 -17
- package/frontend/build/server/chunks/Button-BLkPicwS.js.map +0 -17
- package/frontend/build/server/chunks/_layout.svelte-Bfxcj9C6.js +0 -183
- package/frontend/build/server/chunks/_layout.svelte-Bfxcj9C6.js.map +0 -17
- package/frontend/build/server/chunks/_page.svelte-DEK6UvaI.js +0 -45
- package/frontend/build/server/chunks/_page.svelte-DEK6UvaI.js.map +0 -17
- package/frontend/build/server/chunks/_page.svelte-DScVdHOq.js +0 -142
- package/frontend/build/server/chunks/_page.svelte-DScVdHOq.js.map +0 -17
- package/frontend/build/server/chunks/_page.svelte-Ns7w2sZt.js +0 -180
- package/frontend/build/server/chunks/_page.svelte-Ns7w2sZt.js.map +0 -17
- package/frontend/build/server/chunks/_page.svelte-s6ZIOitT.js.map +0 -17
- package/frontend/build/server/chunks/client-C9IaEwNo.js.map +0 -17
- package/frontend/build/server/chunks/exports-OxlCJ8yE.js.map +0 -17
- package/frontend/build/server/chunks/index-CjHlq1kt.js.map +0 -17
- package/frontend/build/server/chunks/reports-D3ZeYSmi.js.map +0 -17
|
@@ -0,0 +1,36 @@
|
|
|
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
|
+
import { a0 as fallback, _ as stringify, a1 as bind_props, p as pop, a as push } from "./index.js";
|
|
19
|
+
import { a as attr } from "./attributes.js";
|
|
20
|
+
import { e as escape_html } from "./escaping.js";
|
|
21
|
+
function Toast($$payload, $$props) {
|
|
22
|
+
push();
|
|
23
|
+
let toast = fallback($$props["toast"], null);
|
|
24
|
+
if (toast) {
|
|
25
|
+
$$payload.out += "<!--[-->";
|
|
26
|
+
$$payload.out += `<div${attr("class", `toast alert alert-${stringify(toast.type)} svelte-1fg63qf`)}>${escape_html(toast.message)}</div>`;
|
|
27
|
+
} else {
|
|
28
|
+
$$payload.out += "<!--[!-->";
|
|
29
|
+
}
|
|
30
|
+
$$payload.out += `<!--]-->`;
|
|
31
|
+
bind_props($$props, { toast });
|
|
32
|
+
pop();
|
|
33
|
+
}
|
|
34
|
+
export {
|
|
35
|
+
Toast as T
|
|
36
|
+
};
|
|
@@ -0,0 +1,61 @@
|
|
|
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
|
+
import { w as writable } from "./index2.js";
|
|
19
|
+
const TOKEN_KEY = "plum:token";
|
|
20
|
+
const USER_KEY = "plum:user";
|
|
21
|
+
function createAuthStore() {
|
|
22
|
+
let initialToken = null;
|
|
23
|
+
let initialUser = null;
|
|
24
|
+
try {
|
|
25
|
+
initialToken = typeof localStorage !== "undefined" ? localStorage.getItem(TOKEN_KEY) : null;
|
|
26
|
+
const raw = typeof localStorage !== "undefined" ? localStorage.getItem(USER_KEY) : null;
|
|
27
|
+
initialUser = raw ? JSON.parse(raw) : null;
|
|
28
|
+
} catch {
|
|
29
|
+
}
|
|
30
|
+
const { subscribe, set, update } = writable({ token: initialToken, user: initialUser });
|
|
31
|
+
return {
|
|
32
|
+
subscribe,
|
|
33
|
+
login(token, user) {
|
|
34
|
+
try {
|
|
35
|
+
localStorage.setItem(TOKEN_KEY, token);
|
|
36
|
+
localStorage.setItem(USER_KEY, JSON.stringify(user));
|
|
37
|
+
} catch {
|
|
38
|
+
}
|
|
39
|
+
set({ token, user });
|
|
40
|
+
},
|
|
41
|
+
logout() {
|
|
42
|
+
try {
|
|
43
|
+
localStorage.removeItem(TOKEN_KEY);
|
|
44
|
+
localStorage.removeItem(USER_KEY);
|
|
45
|
+
} catch {
|
|
46
|
+
}
|
|
47
|
+
set({ token: null, user: null });
|
|
48
|
+
},
|
|
49
|
+
getToken() {
|
|
50
|
+
try {
|
|
51
|
+
return localStorage.getItem(TOKEN_KEY);
|
|
52
|
+
} catch {
|
|
53
|
+
return null;
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
};
|
|
57
|
+
}
|
|
58
|
+
const auth = createAuthStore();
|
|
59
|
+
export {
|
|
60
|
+
auth as a
|
|
61
|
+
};
|
|
@@ -16,8 +16,9 @@
|
|
|
16
16
|
*/
|
|
17
17
|
|
|
18
18
|
import "clsx";
|
|
19
|
-
import
|
|
20
|
-
import {
|
|
19
|
+
import "./exports.js";
|
|
20
|
+
import { w as writable } from "./index2.js";
|
|
21
|
+
import { a6 as noop } from "./index.js";
|
|
21
22
|
const SNAPSHOT_KEY = "sveltekit:snapshot";
|
|
22
23
|
const SCROLL_KEY = "sveltekit:scroll";
|
|
23
24
|
function create_updated_store() {
|
|
@@ -54,6 +55,12 @@ get(SNAPSHOT_KEY) ?? {};
|
|
|
54
55
|
const stores = {
|
|
55
56
|
updated: /* @__PURE__ */ create_updated_store()
|
|
56
57
|
};
|
|
58
|
+
function goto(url, opts = {}) {
|
|
59
|
+
{
|
|
60
|
+
throw new Error("Cannot call goto(...) on the server");
|
|
61
|
+
}
|
|
62
|
+
}
|
|
57
63
|
export {
|
|
64
|
+
goto as g,
|
|
58
65
|
stores as s
|
|
59
66
|
};
|
|
@@ -0,0 +1,41 @@
|
|
|
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
|
+
const API_BASE = "http://localhost:3001";
|
|
19
|
+
const BROWSERS = [
|
|
20
|
+
{ id: "chromium", label: "Chrome" },
|
|
21
|
+
{ id: "firefox", label: "Firefox" }
|
|
22
|
+
];
|
|
23
|
+
const TRIGGER_TYPES = Object.freeze({
|
|
24
|
+
MANUAL: "manual-trigger",
|
|
25
|
+
CLI: "command-line-trigger",
|
|
26
|
+
MCP: "mcp-trigger",
|
|
27
|
+
EXTERNAL: "external-trigger"
|
|
28
|
+
});
|
|
29
|
+
const REPORTS_PER_PAGE = 15;
|
|
30
|
+
const SUITE_CASES_PER_PAGE = 20;
|
|
31
|
+
const REDIRECT_DELAY_MS = 3e3;
|
|
32
|
+
const ALL_TESTS_LABEL = "all tests";
|
|
33
|
+
export {
|
|
34
|
+
API_BASE as A,
|
|
35
|
+
BROWSERS as B,
|
|
36
|
+
REPORTS_PER_PAGE as R,
|
|
37
|
+
SUITE_CASES_PER_PAGE as S,
|
|
38
|
+
TRIGGER_TYPES as T,
|
|
39
|
+
REDIRECT_DELAY_MS as a,
|
|
40
|
+
ALL_TESTS_LABEL as b
|
|
41
|
+
};
|
|
@@ -15,62 +15,6 @@
|
|
|
15
15
|
* along with Plum. If not, see https://www.gnu.org/licenses/.
|
|
16
16
|
*/
|
|
17
17
|
|
|
18
|
-
import { a1 as noop } from "./index.js";
|
|
19
|
-
import { a as safe_not_equal } from "./equality.js";
|
|
20
|
-
import "clsx";
|
|
21
|
-
const subscriber_queue = [];
|
|
22
|
-
function readable(value, start) {
|
|
23
|
-
return {
|
|
24
|
-
subscribe: writable(value, start).subscribe
|
|
25
|
-
};
|
|
26
|
-
}
|
|
27
|
-
function writable(value, start = noop) {
|
|
28
|
-
let stop = null;
|
|
29
|
-
const subscribers = /* @__PURE__ */ new Set();
|
|
30
|
-
function set(new_value) {
|
|
31
|
-
if (safe_not_equal(value, new_value)) {
|
|
32
|
-
value = new_value;
|
|
33
|
-
if (stop) {
|
|
34
|
-
const run_queue = !subscriber_queue.length;
|
|
35
|
-
for (const subscriber of subscribers) {
|
|
36
|
-
subscriber[1]();
|
|
37
|
-
subscriber_queue.push(subscriber, value);
|
|
38
|
-
}
|
|
39
|
-
if (run_queue) {
|
|
40
|
-
for (let i = 0; i < subscriber_queue.length; i += 2) {
|
|
41
|
-
subscriber_queue[i][0](subscriber_queue[i + 1]);
|
|
42
|
-
}
|
|
43
|
-
subscriber_queue.length = 0;
|
|
44
|
-
}
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
}
|
|
48
|
-
function update(fn) {
|
|
49
|
-
set(fn(
|
|
50
|
-
/** @type {T} */
|
|
51
|
-
value
|
|
52
|
-
));
|
|
53
|
-
}
|
|
54
|
-
function subscribe(run, invalidate = noop) {
|
|
55
|
-
const subscriber = [run, invalidate];
|
|
56
|
-
subscribers.add(subscriber);
|
|
57
|
-
if (subscribers.size === 1) {
|
|
58
|
-
stop = start(set, update) || noop;
|
|
59
|
-
}
|
|
60
|
-
run(
|
|
61
|
-
/** @type {T} */
|
|
62
|
-
value
|
|
63
|
-
);
|
|
64
|
-
return () => {
|
|
65
|
-
subscribers.delete(subscriber);
|
|
66
|
-
if (subscribers.size === 0 && stop) {
|
|
67
|
-
stop();
|
|
68
|
-
stop = null;
|
|
69
|
-
}
|
|
70
|
-
};
|
|
71
|
-
}
|
|
72
|
-
return { set, update, subscribe };
|
|
73
|
-
}
|
|
74
18
|
const internal = new URL("sveltekit-internal://");
|
|
75
19
|
function resolve(base, path) {
|
|
76
20
|
if (path[0] === "/" && path[1] === "/") return path;
|
|
@@ -232,16 +176,14 @@ const validate_page_server_exports = validator(valid_page_server_exports);
|
|
|
232
176
|
const validate_server_exports = validator(valid_server_exports);
|
|
233
177
|
export {
|
|
234
178
|
decode_params as a,
|
|
235
|
-
|
|
236
|
-
|
|
179
|
+
decode_pathname as b,
|
|
180
|
+
validate_layout_exports as c,
|
|
237
181
|
disable_search as d,
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
validate_server_exports as h,
|
|
182
|
+
validate_page_server_exports as e,
|
|
183
|
+
validate_page_exports as f,
|
|
184
|
+
validate_server_exports as g,
|
|
242
185
|
make_trackable as m,
|
|
243
186
|
normalize_path as n,
|
|
244
|
-
|
|
245
|
-
validate_layout_server_exports as v
|
|
246
|
-
writable as w
|
|
187
|
+
resolve as r,
|
|
188
|
+
validate_layout_server_exports as v
|
|
247
189
|
};
|
|
@@ -0,0 +1,51 @@
|
|
|
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
|
+
import { T as TRIGGER_TYPES } from "./constants.js";
|
|
19
|
+
const NON_SCHEDULED = /* @__PURE__ */ new Set([
|
|
20
|
+
TRIGGER_TYPES.MANUAL,
|
|
21
|
+
TRIGGER_TYPES.CLI,
|
|
22
|
+
TRIGGER_TYPES.MCP,
|
|
23
|
+
TRIGGER_TYPES.EXTERNAL,
|
|
24
|
+
"undefined"
|
|
25
|
+
]);
|
|
26
|
+
function isScheduled(type) {
|
|
27
|
+
return !!type && !NON_SCHEDULED.has(type);
|
|
28
|
+
}
|
|
29
|
+
function triggerLabel(type) {
|
|
30
|
+
if (type === TRIGGER_TYPES.MANUAL) return "Manual";
|
|
31
|
+
if (type === TRIGGER_TYPES.CLI || type === "undefined") return "CLI";
|
|
32
|
+
if (type === TRIGGER_TYPES.MCP) return "MCP";
|
|
33
|
+
if (type === TRIGGER_TYPES.EXTERNAL) return "External";
|
|
34
|
+
return "Scheduled";
|
|
35
|
+
}
|
|
36
|
+
function triggerVariant(type) {
|
|
37
|
+
if (type === TRIGGER_TYPES.MANUAL) return "tag";
|
|
38
|
+
if (type === TRIGGER_TYPES.CLI || type === "undefined") return "neutral";
|
|
39
|
+
if (type === TRIGGER_TYPES.MCP) return "mcp";
|
|
40
|
+
if (type === TRIGGER_TYPES.EXTERNAL) return "external";
|
|
41
|
+
return "schedule";
|
|
42
|
+
}
|
|
43
|
+
function stagger(i, stepMs = 45) {
|
|
44
|
+
return `animation-delay: ${i * stepMs}ms`;
|
|
45
|
+
}
|
|
46
|
+
export {
|
|
47
|
+
triggerLabel as a,
|
|
48
|
+
isScheduled as i,
|
|
49
|
+
stagger as s,
|
|
50
|
+
triggerVariant as t
|
|
51
|
+
};
|
|
@@ -0,0 +1,31 @@
|
|
|
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
|
+
import { a4 as current_component } from "./index.js";
|
|
19
|
+
function onDestroy(fn) {
|
|
20
|
+
var context = (
|
|
21
|
+
/** @type {Component} */
|
|
22
|
+
current_component
|
|
23
|
+
);
|
|
24
|
+
(context.d ??= []).push(fn);
|
|
25
|
+
}
|
|
26
|
+
async function tick() {
|
|
27
|
+
}
|
|
28
|
+
export {
|
|
29
|
+
onDestroy as o,
|
|
30
|
+
tick as t
|
|
31
|
+
};
|
|
@@ -54,6 +54,15 @@ function fallback(value, fallback2, lazy = false) {
|
|
|
54
54
|
}
|
|
55
55
|
function flush_tasks() {
|
|
56
56
|
}
|
|
57
|
+
function equals(value) {
|
|
58
|
+
return value === this.v;
|
|
59
|
+
}
|
|
60
|
+
function safe_not_equal(a, b) {
|
|
61
|
+
return a != a ? b == b : a !== b || a !== null && typeof a === "object" || typeof a === "function";
|
|
62
|
+
}
|
|
63
|
+
function safe_equals(value) {
|
|
64
|
+
return !safe_not_equal(value, this.v);
|
|
65
|
+
}
|
|
57
66
|
function effect_update_depth_exceeded() {
|
|
58
67
|
{
|
|
59
68
|
throw new Error(`https://svelte.dev/e/effect_update_depth_exceeded`);
|
|
@@ -972,15 +981,15 @@ function get_parent_context(component_context2) {
|
|
|
972
981
|
}
|
|
973
982
|
const BLOCK_OPEN = `<!--${HYDRATION_START}-->`;
|
|
974
983
|
const BLOCK_CLOSE = `<!--${HYDRATION_END}-->`;
|
|
975
|
-
function copy_payload({ out, css, head, uid }) {
|
|
984
|
+
function copy_payload({ out, css, head: head2, uid }) {
|
|
976
985
|
return {
|
|
977
986
|
out,
|
|
978
987
|
css: new Set(css),
|
|
979
988
|
head: {
|
|
980
|
-
title:
|
|
981
|
-
out:
|
|
982
|
-
css: new Set(
|
|
983
|
-
uid:
|
|
989
|
+
title: head2.title,
|
|
990
|
+
out: head2.out,
|
|
991
|
+
css: new Set(head2.css),
|
|
992
|
+
uid: head2.uid
|
|
984
993
|
},
|
|
985
994
|
uid
|
|
986
995
|
};
|
|
@@ -1017,16 +1026,22 @@ function render(component, options = {}) {
|
|
|
1017
1026
|
payload.out += BLOCK_CLOSE;
|
|
1018
1027
|
for (const cleanup of on_destroy) cleanup();
|
|
1019
1028
|
on_destroy = prev_on_destroy;
|
|
1020
|
-
let
|
|
1029
|
+
let head2 = payload.head.out + payload.head.title;
|
|
1021
1030
|
for (const { hash, code } of payload.css) {
|
|
1022
|
-
|
|
1031
|
+
head2 += `<style id="${hash}">${code}</style>`;
|
|
1023
1032
|
}
|
|
1024
1033
|
return {
|
|
1025
|
-
head,
|
|
1034
|
+
head: head2,
|
|
1026
1035
|
html: payload.out,
|
|
1027
1036
|
body: payload.out
|
|
1028
1037
|
};
|
|
1029
1038
|
}
|
|
1039
|
+
function head(payload, fn) {
|
|
1040
|
+
const head_payload = payload.head;
|
|
1041
|
+
head_payload.out += BLOCK_OPEN;
|
|
1042
|
+
fn(head_payload);
|
|
1043
|
+
head_payload.out += BLOCK_CLOSE;
|
|
1044
|
+
}
|
|
1030
1045
|
function stringify(value) {
|
|
1031
1046
|
return typeof value === "string" ? value : value == null ? "" : value + "";
|
|
1032
1047
|
}
|
|
@@ -1056,6 +1071,8 @@ function slot(payload, $$props, name, slot_props, fallback_fn) {
|
|
|
1056
1071
|
}
|
|
1057
1072
|
if (slot_fn !== void 0) {
|
|
1058
1073
|
slot_fn(payload, slot_props);
|
|
1074
|
+
} else {
|
|
1075
|
+
fallback_fn?.();
|
|
1059
1076
|
}
|
|
1060
1077
|
}
|
|
1061
1078
|
function bind_props(props_parent, props_now) {
|
|
@@ -1074,62 +1091,66 @@ function ensure_array_like(array_like_or_iterator) {
|
|
|
1074
1091
|
return [];
|
|
1075
1092
|
}
|
|
1076
1093
|
export {
|
|
1077
|
-
|
|
1078
|
-
|
|
1094
|
+
unsubscribe_stores as $,
|
|
1095
|
+
HYDRATION_START as A,
|
|
1079
1096
|
BLOCK_EFFECT as B,
|
|
1080
1097
|
CLEAN as C,
|
|
1081
1098
|
DEV as D,
|
|
1082
|
-
|
|
1083
|
-
|
|
1084
|
-
|
|
1099
|
+
HYDRATION_END as E,
|
|
1100
|
+
hydration_failed as F,
|
|
1101
|
+
clear_text_content as G,
|
|
1085
1102
|
HYDRATION_ERROR as H,
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
|
|
1103
|
+
array_from as I,
|
|
1104
|
+
component_root as J,
|
|
1105
|
+
create_text as K,
|
|
1106
|
+
branch as L,
|
|
1090
1107
|
MAYBE_DIRTY as M,
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
|
|
1108
|
+
push$1 as N,
|
|
1109
|
+
component_context as O,
|
|
1110
|
+
pop$1 as P,
|
|
1111
|
+
LEGACY_PROPS as Q,
|
|
1095
1112
|
ROOT_EFFECT as R,
|
|
1096
|
-
|
|
1097
|
-
|
|
1113
|
+
get as S,
|
|
1114
|
+
flush_sync as T,
|
|
1098
1115
|
UNOWNED as U,
|
|
1099
|
-
|
|
1100
|
-
|
|
1116
|
+
render as V,
|
|
1117
|
+
setContext as W,
|
|
1101
1118
|
store_get as X,
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
|
|
1119
|
+
head as Y,
|
|
1120
|
+
ensure_array_like as Z,
|
|
1121
|
+
stringify as _,
|
|
1105
1122
|
push as a,
|
|
1106
|
-
|
|
1107
|
-
|
|
1123
|
+
fallback as a0,
|
|
1124
|
+
bind_props as a1,
|
|
1108
1125
|
copy_payload as a2,
|
|
1109
1126
|
assign_payload as a3,
|
|
1127
|
+
current_component as a4,
|
|
1128
|
+
slot as a5,
|
|
1129
|
+
noop as a6,
|
|
1130
|
+
safe_not_equal as a7,
|
|
1110
1131
|
DIRTY as b,
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
|
|
1132
|
+
set_signal_status as c,
|
|
1133
|
+
DERIVED as d,
|
|
1134
|
+
schedule_effect as e,
|
|
1135
|
+
equals as f,
|
|
1115
1136
|
getContext as g,
|
|
1116
|
-
|
|
1137
|
+
active_reaction as h,
|
|
1117
1138
|
increment_write_version as i,
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
|
|
1139
|
+
is_runes as j,
|
|
1140
|
+
derived_sources as k,
|
|
1141
|
+
state_unsafe_mutation as l,
|
|
1142
|
+
active_effect as m,
|
|
1143
|
+
BRANCH_EFFECT as n,
|
|
1144
|
+
untracked_writes as o,
|
|
1124
1145
|
pop as p,
|
|
1125
|
-
|
|
1126
|
-
|
|
1127
|
-
|
|
1128
|
-
|
|
1146
|
+
set_untracked_writes as q,
|
|
1147
|
+
get_next_sibling as r,
|
|
1148
|
+
safe_equals as s,
|
|
1149
|
+
define_property as t,
|
|
1129
1150
|
untracking as u,
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
|
|
1134
|
-
|
|
1151
|
+
set_active_reaction as v,
|
|
1152
|
+
set_active_effect as w,
|
|
1153
|
+
is_array as x,
|
|
1154
|
+
init_operations as y,
|
|
1155
|
+
get_first_child as z
|
|
1135
1156
|
};
|
|
@@ -0,0 +1,76 @@
|
|
|
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
|
+
import { a6 as noop, a7 as safe_not_equal } from "./index.js";
|
|
19
|
+
import "clsx";
|
|
20
|
+
const subscriber_queue = [];
|
|
21
|
+
function readable(value, start) {
|
|
22
|
+
return {
|
|
23
|
+
subscribe: writable(value, start).subscribe
|
|
24
|
+
};
|
|
25
|
+
}
|
|
26
|
+
function writable(value, start = noop) {
|
|
27
|
+
let stop = null;
|
|
28
|
+
const subscribers = /* @__PURE__ */ new Set();
|
|
29
|
+
function set(new_value) {
|
|
30
|
+
if (safe_not_equal(value, new_value)) {
|
|
31
|
+
value = new_value;
|
|
32
|
+
if (stop) {
|
|
33
|
+
const run_queue = !subscriber_queue.length;
|
|
34
|
+
for (const subscriber of subscribers) {
|
|
35
|
+
subscriber[1]();
|
|
36
|
+
subscriber_queue.push(subscriber, value);
|
|
37
|
+
}
|
|
38
|
+
if (run_queue) {
|
|
39
|
+
for (let i = 0; i < subscriber_queue.length; i += 2) {
|
|
40
|
+
subscriber_queue[i][0](subscriber_queue[i + 1]);
|
|
41
|
+
}
|
|
42
|
+
subscriber_queue.length = 0;
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
function update(fn) {
|
|
48
|
+
set(fn(
|
|
49
|
+
/** @type {T} */
|
|
50
|
+
value
|
|
51
|
+
));
|
|
52
|
+
}
|
|
53
|
+
function subscribe(run, invalidate = noop) {
|
|
54
|
+
const subscriber = [run, invalidate];
|
|
55
|
+
subscribers.add(subscriber);
|
|
56
|
+
if (subscribers.size === 1) {
|
|
57
|
+
stop = start(set, update) || noop;
|
|
58
|
+
}
|
|
59
|
+
run(
|
|
60
|
+
/** @type {T} */
|
|
61
|
+
value
|
|
62
|
+
);
|
|
63
|
+
return () => {
|
|
64
|
+
subscribers.delete(subscriber);
|
|
65
|
+
if (subscribers.size === 0 && stop) {
|
|
66
|
+
stop();
|
|
67
|
+
stop = null;
|
|
68
|
+
}
|
|
69
|
+
};
|
|
70
|
+
}
|
|
71
|
+
return { set, update, subscribe };
|
|
72
|
+
}
|
|
73
|
+
export {
|
|
74
|
+
readable as r,
|
|
75
|
+
writable as w
|
|
76
|
+
};
|
|
@@ -15,8 +15,7 @@
|
|
|
15
15
|
* along with Plum. If not, see https://www.gnu.org/licenses/.
|
|
16
16
|
*/
|
|
17
17
|
|
|
18
|
-
import { i as increment_write_version, b as DIRTY,
|
|
19
|
-
import { s as safe_equals, e as equals } from "./equality.js";
|
|
18
|
+
import { i as increment_write_version, s as safe_equals, b as DIRTY, c as set_signal_status, C as CLEAN, U as UNOWNED, d as DERIVED, e as schedule_effect, f as equals, h as active_reaction, u as untracking, j as is_runes, B as BLOCK_EFFECT, k as derived_sources, l as state_unsafe_mutation, m as active_effect, n as BRANCH_EFFECT, R as ROOT_EFFECT, o as untracked_writes, q as set_untracked_writes, M as MAYBE_DIRTY, H as HYDRATION_ERROR, r as get_next_sibling, t as define_property, v as set_active_reaction, w as set_active_effect, x as is_array, y as init_operations, z as get_first_child, A as HYDRATION_START, E as HYDRATION_END, F as hydration_failed, G as clear_text_content, I as array_from, J as component_root, K as create_text, L as branch, N as push, O as component_context, P as pop, Q as LEGACY_PROPS, S as get, T as flush_sync, V as render, a as push$1, W as setContext, p as pop$1 } from "./index.js";
|
|
20
19
|
import "clsx";
|
|
21
20
|
function hydration_mismatch(location) {
|
|
22
21
|
{
|
|
@@ -567,7 +566,7 @@ const options = {
|
|
|
567
566
|
root,
|
|
568
567
|
service_worker: false,
|
|
569
568
|
templates: {
|
|
570
|
-
app: ({ head, body, assets: assets2, nonce, env }) => '<!--\nThis file is part of Plum.\n\nPlum is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation, either version 3 of the License, or\n(at your option) any later version.\n\nPlum is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with Plum. If not, see https://www.gnu.org/licenses/.\n-->\n<!doctype html>\n<html lang="en" data-theme="light">\n <head>\n <meta charset="utf-8" />\n <link rel="icon" href="' + assets2 + `/favicon.
|
|
569
|
+
app: ({ head, body, assets: assets2, nonce, env }) => '<!--\nThis file is part of Plum.\n\nPlum is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation, either version 3 of the License, or\n(at your option) any later version.\n\nPlum is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with Plum. If not, see https://www.gnu.org/licenses/.\n-->\n<!doctype html>\n<html lang="en" data-theme="light">\n <head>\n <meta charset="utf-8" />\n <link rel="icon" href="' + assets2 + `/favicon.ico" />
|
|
571
570
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
572
571
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
573
572
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
@@ -654,7 +653,7 @@ const options = {
|
|
|
654
653
|
<div class="error">
|
|
655
654
|
<span class="status">` + status + '</span>\n <div class="message">\n <h1>' + message + "</h1>\n </div>\n </div>\n </body>\n</html>\n"
|
|
656
655
|
},
|
|
657
|
-
version_hash: "
|
|
656
|
+
version_hash: "84tgpe"
|
|
658
657
|
};
|
|
659
658
|
async function get_hooks() {
|
|
660
659
|
let handle;
|