@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 +12 -0
- package/dist-js/gomus-webcomponents.css +5 -1
- package/dist-js/gomus-webcomponents.iife.js +36824 -37870
- package/dist-js/gomus-webcomponents.js +35562 -36609
- package/dist-js/gomus-webcomponents.min.css +2 -1
- package/dist-js/gomus-webcomponents.min.iife.js +84 -13
- package/dist-js/gomus-webcomponents.min.js +18972 -20922
- package/dist-js/src/lib/helpers/localStorage.d.ts +1 -0
- package/dist-js/src/lib/vitest/msw/vitestMSWSetup.d.ts +1 -1
- package/package.json +8 -8
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
|
-
|
|
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*/
|