@gomusdev/web-components 4.15.0 → 4.16.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 +18 -0
- package/dist-js/components/cart/components/DonationRow.svelte.d.ts +1 -0
- package/dist-js/components/donations/components/DonationCheckbox.svelte.d.ts +1 -0
- package/dist-js/gomus-webcomponents.iife.js +316 -81
- package/dist-js/gomus-webcomponents.js +316 -81
- package/dist-js/gomus-webcomponents.min.iife.js +23 -23
- package/dist-js/gomus-webcomponents.min.js +7633 -7467
- package/dist-js/src/components/donations/components/DonationCheckbox.spec.d.ts +1 -0
- package/dist-js/src/components/ticketSelection/subcomponents/tickets/subcomponents/segment/SegmentDetails.svelte.d.ts +10 -1
- package/dist-js/src/lib/models/cart/cart.svelte.d.ts +21 -3
- package/dist-js/src/lib/models/cart/types.d.ts +11 -0
- package/dist-js/src/lib/stores/shop.svelte.d.ts +10 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 4.16.0 (2026-08-12)
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* **cart:** carry donations through the display-cart projection
|
|
8
|
+
* **cart:** hold fixed donations as first-class cart state
|
|
9
|
+
* **cart:** persist donations in the go-cart localStorage blob
|
|
10
|
+
* **cart:** render held donations as removable cart lines
|
|
11
|
+
* **donations:** custom label markup and describedby on go-donation-checkbox
|
|
12
|
+
* **donations:** go-donation-checkbox - fixed-amount opt-in donation synced with the cart
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
* **cart:** donation rows leave unit-price and quantity cells empty
|
|
17
|
+
* **cart:** donations ride on top of the voucher-floored items total
|
|
18
|
+
* **checkout:** widen orderData cast - swagger donations type is stale
|
|
19
|
+
* **order:** clear paid donations from the cart after checkout
|
|
20
|
+
|
|
3
21
|
## 4.15.0 (2026-08-05)
|
|
4
22
|
|
|
5
23
|
### Features
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SvelteComponent as default } from 'svelte';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SvelteComponent as default } from 'svelte';
|