@gomusdev/web-components 3.4.2 → 3.6.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 +32 -0
- package/dist-js/components/cart/components/itemTitles/Coupon.svelte.d.ts +1 -0
- package/dist-js/gomus-webcomponents.iife.js +219 -144
- package/dist-js/gomus-webcomponents.js +219 -144
- package/dist-js/gomus-webcomponents.min.iife.js +33 -33
- package/dist-js/gomus-webcomponents.min.js +3413 -3355
- package/dist-js/src/components/cart/mocks/gomusTicketMocks.d.ts +0 -3
- package/dist-js/src/components/ticketSelection/filters/coupon.d.ts +9 -0
- package/dist-js/src/components/ticketSelection/filters/coupon.spec.d.ts +1 -0
- package/dist-js/src/components/ticketSelection/filters/registry.d.ts +1 -1
- package/dist-js/src/components/ticketSelection/filters/types.d.ts +1 -1
- package/dist-js/src/components/ticketSelection/subcomponents/tickets/subcomponents/segment/SegmentDetails.svelte.d.ts +3 -3
- package/dist-js/src/factories/CartItemFactories.d.ts +4 -4
- package/dist-js/src/factories/CouponFactories.d.ts +4 -0
- package/dist-js/src/lib/models/cart/CartItem.d.ts +1 -1
- package/dist-js/src/lib/models/cart/cart.svelte.d.ts +6 -6
- package/dist-js/src/lib/models/cart/localStorage.svelte.d.ts +1 -1
- package/dist-js/src/lib/models/cart/types.d.ts +4 -1
- package/dist-js/src/lib/models/coupon/UICoupon.spec.d.ts +1 -0
- package/dist-js/src/lib/models/coupon/UICoupon.svelte.d.ts +25 -0
- package/dist-js/src/lib/models/eventTicket/UIEventTicket.svelte.d.ts +1 -2
- package/dist-js/src/lib/models/ticket/UITicket.svelte.d.ts +1 -4
- package/dist-js/src/lib/stores/shop.svelte.d.ts +13 -3
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,5 +1,37 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 3.6.0 (2026-06-15)
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* **ticket-selection:** add coupons:giftcard filter for selling gift cards
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **models:** make product type guards null/undefined-safe
|
|
12
|
+
|
|
13
|
+
## 3.5.0 (2026-06-15)
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* add audit-code skill — automate the full code-audit pipeline
|
|
18
|
+
* **audit-report:** 'With screenshots' category (auto-populated from .shots dirs)
|
|
19
|
+
* **audit-report:** click-to-peek source excerpts (+/-5 lines) on every link
|
|
20
|
+
* **audit-report:** default 'All findings' section; Overview demoted below it, closes [#all](https://gitlab.giantmonkey.de/gomus/frontend/issues/all)
|
|
21
|
+
* **audit-report:** hover source-code preview + annotated screenshot repro (PoC)
|
|
22
|
+
* **audit-report:** password-protect report.html (password wc-bugs)
|
|
23
|
+
* **audit-report:** per-finding markdown records with live triage state + sidebar-nav fix
|
|
24
|
+
* **audit-report:** section <select> nav, screenshots as a filter, overview as summary page
|
|
25
|
+
* **audit-report:** sections-in-sidebar nav + each finding as its own page
|
|
26
|
+
* **audit:** interactive step-by-step HTML demos for all 69 visual findings
|
|
27
|
+
* **audit:** publish the audit under /bugs of the docs Storybook site
|
|
28
|
+
|
|
29
|
+
### Bug Fixes
|
|
30
|
+
|
|
31
|
+
* **web-components:** clear selected-timeslot when the visit day changes (TC-11)
|
|
32
|
+
* **web-components:** format slot dates in Europe/Berlin (CD-05, CD-07)
|
|
33
|
+
* **web-components:** pass --output flag to svelte-check, not tsc
|
|
34
|
+
|
|
3
35
|
## 3.4.2 (2026-06-15)
|
|
4
36
|
|
|
5
37
|
### Bug Fixes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SvelteComponent as default } from 'svelte';
|