@gomusdev/web-components 3.4.0 → 3.4.2

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,17 @@
1
1
  # Changelog
2
2
 
3
+ ## 3.4.2 (2026-06-15)
4
+
5
+ ### Bug Fixes
6
+
7
+ * expire stale cart and capacity in localStorage via shared TTL
8
+
9
+ ## 3.4.1 (2026-06-15)
10
+
11
+ ### Bug Fixes
12
+
13
+ * **cart:** restore selectedTime from localStorage
14
+
3
15
  ## 3.4.0 (2026-06-15)
4
16
 
5
17
  ### Features
@@ -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*/