@gomusdev/web-components 3.4.1 → 3.5.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 CHANGED
@@ -1,5 +1,33 @@
1
1
  # Changelog
2
2
 
3
+ ## 3.5.0 (2026-06-15)
4
+
5
+ ### Features
6
+
7
+ * add audit-code skill — automate the full code-audit pipeline
8
+ * **audit-report:** 'With screenshots' category (auto-populated from .shots dirs)
9
+ * **audit-report:** click-to-peek source excerpts (+/-5 lines) on every link
10
+ * **audit-report:** default 'All findings' section; Overview demoted below it, closes [#all](https://gitlab.giantmonkey.de/gomus/frontend/issues/all)
11
+ * **audit-report:** hover source-code preview + annotated screenshot repro (PoC)
12
+ * **audit-report:** password-protect report.html (password wc-bugs)
13
+ * **audit-report:** per-finding markdown records with live triage state + sidebar-nav fix
14
+ * **audit-report:** section <select> nav, screenshots as a filter, overview as summary page
15
+ * **audit-report:** sections-in-sidebar nav + each finding as its own page
16
+ * **audit:** interactive step-by-step HTML demos for all 69 visual findings
17
+ * **audit:** publish the audit under /bugs of the docs Storybook site
18
+
19
+ ### Bug Fixes
20
+
21
+ * **web-components:** clear selected-timeslot when the visit day changes (TC-11)
22
+ * **web-components:** format slot dates in Europe/Berlin (CD-05, CD-07)
23
+ * **web-components:** pass --output flag to svelte-check, not tsc
24
+
25
+ ## 3.4.2 (2026-06-15)
26
+
27
+ ### Bug Fixes
28
+
29
+ * expire stale cart and capacity in localStorage via shared TTL
30
+
3
31
  ## 3.4.1 (2026-06-15)
4
32
 
5
33
  ### Bug Fixes
@@ -967,7 +967,10 @@ go-timeslots > ul label {
967
967
  /* Available timeslot */
968
968
 
969
969
  go-timeslots > ul input[type='radio'] {
970
- display: none; /* Hide the radio button */
970
+ -webkit-appearance: none;
971
+ -moz-appearance: none;
972
+ appearance: none; /* Hide the radio button */
973
+ margin: 0;
971
974
  }
972
975
 
973
976
  /* When a timeslot is selected (checked radio button) */
@@ -1416,3 +1419,4 @@ go-link {
1416
1419
  .donation-options button.btn.btn-default.selected {
1417
1420
  border: 2px solid black;
1418
1421
  }
1422
+ /*$vite$:1*/