Updated today at 08:58

Commit: 9ff7650 Show on GitHub

  • Author: Luuk
  • Date: 2/10/2026, 2:39:15 PM
  • Message: Merge branch 'dev-2526' of https://github.com/fdnd-agency/herstelkompas into dev-2526
  • Stats: 6326 total changes (+6322 / -4)

Changed Files

  • .env.example — +3 / -0 (3 changes)
  • .gitignore — +21 / -1 (22 changes)
  • .npmrc — +1 / -0 (1 changes)
  • CONTRIBUTING.md — +142 / -0 (142 changes)
  • README.md — +180 / -1 (181 changes)
  • content/CONTENT.md — +0 / -1 (1 changes)
  • design/DESIGN.md — +0 / -1 (1 changes)
  • docs/HANDOVER.md — +55 / -0 (55 changes)
  • docs/RETROSPECT-S14.md — +71 / -0 (71 changes)
  • docs/datamodel.png — +0 / -0 (0 changes)
  • docs/technische_documentatie.md — +204 / -0 (204 changes)
  • jsconfig.json — +13 / -0 (13 changes)
  • package-lock.json — +1520 / -0 (1520 changes)
  • package.json — +22 / -0 (22 changes)
  • src/app.html — +17 / -0 (17 changes)
  • src/lib/assets/bingo.svelte — +3 / -0 (3 changes)
  • src/lib/assets/brains.svelte — +8 / -0 (8 changes)
  • src/lib/assets/chevron.svelte — +3 / -0 (3 changes)
  • src/lib/assets/home.svelte — +3 / -0 (3 changes)
  • src/lib/assets/linechart.svelte — +3 / -0 (3 changes)
  • src/lib/assets/ordenedlist.svelte — +3 / -0 (3 changes)
  • src/lib/components/atoms/BingoAlert.svelte — +192 / -0 (192 changes)
  • src/lib/components/atoms/BingoSquare.svelte — +85 / -0 (85 changes)
  • src/lib/components/atoms/DetailScanToggle.svelte — +117 / -0 (117 changes)
  • src/lib/components/atoms/FileDescInput.svelte — +62 / -0 (62 changes)
  • src/lib/components/atoms/SidebarLink/SidebarLink.svelte — +91 / -0 (91 changes)
  • src/lib/components/atoms/SidebarLink/icons.css — +12 / -0 (12 changes)
  • src/lib/components/atoms/Waves.svelte — +153 / -0 (153 changes)
  • src/lib/components/molecules/AuthInformation.svelte — +81 / -0 (81 changes)
  • src/lib/components/molecules/BingoCard.svelte — +88 / -0 (88 changes)
  • src/lib/components/molecules/Question.svelte — +81 / -0 (81 changes)
  • src/lib/components/molecules/Questionlist.svelte — +308 / -0 (308 changes)
  • src/lib/components/molecules/ScansDetail.svelte — +63 / -0 (63 changes)
  • src/lib/components/molecules/SidebarNavigation.svelte — +28 / -0 (28 changes)
  • src/lib/components/molecules/Treatment.svelte — +99 / -0 (99 changes)
  • src/lib/components/organisms/Header.svelte — +90 / -0 (90 changes)
  • src/lib/components/organisms/QuestionListClient.svelte — +256 / -0 (256 changes)
  • src/lib/components/organisms/Sidebar.svelte — +106 / -0 (106 changes)
  • src/lib/components/organisms/Treatmentbingo.svelte — +512 / -0 (512 changes)
  • src/lib/icons.js — +7 / -0 (7 changes)
  • src/lib/index.js — +22 / -0 (22 changes)
  • src/lib/stores/sidebar.js — +3 / -0 (3 changes)
  • src/routes/+layout.svelte — +69 / -0 (69 changes)
  • src/routes/+page.server.js — +5 / -0 (5 changes)
  • src/routes/+page.svelte — +30 / -0 (30 changes)
  • src/routes/behandelingen/+page.server.js — +14 / -0 (14 changes)
  • src/routes/behandelingen/+page.svelte — +234 / -0 (234 changes)
  • src/routes/behandelingen/[id]/+page.server.js — +31 / -0 (31 changes)
  • src/routes/behandelingen/[id]/+page.svelte — +12 / -0 (12 changes)
  • src/routes/bingokaart/+page.server.js — +125 / -0 (125 changes)
  • src/routes/bingokaart/+page.svelte — +52 / -0 (52 changes)
  • src/routes/scans/+page.server.js — +117 / -0 (117 changes)
  • src/routes/scans/+page.svelte — +83 / -0 (83 changes)
  • src/routes/vragenlijst/+page.server.js — +249 / -0 (249 changes)
  • src/routes/vragenlijst/+page.svelte — +51 / -0 (51 changes)
  • static/css/fileInputEnhance.css — +59 / -0 (59 changes)
  • static/css/formEnhance.css — +122 / -0 (122 changes)
  • static/css/globals.css — +234 / -0 (234 changes)
  • static/css/stylesheet.css — +66 / -0 (66 changes)
  • static/fonts/InterVariable-Italic.woff2 — +0 / -0 (0 changes)
  • static/fonts/InterVariable.woff2 — +0 / -0 (0 changes)
  • static/icons/bingo.svg — +1 / -0 (1 changes)
  • static/icons/brain.svg — +8 / -0 (8 changes)
  • static/icons/ordenedlist.svg — +10 / -0 (10 changes)
  • static/img/favicon.ico — +0 / -0 (0 changes)
  • static/img/logozzazsingle.png — +0 / -0 (0 changes)
  • static/img/testimg.png — +0 / -0 (0 changes)
  • static/robots.txt — +3 / -0 (3 changes)
  • svelte.config.js — +13 / -0 (13 changes)
  • vite.config.js — +6 / -0 (6 changes)