@gomusdev/web-components 4.14.5 → 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.
Files changed (23) hide show
  1. package/README.md +30 -0
  2. package/dist-js/components/cart/components/DonationRow.svelte.d.ts +1 -0
  3. package/dist-js/components/donations/components/DonationCheckbox.svelte.d.ts +1 -0
  4. package/dist-js/components/order/components/subcomponents/breakdown/items/Coupon.svelte.d.ts +1 -0
  5. package/dist-js/components/order/components/subcomponents/breakdown/items/Donation.svelte.d.ts +1 -0
  6. package/dist-js/components/order/components/subcomponents/breakdown/items/Merchandise.svelte.d.ts +1 -0
  7. package/dist-js/gomus-webcomponents.iife.js +559 -155
  8. package/dist-js/gomus-webcomponents.js +559 -155
  9. package/dist-js/gomus-webcomponents.min.iife.js +23 -23
  10. package/dist-js/gomus-webcomponents.min.js +7976 -7709
  11. package/dist-js/src/components/donations/components/DonationCheckbox.spec.d.ts +1 -0
  12. package/dist-js/src/components/order/components/subcomponents/breakdown/items/Coupon.spec.d.ts +1 -0
  13. package/dist-js/src/components/order/components/subcomponents/breakdown/items/Donation.spec.d.ts +1 -0
  14. package/dist-js/src/components/order/components/subcomponents/breakdown/items/Merchandise.spec.d.ts +1 -0
  15. package/dist-js/src/components/order/lib/OrderDetails.spec.d.ts +1 -0
  16. package/dist-js/src/components/ticketSelection/subcomponents/tickets/subcomponents/segment/SegmentDetails.svelte.d.ts +10 -1
  17. package/dist-js/src/factories/CouponFactories.d.ts +14 -1
  18. package/dist-js/src/factories/DonationFactories.d.ts +9 -0
  19. package/dist-js/src/factories/MerchandiseFactories.d.ts +11 -0
  20. package/dist-js/src/lib/models/cart/cart.svelte.d.ts +21 -3
  21. package/dist-js/src/lib/models/cart/types.d.ts +11 -0
  22. package/dist-js/src/lib/stores/shop.svelte.d.ts +10 -1
  23. package/package.json +1 -1
package/README.md CHANGED
@@ -1,5 +1,35 @@
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
+
21
+ ## 4.15.0 (2026-08-05)
22
+
23
+ ### Features
24
+
25
+ * **order:** label donation rows with their campaign name
26
+
27
+ ### Bug Fixes
28
+
29
+ * **order:** add PDF download link to coupon breakdown rows
30
+ * **order:** render Coupon and Merchandise rows in the order breakdown
31
+ * **order:** render donation rows in the order breakdown
32
+
3
33
  ## 4.14.5 (2026-08-05)
4
34
 
5
35
  ### Bug Fixes
@@ -0,0 +1 @@
1
+ export { SvelteComponent as default } from 'svelte';
@@ -0,0 +1 @@
1
+ export { SvelteComponent as default } from 'svelte';
@@ -0,0 +1 @@
1
+ export { SvelteComponent as default } from 'svelte';
@@ -0,0 +1 @@
1
+ export { SvelteComponent as default } from 'svelte';
@@ -0,0 +1 @@
1
+ export { SvelteComponent as default } from 'svelte';